Root-Partition im Single User Mode beschreibbar machen
Startet man ein FreeBSD-System im Single User Mode, so ist die root-Partition nur lesend ins System eingebunden. Möchte man die root-Parition nun beschreibbar ins System einbinden, so können dazu die -u und die -w Optionen von mount verwendet werden:
# mount /dev/ad0s1a on / (ufs, local, read-only) devfs on /dev (devfs, local, multilabel) # echo test > /test cannot create /test: Read.only file system # mount -uw / # mount /dev/ad0s1a on / (ufs, local) devfs on /dev (devfs, local, multilabel) # echo test > /test # cat /test test
Mehr Informationen findet man in der Manpage mount(8).