From 7e1d3a201822d3e06441797fde3de7a5aa609154 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=89=E5=AE=B6=E9=83=A1?= Date: Thu, 23 May 2024 22:49:41 +0800 Subject: [PATCH] Update 2024-05-23-install-glances.md --- _posts/2024-05-23-install-glances.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) 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 來監控你的系統狀態了。