Archive for category Raspberry Pi
Create a Docker Image on a Raspberry Pi2
Posted by rtcpractise in Docker, Raspberry Pi on 11/02/2015
When Docker is running with Archlinux on a Raspberry Pi2, it is time to create a first Docker Image. Get/pull a Docker Image from docker.com with “docker pull resin/rpi-raspbian” because this is Raspian 8 Jessie. Run the Docker Image with “docker run -t -i -p 8000:8000 –privileged philipz/rpi-raspbian /bin/bash” Make the necessary changes inside the Docker Image […]
How to install Docker on a Raspberry Pi2?
Posted by rtcpractise in Raspberry Pi on 07/02/2015
Till now, the Raspberry Hype was not for me, because the Hardware was very weak compared with Cubieboard or Odroid. But times are changing…Raspberry Pi2 is here. The Hardware is still not at the Bleeding Edge but good enough for Docker now. How to install: Get the Archlinux from http://archlinuxarm.org/platforms/armv7/broadcom/raspberry-pi-2. Follow the installation instruction. Start ArchLinux […]
Copy/Backup a SD Card
Posted by rtcpractise in Cubie, Raspberry Pi on 02/01/2015
After some failures there is an easy way to copy a Raspberry Pi SDCard (with Homematic CCU running in a lxc container) from one SD Card /dev/sdb to another SC Card /dev/sdc: mount (to see the mounted filesystems an their names) umount /dev/sdb1 umount /dev/sdc1 sudo dd if=/dev/sdb of=/dev/sdc bs=4096 conv=notrunc,noerror