diff --git a/_posts/2024-05-23-install-glances.md b/_posts/2024-05-23-install-glances.md index 330fad9..6190df4 100644 --- a/_posts/2024-05-23-install-glances.md +++ b/_posts/2024-05-23-install-glances.md @@ -29,24 +29,25 @@ python3 -m venv /root/_glances source /root/_glances/bin/activate ``` -接著,安裝 Glances。如果需要使用 Web UI,則需要額外安裝 FastAPI。如果還要監控硬碟,則可以安裝 hddtemp。 +接著,安裝 Glances。如果需要使用 Web UI,則需要額外安裝 FastAPI。 ```bash pip3 install Glances -pip3 install FastAPI hddtemp +pip3 install FastAPI ``` 以下是 systemd 的服務配置檔案,將其放置於 `/etc/systemd/system/glances.service`: ```ini [Unit] -Description=Glances - An eye on your system +Description=Glances +Documentation=man:glances(1) +Documentation=https://github.com/nicolargo/glances After=network.target [Service] -ExecStart=/root/_glances/bin/glances -w -Restart=on-failure -User=root +ExecStart=/root/_glances/bin/python3 -m glances -w +Restart=on-abort [Install] WantedBy=multi-user.target @@ -55,8 +56,9 @@ WantedBy=multi-user.target 完成上述步驟後,啟用並啟動 Glances 服務: ```bash +systemctl daemon-reload systemctl enable glances systemctl start glances ``` -這樣就完成了在 Linux 上安裝並設定 Glances 為系統服務的步驟。現在,你可以透過 Web UI 來監控你的系統狀態了。 \ No newline at end of file +這樣就完成了在 Linux 上安裝並設定 Glances 為系統服務的步驟。現在,你可以透過 Web UI 來監控你的系統狀態了。