Automation/RaspberryPi: Difference between revisions

From Medien Wiki
Line 11: Line 11:
  sudo apt-get install raspberrypi-net-mods
  sudo apt-get install raspberrypi-net-mods


Oprional: If you need every little bit of space of the memory card you may want to remove some software and example content to free some memory.
Then while we are at it we might want to check if the firmwarware is up to date too. "Firmware" is a bit confusing in this context as the raspberry apparently has no bios sitting on some chip, but all that "Firmware" is part of the stuff on the SD card. ([http://raspberrypiguide.de/howtos/raspberry-pi-firmware-update/ Source])
 
uname -a
 
Will let us see the current version. Then there is a cript we can run to update it.
 
sudo apt-get install git
wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update -O /usr/bin/rpi-update && sudo chmod +x /usr/bin/rpi-update
sudo rpi-update
 
Optional: If you need every little bit of space of the memory card you may want to remove some software and example content to free some memory.
  sudo apt-get purge sonic-pi wolfram python-games ....
  sudo apt-get purge sonic-pi wolfram python-games ....
After all this we should re-boot
sudo reboot


=== Setup video playback ===
=== Setup video playback ===