Rebuild world - ZFS

According the handbook
Code:
# cd /usr/src
# make buildworld
# make buildkernel
# make installkernel
# shutdown -r now
# mount -u /
#[B] mount -a -t ufs[/B]
# adjkerntz -i
# mergemaster -p
# cd /usr/src
# make installworld
# mergemaster
# reboot

I have ZFS. How can I mount everything read-write?
 
If you have an all ZFS setup then do these steps in single user mode:
(The adjkerntz(8) should be done first to ensure the clock is correct before writing anything to disk(s))

# adjkerntz -i
# mount -u /
# zfs mount -a
# mergemaster -p
# cd /usr/src
And so on.
 
You really need to do the hostid step I mention, otherwise you will get all kinds of "pool imported on another system" errors and have to force the import.
 
Back
Top