Hello 
I would like your guidance with the following situation:
I boot USB with FreeBSD-11.1-RELEASE-amd64-memstick.img in UEFI mode.
When Welcome Menu appears, I choose [Shell].
Then I execute the following commands:
From this point forward, everything that I read, write and execute happens in the created root environment?

I would like your guidance with the following situation:
I boot USB with FreeBSD-11.1-RELEASE-amd64-memstick.img in UEFI mode.
When Welcome Menu appears, I choose [Shell].
Then I execute the following commands:
Code:
# kbdcontrol -l pt
# gpart create -s gpt ada0
# gpart add -t efi -s 800K ada0
# gpart add -t freebsd-ufs -s 2G # / partition
# gpart add -t freebsd-swap -s 2G
# gpart add -t freebsd-ufs -s 1G ada0 # /var partition
# gpart add -t freebsd-ufs -s 1G ada0 # /tmp partition
# gpart add -t freebsd-ufs -s 50G ada0 # /usr partition
# gpart add -t freebsd-ufs ada0 # /home partition
# dd if=boot/boot1.efifat of=dev/ada0p1
# newfs -U dev/ada0p2
# newfs -U dev/ada0p4
# newfs -U dev/ada0p5
# newfs -U dev/ada0p6
# newfs -U dev/ada0p7
# mount dev/ada0p2 mnt
# mkdir mnt/var
# mount dev/ada0p4 mnt/var
# mkdir mnt/tmp
# mount dev/ada0p5 mnt/tmp
# mkdir mnt/usr
# mount dev/ada0p6 mnt/usr
# mkdir mnt/home
# mount dev/ada0p7 mnt/home
# cd mnt
# tar xvJpf usr/freebsd-dist/base.txz
# tar xvJpf usr/freebsd-dist/kernel.txz
# chroot .
Last edited: