Last active
September 26, 2024 21:29
-
-
Save aaronparker/a42fa77454049e9f0ff0a49196ec9dc3 to your computer and use it in GitHub Desktop.
Installing iStat Server for Linux on raspbian
This file contains 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
# https://bjango.com/help/istat3/linuxpackages/ | |
# Commands used to install iStat Server for Linux on a Raspbery Pi running Raspbian | |
# Update Raspbian | |
# sudo apt-get update | |
# sudo apt-get upgrade | |
# Install dependencies | |
sudo apt-get install automake | |
sudo apt-get install libxml2-dev | |
sudo apt-get install libssl-dev | |
sudo apt-get install libsqlite3-dev | |
# Install optional packages | |
sudo apt-get install libsensors4-dev | |
sudo apt-get install libavahi-common-dev | |
sudo apt-get install libavahi-client-dev | |
# Download iStat Server for Linux | |
mkdir /home/pi/tmp | |
cd /home/pi/tmp | |
wget https://codeload.github.com/bjango/istatserverlinux/tar.gz/master -O istatserverlinux-master.tar.gz | |
tar -xzf istatserverlinux-master.tar.gz | |
cd istatserverlinux-master/ | |
# Complile and install | |
./autogen | |
./configure | |
make | |
sudo make install | |
# Configure autostart & start service | |
sudo cp ./resource/systemd/istatserver.service /etc/systemd/system/istatserver.service | |
sudo systemctl daemon-reload | |
sudo systemctl enable istatserver.service | |
# Start the service | |
sudo service istatserver start |
Just add that the file with the password (necessary to activate the viewer) is located in /usr/local/etc/istatserver/istatserver.conf
Hello everyone,
I've followed this perfect installation manual on 3 Raspberries and there is one that doesn't show its temperature sensor... I don't understand why.
the istatserver.conf is exactly the same on the 3 computers.
Do you have any ideas ?
Thank you
Have a nice day.
Philippe
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Molin-L good to hear. You're probably right on the
mkdir
command. I'm not a Linux expert, but./tmp
in the home directory looks good to me.