Raspberry first setup

From Hobbywiki
Revision as of 21:28, 7 March 2014 by Pusur (Talk | contribs)

Jump to: navigation, search

basic webserver setup with python/php2.7/apache2

  • apt-get update
  • apt-get install vim

Edit /etc/network/interfaces

iface eth0 inet static
       address 192.0.2.7
       netmask 255.255.255.0
       gateway 192.0.2.254
reboot
  • apt-get install apache2 php5 libapache2-mod-php5
  • sudo apt-get install mysql-server mysql-client php5-mysql
  • apt-get install python-mysqldb
  • apt-get install phpmyadmin

piface setup

Piface software is already installed on latest raspbian image, in addition you need the following:

apt-get install python-dev git
git clone https://github.com/thomasmacpherson/piface.git
cd piface/python
python setup.py install
../scripts/spidev-setup

You also need to disable the "blacklist spi-bc2708" line in /etc/modprobe.d/raspi-blacklist.conf by commenting it out. Reboot, and you should be ready to go.

  • chown -R www-data:www-data /dev/spidev0.0
  • chmod -R 755 /dev/spidev0.0