Last active
August 12, 2020 11:02
-
-
Save leeuwte/155c5dbc179a047b4495f37dcba3a00c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get update | |
sudo apt-get install python-dev python-pip | |
sudo pip install glances bottle | |
sudo curl https://gist.githubusercontent.com/leeuwte/155c5dbc179a047b4495f37dcba3a00c/raw/526ee23d677bf92787d75c974b174af44a89649e/glances_rpi_service --output /etc/systemd/system/glances.service | |
sudo systemctl enable glances.service | |
sudo systemctl start glances.service |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Glances | |
[Service] | |
ExecStart=/usr/local/bin/glances -w | |
Restart=on-abort | |
[Install] | |
WantedBy=multi-user.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo curl -s https://gist.githubusercontent.com/leeuwte/155c5dbc179a047b4495f37dcba3a00c/raw/e64e91bb2c27c51820e172b7e75b592472ae7eaf/glances_rpi_install_script.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment