This web page is served by a Debian Linux Apache2 web server running on a Raspberry Pi model B (Rpi) micro computer. I bought the RPi online at RS Components in the UK. The board is powered by a Chinese OTB 2A 5V micro-usb power adapter, bought at PC-CAM web shop. I use the ethernet port of the Raspberry Pi to connect it to my router.> The Raspbery Pi computer was protected by an Adafruit Design Midnight Blue case (see image above).
The operating system is the Raspbian "wheezy" Linux Debian version downloaded from http://www.raspberrypi.org/ and installed on an 8 GB Sandisk SD-card. The command to install the operating system on the SD-card from my Debian computer was:
user@chaos:~$ dd if=2012-10-28-wheezy-raspbian.img of=/dev/sdiwhere /dev/sdi was the device location of the SD-card. You can look up the device location with dmesg, which gives a message when a new device is found. If the SD-card is mounted on your computer first unmount it (umount /dev/sdi1) before using dd.
After the Raspberry Pi had booted with this card, I connected to it through ssh from a terminal from my computer:
user@chaos:~$ ssh -X -l pi 192.168.0.111Now I could log into Rapberry computer and I logged in as user pi with password raspberry, this gave the following message indicating that I had logged in:
Linux raspberrypi 3.2.27+ #250 PREEMPT Thu Oct 18 19:03:02 BST 2012 armv6lThis done, you need first to configure and update the Raspberry Pi using:
pi@raspberrypi~$ sudo raspi-configThis gives you a menu of choices that you have to follow and change. Do change your password, timezoen, expand the rootfs system to use your whole SD card and update raspi-config (see below).
Now you also have to update all the packages in the Debian distribution, do:
pi@raspberrypi~$ sudo apt-get updateFollowed by:
pi@raspberrypi~$ sudo apt-get dist-upgradeIt will take a while before all new updates have been downloaded and installed.
That's it, Enjoy!!!
Last modified: Wed Sep 2 12:50:56 CEST 2015