Skip to content

Commit

Permalink
Update 2024-05-23-install-glances.md
Browse files Browse the repository at this point in the history
  • Loading branch information
xnum authored May 23, 2024
1 parent 894d95d commit 7e1d3a2
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions _posts/2024-05-23-install-glances.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -55,8 +56,9 @@ WantedBy=multi-user.target
完成上述步驟後,啟用並啟動 Glances 服務:

```bash
systemctl daemon-reload
systemctl enable glances
systemctl start glances
```

這樣就完成了在 Linux 上安裝並設定 Glances 為系統服務的步驟。現在,你可以透過 Web UI 來監控你的系統狀態了。
這樣就完成了在 Linux 上安裝並設定 Glances 為系統服務的步驟。現在,你可以透過 Web UI 來監控你的系統狀態了。

0 comments on commit 7e1d3a2

Please sign in to comment.