rpi4-install-notes (566B)
1 2 ## FORMAT DRIVE TO f2fs 3 4 # 1. Install f2fs tools (already in Buster/Bookworm/Bullseye repos) 5 sudo apt update 6 sudo apt install f2fs-tools -y 7 8 # Format 9 lsblk 10 11 # Unmount everything 12 sudo umount /dev/sda* 2>/dev/null 13 14 # Quick wipe signature + make one big partition 15 sudo wipefs -a /dev/sda 16 sudo parted /dev/sda --script mklabel gpt mkpart primary 0% 100% 17 18 # Format with the only options the old Buster f2fs-tools accept 19 sudo mkfs.f2fs -f /dev/sda1 20 21 ## INSTALL RIGHT SCREEN DRIVER 22 23 curl -sSL get.pimoroni.com/hyperpixel4-legacy | bash 24 25 ## select RPI3B+ even if on rpi4 26 27