Skip to content

Raspberry Pi Manual Setup Instructions

ergobot edited this page Jan 21, 2015 · 54 revisions

#Summary This is the summary

#Install RXTX and xserver utils sudo apt-get update sudo apt-get install librxtx-java
sudo apt-get install x11-xserver-utils #Disable sleep/screensaver Instructions to disable the sleep/screensaver on the pi

sudo nano /etc/X11/xinit/xinitrc

Add the following lines to the end of the document

xset s off         # don't activate screensaver
xset -dpms         # disable DPMS (Energy Star) features
xset s noblank     # don't blank the video device  

Save and exit nano, then enter the following commands

sudo sed -i 's/#xserver-command=X/xserver-command=X -s 0 -dpms'/ /etc/lightdm/lightdm.conf
sudo sed -i 's/POWERDOWN_TIME=30/POWERDOWN_TIME=0'/ /etc/kbd/config
sudo sed -i 's/BLANK_TIME=30/BLANK_TIME=0'/ /etc/kbd/config

#Setup application to start on boot Instructions to start the Creation-Workshop-Host on boot Enter the following commands mkdir ~/.config/autostart touch ~/.config/autostart/cwhost.desktop nano ~/.config/autostart/cwhost.desktop Add the following lines to the file [Desktop Entry]
Type=Application Exec=Exec=/home/pi/start.sh

Clone this wiki locally