diff --git a/README.md b/README.md index edf3730..f123e61 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,17 @@ + # RaspberryPiServer Use low-cost **Raspberry Pi** computers as a receiver for special commands from [Pocket Code](http://www.catrobat.org). The aim of this sub-project is to allow Pocket Code to control a RaspberryPi remotely in order to enable children and novices to acquire knowledge and arouse interest in both programming and electronics. Features of the RaspberryPi can be accessed without having to write code on a RaspberryPi - all important features are accessible via special bricks within Pocket Code. ## Installation -Instructions for installing and using a Raspberry Pi with Pocket Code can be cound at [catrob.at/RaspberryPi](https://catrob.at/RaspberryPi). But in a nutshell: +Installer will set RaspberInoServer to run on start up. +1. Download installer, download will save installer script to the current directory. + +``wget https://raw.githubusercontent.com/Catrobat/RaspberinoServer/master/installer/install-raspberino.sh -O install-raspberino.sh`` + +2. run installer as root. -1. Download installer -``wget http://catrob.at/installraspberino -O install-raspberino.sh`` -2. run installer as root `` sudo sh install-raspberino.sh`` # License # diff --git a/installer/install-raspberino.sh b/installer/install-raspberino.sh index b1a29d0..ea98311 100644 --- a/installer/install-raspberino.sh +++ b/installer/install-raspberino.sh @@ -43,7 +43,9 @@ mkdir -p /etc/RaspberIno echo "port=10000" > /etc/RaspberIno/config.cfg # download init.d script -wget https://raw.githubusercontent.com/Catrobat/RaspberinoServer/master/installer/RaspberinoServer -O /etc/init.d/RaspberinoServer +wget https://raw.githubusercontent.com/Catrobat/RaspberinoServer/master/installer/RaspberinoServer -O /etc/init.d/RaspberInoServer +# change file permissions +chmod 755 /etc/init.d/RaspberInoServer # add to startup update-rc.d RaspberInoServer defaults