Instructions to write remix to sdcard
Your miles may vary
- Where f19-chromebook-MATE was the chosen, you may prefer something else.
- Where /dev/sdz is assumed to be the block device, you will certainly have something else.
You may want to change the commands used to fit your preference or setup.
# fetch the remix & checksum files
wget http://parasense.fedorapeople.org/f19-chromebook-MATE.img.xz \
http://parasense.fedorapeople.org/SHA256SUM.txt
# Verify the checksum matches
sha256sum -c SHA256SUM.txt
. . .
# decompress
unxz -v f19-chromebook-MATE.img.xz
# write the image to sdcard
sudo dd if=f19-chromebook-MATE.img of=/dev/sdz bs=4M
# resize the rootfs partition
sudo sgdisk -p -a8192 -e -d5 -n5:0:0 -t5:8300 -c5:'ROOTFS' -p /dev/sdz
sudo partx -t gpt -u /dev/sdz
# resize the rootfs ext4 filesystem
sudo e2fsck -f /dev/sdz5
sudo resize2fs /dev/sdz5
#THE END