Greetings all,
I would like to separate my data from the /usr data-sets/hierarchy structure and at the same time to mount the data-set containing the data at /usr/home/myname.
However, since the script creates the data-set system/data during the FreeBSD installation, the user with myname does not exist; consequently, the mount-point /usr/home/myname does not exist.
I cannot find any information, whether I can have the script to execute:
and the data-set will be mounted once I create the user:
which creates the mount-point /usr/home/myname. Or, whether I need to initially have the script to execute:
and then remount the data-set:
after the mount-point /usr/home/myname has been created.
Thank you for any help in this matter.
Kindest regards,
M
I would like to separate my data from the /usr data-sets/hierarchy structure and at the same time to mount the data-set containing the data at /usr/home/myname.
However, since the script creates the data-set system/data during the FreeBSD installation, the user with myname does not exist; consequently, the mount-point /usr/home/myname does not exist.
I cannot find any information, whether I can have the script to execute:
Code:
zfs create -o mountpoint=/usr/home/myname system/data
Code:
adduser myname
Code:
zfs create -o mountpoint=none system/data
Code:
zfs mountpoint=/usr/home/myname system/data
Thank you for any help in this matter.
Kindest regards,
M