Linux Server real-time monitoring using a Raspberry PI

I wanted to be able to quickly see at any time the CPU load, Memory used, HD load, network etc … on my main home server. I wanted to have that constantly displayed on a screen on top of my server.

Of course, one option would be to plug the monitor to the server and crack up a session to display top or htop infos. The problem with this is that it’s not secure. Anyone could use that session if hitting CTRL-C or q.

I found a solution I describe bellow.

What you will need:

  • a cheap monitor (you can find decent 22″ for $70-$90)
  • a Raspberry Pi ($35)

First, install a Raspbian with Pixel on the Raspberry Pi. Connect it to the monitor and boot. You should boot to the Pixel Desktop.

Install Chrome (well, the open source version):

then edit the file /home/pi/.config/lxsession/LXDE-pi/autostart and make it look like this:

This will disable the desktop and launch the browser instead in full screen without the bookmark bar, search bar or any controls (this is the kiosk mode). Other options here set the screen saver off or prevent error screens to appear.

Then you will need to hide the mouse cursor. For this edit the file /etc/lightdm/lightdm.conf and add in the SeatDefaults section: 

Now before rebooting the Raspberry Pi, we need to setup Glances on the server we want to monitor:

Add a line in the rc.local file to make Glances launch at boot time:

Now start Glances server side (reboot or type the above command on your current BASH session) and reboot the Raspberry Pi.

Voila ! 

PS: don’t forget to change your Raspberry Pi pi user password.

 

Leave A Comment