I am a beginner with Freebsd after trying Ghostbsd.
I have done a minimal GPT/EFI install on a partition of an SSD. The steps I followed were:
Boot into dd memstick image.
Choose Install
Go through defining keyboard etc
Then choose Shell - and enter the following commands in sequence:
1.Add Partition
2. Create Pool
3. Create Datasets: ROOT container
4. Mount
5. Set bootfs Property
6. Exit Shell
The install was successful for booting into login into Freebsd.
My questions, given this is a minimal setup - are there steps I need to add to the install process, and/or do post-installation?
My intention, once I have completed a setup, is to experiment with installing the Gnome desktop.
Thank you.
I have done a minimal GPT/EFI install on a partition of an SSD. The steps I followed were:
Boot into dd memstick image.
Choose Install
Go through defining keyboard etc
Then choose Shell - and enter the following commands in sequence:
1.Add Partition
gpart add -t freebsd-zfs -s 97G ada0
2. Create Pool
zpool create -f -o altroot=/mnt -O mountpoint=none zroot /dev/ada0p4
3. Create Datasets: ROOT container
zfs create -o mountpoint=none zroot/ROOT
zfs create -o mountpoint=/ zroot/ROOT/default
4. Mount
zfs mount -a
5. Set bootfs Property
zpool set bootfs=zroot/ROOT/default zroot
6. Exit Shell
exit
The install was successful for booting into login into Freebsd.
My questions, given this is a minimal setup - are there steps I need to add to the install process, and/or do post-installation?
My intention, once I have completed a setup, is to experiment with installing the Gnome desktop.
Thank you.