Site Tools


Sidebar

software:fedora:fedora_on_raspi4

Installing Fedora (release or rawhide) on Raspberry Pi 4

Step 1: Writing image

These steps can be done on an x86_64 Fedora system with a micro-sdcard reader/writer. I recommend the latest Fedora release.

dnf install -y arm-image-installer

# Our directory for storing images etc.
WORKDIR="/home/chris/Downloads/raspi"

# Our microsd-card device
OUTDEV="/dev/mmcblk0"

cd $WORKDIR
fedora-arm-image-installer \
  --image <the image file we just fetched> \
  --target=rpi4 --media $OUTDEV --resizefs

Step 2: Fedora setup

### Mount the card
mkdir -p $WORKDIR/mnt
mount ${OUTDEV}p3 $WORKDIR/mnt
mount ${OUTDEV}p2 $WORKDIR/mnt/boot
mount ${OUTDEV}p1 $WORKDIR/mnt/boot/efi

cd $WORKDIR/mnt

# set your root-password to 'fedora'
sed -ie 's,^root.*,root:$6$g1sdJY/CulQKzQmS$heAUJV60eTr1HQtTTR188WlA/vOTj6LPuKA7JB1wKEgPiW1qX2gPJHU8lLhSL8KeKgx.hGgUvQ4uzW6JQ68u40:18388:0:99999:7:::,' etc/shadow
# As an alternative, execute 'vi etc/shadow' and manually
# change the password hash to something else.
echo 'PermitRootLogin yes' >>etc/ssh/sshd_config

echo pi4.local >etc/hostname
echo '127.0.0.1   pi4.local pi4' >>etc/hosts

rm -f etc/localtime
ln -s /usr/share/zoneinfo/Asia/Tokyo etc/localtime

### Let's set a static IP
# Need to update with the details for the connection file.
# mkdir -p etc/NetworkManager/system-connections
# vi etc/NetworkManager/system-connections/tokyo-lan.nmconnection
# chcon system_u:object_r:NetworkManager_etc_rw_t:s0 \
#   etc/NetworkManager/system-connections/tokyo-lan.nmconnection
# chmod 600 etc/NetworkManager/system-connections/tokyo-lan.nmconnection

# Disable the initial-setup and other unneeded services
rm -f etc/systemd/system/multi-user.target.wants/initial-setup.service
rm -f etc/systemd/system/multi-user.target.wants/abrtd.service
rm -f etc/systemd/system/multi-user.target.wants/abrt-journal-core.service
rm -f etc/systemd/system/multi-user.target.wants/abrt-oops.service
rm -f etc/systemd/system/multi-user.target.wants/abrt-vmcore.service
rm -f etc/systemd/system/multi-user.target.wants/abrt-xorg.service
rm -f etc/systemd/system/multi-user.target.wants/cups.service
rm -f etc/systemd/system/multi-user.target.wants/nfs-client.service
rm -f etc/systemd/system/multi-user.target.wants/vboxservice.service
rm -f etc/systemd/system/multi-user.target.wants/vmtoolsd.service
rm -f etc/systemd/system/multi-user.target.wants/ModemManager.service
rm -f etc/systemd/system/multi-user.target.wants/rngd.service
rm -f etc/systemd/system/multi-user.target.wants/avahi-daemon.service
rm -f etc/systemd/system/multi-user.target.wants/auditd.service
rm -f etc/systemd/system/multi-user.target.wants/smartd.service
rm -f etc/systemd/system/multi-user.target.wants/libvirtd.service
rm -f etc/systemd/system/multi-user.target.wants/remote-fs.service

rm -f etc/systemd/system/sysinit.target.wants/multipathd.service
rm -f etc/systemd/system/sockets.target.wants/multipathd.socket
cd ..

umount $WORKDIR/mnt/boot/efi
umount $WORKDIR/mnt/boot
umount $WORKDIR/mnt

You should now be able to boot the Pi4 with the sdcard into Fedora, it takes some time. Login via ssh should then be possible.

Step 3: First steps on the Fedora installation

cat >>~/.bashrc<<EOT
# extend prompt to have temperature
export PS1='[\u@\h \$(cut -b 1,2 /sys/devices/virtual/thermal/thermal_zone0/temp)°C \W]\$ '
# colored iostat output
export S_COLORS=always
export EDITOR=vi
EOT

### tuning
cat >/etc/rc.local<<EOT
#!/usr/bin/bash
# VM writeback timeout
echo '1500' > '/proc/sys/vm/dirty_writeback_centisecs'
# power saving for wlan and usb chips
echo 'auto' > '/sys/bus/pci/devices/0000:01:00.0/power/control'
echo 'auto' > '/sys/bus/pci/devices/0000:00:00.0/power/control'
EOT
chmod +x /etc/rc.local
/etc/rc.local
ln -s /etc/rc.local /etc/rc.d/rc.local

# To get further ideas about services we do not need
systemd-analyze plot >file.svg

# For my use cases:
systemctl disable lmsensors firewalld

# If required for debugging:
# vi /etc/default/grub
#   GRUB_CMDLINE_LINUX="console=tty0 audit=0 selinux=0"
# grub2-mkconfig -o /boot/grub2/grub.cfg

# update
dnf -y update
software/fedora/fedora_on_raspi4.txt · Last modified: 2024/02/12 10:26 by chris