diff --git a/web/app/docs/post-install/system/page.tsx b/web/app/docs/post-install/system/page.tsx index a355aed..8ddf288 100644 --- a/web/app/docs/post-install/system/page.tsx +++ b/web/app/docs/post-install/system/page.tsx @@ -159,6 +159,56 @@ sudo sysctl -p /etc/sysctl.d/99-memory.conf `} /> + +

+ + Improve Entropy Generation with Haveged +

+ +

+ What is entropy? In computing, entropy is a measure of randomness used by the system for cryptographic operations, secure connections, and random number generation. +

+ +

+ On Proxmox VE and other virtualized or headless environments, entropy can become insufficient—causing delays or even freezes during operations like generating SSH keys or starting services that rely on encryption. +

+ +

+ This optimization installs and configures haveged, a daemon that generates high-quality entropy using CPU timing variations to ensure the system always has enough randomness available. +

+ +

+ Why it's beneficial: +

+ + +

This adjustment automates the following steps:

+ /etc/default/haveged + DAEMON_ARGS="-w 1024" + EOF + + # Enable haveged to run at startup + systemctl daemon-reload + systemctl enable haveged + `} + /> + +

+ Once applied, your system will maintain sufficient entropy levels at all times—leading to better performance, stability, and responsiveness. +

+ + +

Automatic Application