Um ein Backup der SD-Karte zu erstellen, habe ich ein anderen Linux-PC verwendet und die Karte mittels Card-Reader angesteckt. Dort wird sie automatisch gemountet was bedeutet, dass man per df -h den Device-Namen erfährt, bei mir sdc daher kann ich jetzt ein Backup erstellen mittels sudo dd if=/dev/sdc of=/home/linux/myImage.img bs=1M man kann es auch gleich… Read More


Der RaspberryPi muss früher oder später mit einem Bootimage versehen werden. Nimmt man das angebotene Debian Wheezy, ist allerhand Software bereits installiert, die man nie verwenden wird. Hier ein Fileserver – dort wird die grafische Oberfläche nicht benötigt – der RPi wird nur per SSH bedient. Eine kleine Einführung habe ich hier gefunden, die ich… Read More


Ich habe mir einen Raspberry Pi besorgt um diesen als Fileserver einzusetzten. Hierfür habe ich eine externe USB 2.0 HDD angeschlossen, auf der die Files abgelegt werden. 1) Raspberry Pi einrichten: sudo raspi-config sudo apt-get install samba samba-common samba-common-bin sudo apt-get install vim sudo apt-get install fuse ntfs-3g 2) neuen Benutzer anlegen: sudo useradd -G… Read More


I’ve got a Raspberry Pi with connected camera. When the Pi boots up there should be executed a script which starts the camera software. You must create an new file in /etc/init.d/ and then add the following content: # /etc/init.d/startcam # Carry out specific functions when asked to by the system case "$1" in  … Read More


With ssh configured the Raspi can be attached using putty after booting. But how do I know about the IP the raspi got from DHCP? There are several possibilities to look: 1) If there is a screen attached at console the IP can be read there. But I operate the raspi in different networks just… Read More


After unpacking starting is very easy. There is a lot information available online. Here a few tipps where to look and what to do. A good choice is the raspberrypi homepage: Home What you first need is software to run the device. What you need is the Win32Diskmanager and an image to load. I started… Read More