Cá nhân đang gặp sự cố tích hợp Glances từ Raspberry Pi vào trang web (hiện hiển thị dữ liệu giống NAS). Kiểm tra lại cấu hình services.yaml, đặc biệt URL widget (có thể thiếu "://" hoặc lỗi địa chỉ IP). Đảg bảo Glances chạy đúng trên Pi và truy cập được qua trình duyệt. #NAS #RaspberryPi #Glances #CấuHìnhMạng #HomeAssistant #SelfHosted #Troubleshooting #YAML #Linux #IoT

https://www.reddit.com/r/selfhosted/comments/1phjtkx/i_need_some_help_with_integrating_glances_with/

Proof-of-concept:
I ran Glances inside Apple’s new native container runtime on macOS 26 — I call it Gamur (Icelandic for “container”).
Even cooler: Gamur Glances monitors Docker Glances.
Apple nailed this.

#macOS26 #AppleSilicon #containers #homelab #virtualization #DevOps #Glances

Bulwark (Nikki Nair SE Breaks Remix)

YouTube
Ended up with #heimdall for the dashboard and use #glances for performance metrics.

Ho pubblicato un nuovo post per chi ama il self-hosting: monitoraggio in tempo reale con Glances Web UI su Debian, installazione pulita con pipx, avvio automatico con systemd e consigli per la sicurezza. Se ti piace smanettare, potrebbe interessarti:
https://emanuelegori.uno/monitoraggio-in-tempo-reale-di-cpu-ram-e-filesystem-con-glances-web-ui-e-avvio-automatico-su-debian-systemd/

@linux

#linux #unolinux #foss #opensource #homelab #smanettoni #glances

Nuevo contenido... hoy estuve viendo #monitoresDeSistemaXTTY y probé algunos que no conocía como : #aidar #glances #atop #s-tui https://elprofejuan.duckdns.org/autosave-886180b941bfe0b40a81bd5b5ea5ad71
Monitoriando en TTY

Blog del Profe Juan == Tecnologías y Software Libre

Yup, #glances is it. If you're curious:

```bash
pipx install glances[all]
glances -w
```

Then just load up http://yourserverip:61208/

Any fan of #glances that want to convince me to choose it over #btop?
GitHub - nicolargo/glances: Glances an Eye on your system. A top/htop alternative for GNU/Linux, BSD, Mac OS and Windows operating systems.

Glances an Eye on your system. A top/htop alternative for GNU/Linux, BSD, Mac OS and Windows operating systems. - nicolargo/glances

GitHub

Run Glances at RBPI startup

If you’re reading this on fediverse and the layout is off, here’s the link to the original blog post with a nice text & pictures layout.

In my previous post, I struggled to run glances on my Raspberry Pi Zero W. After a first reboot I stared to my Home Assistant dashboard and wondered where is the data from my RaspberryPi. Of course, I ran it manually from the shell, it didn’t restart by itself.

If you ask me to tell you out of my head how to make a service/script start after a reboot, I will stare you blank.

After a bit of googling, I found out there are at least 4 different ways to do it.

Firstly, I tried to make glances to start using crontab method:

sudo crontab -e#then I added the following command to crontab:@reboot sh /<path to my glances>/glances -w

It failed, don’t know why, maybe because Raspbian doesn’t like @restart command.

Second try – rc.local:

I tinkered a bit with rc.local but I gave up quickly.

Third try – systemd – it worked!

1. Go to systemd directory

cd /etc/systemd/system

2. create a definition file for the service

sudo nano glances_w.service

3. Add the following text to glances_w.service file:

[Install]WantedBy=multi-user.target[Unit]Description=Glances Web ServerWants=network-online.targetAfter=network-online.target[Service]User=tomiGroup=admExecStart=/home/tomi/glances/bin/glances -wExecStartPre=/bin/sleep 10Type=simple[Timer]OnStartupSec=25

Change parameter User (tomi) to your user and ExecStart (/home/tomi/glances/bin/glances -w) with path to your glances start command.

4. Enable and start service

sudo systemctl enable glances_w.servicesudo systemctl start glances_w.service

5. Check the status of the service

systemctl status glances_w.service

It should give you something like:

Thanks to this forum post – now my glances start autmatically after a reboot. Of course it didn’t go smoothly as described above. I had to tinker with the User and Group parameter. I didn’t know which user should I insert. Then I didn’t know the name of the group.

So I had to find it out using:

groupsgroups tomi

The bottom line is: without forums and manuals for linux commands, I’d be completely disabled when using linux. I’m using it on and off for 30 years, but still struggling with basic commands. I wonder if I will ever climb above my current level: google-the-command-copy-paste-modify-repeat

Tags: #homeasistant #glances #raspberrypi #systemd

https://blog.rozman.info/run-glances-at-raspberry-pi-startup/

#glances #homeasistant #raspberrypi #systemd #then