This guide assumes that your SD slot is available at /dev/sdb
. Make sure to substitute the correct value for your own SD device (or you might wipe out one of your hard disks)!! USE AT YOUR OWN RISK
- Download the experimental Fedora spin:
curl -O http://www.digitaldreamtime.co.uk/Fedora/Pi2B-Minimal-armhfp-21-5-20150211-1.img.xz
- Extract the image
xz -d Pi2B-Minimal-armhfp-21-5-20150211-1.img.xz
sudo dd if=Pi2B-Minimal-armhfp-21-5-20150211-1.img of=/dev/sdb bs=1M
sudo sync
sudo gparted /dev/sdb # use it to resize the partition
sudo resize2fs /dev/sdb3 # to expand the fs
sudo sync
- Put that disk in your Pi
Plug it in and turn it on!
Ethernet, HDMI, and keyboard should all be working. Login with root:fedora
and run initial-setup
to change the root password, add user accounts, and set your timezone. Your hostname can be set with hostnamectl set-hostname --static mypi.localdomain
.
Next steps? Help me figure out how to install Docker and Go!
STATUS UPDATE:
A partial fix for Docker support is available:
You'l need to upgrade to a newer kernel that includes modules for
CONFIG_OVERLAY_FS
andCONFIG_DM_THIN_PROVISIONING
by runningsc-cleanUpdate-testing-pi
from your Pi2B:After the reboot, I was able to start the Docker daemon, and
docker pull
an image. But I hit another error when I attempt todocker run
the container:I'm not sure, but
mountpoint for cpuset not found
sounds like an issue with cgroups.To be continued...