Difference between revisions of "Draft Funtoo Install on RPI/Partition and Format"

From Funtoo
Jump to navigation Jump to search
(Created page with "== Partition and Format an SDCard == {{console|body= ###i## export SDCARD=/dev/SDCARD_DEV }} ==== Randomize SDCard ==== {{console|body= ###i## dd if=/dev/urandom of=${SDCARD}...")
 
m
Line 1: Line 1:
== Partition and Format an SDCard ==
== Partition and Format an SDCard ==
{{console|body=
{{console|body=
###i## export SDCARD=/dev/SDCARD_DEV
###i## export SDCARD=/dev/${SDCARD_DEV}
}}
}}
==== Randomize SDCard ====
==== Randomize SDCard ====

Revision as of 20:54, February 9, 2019

Partition and Format an SDCard

root # export SDCARD=/dev/${SDCARD_DEV}

Randomize SDCard

root # dd if=/dev/urandom of=${SDCARD} bs=1M status=progress

Write Parition Scheme to SDCard

root # umount -Rl ${SDCARD}
root # sfdisk --no-reread --wipe always ${SDCARD} << EOF
root ##i## label: dos
root ##i## unit: sectors
root ##i## ${SDCARD}1 : start=        2048, size=     1048576, type=c
root ##i## ${SDCARD}2 : start=     1050624, type=83
root ##i## EOF

Format SDCard

Make sure you have No results installed.

root # mkfs.ext4 ${SDCARD}2
root # mkfs.vfat ${SDCARD}1

Next: Install the Stage 3 Tarball