I searched for my exact issue and couldn't find it so am posting. I labeled my file systems using
. After waiting a few seconds the system boots successfully and I can login with my normal user.
The partition in question is my user's home directory and is on a separate disk. No issues after logging in, running X, etc. Not sure what
Here is the contents of /etc/fstab:
I can post the output of
and they match.
Thanks in advance.
gpart modify -i X -l LABEL DISK
. All the FreeBSD disks in my machine are GPT. This worked fine. I edited /etc/fstab accordingly and the system boots fine, except right before hitting the login prompt I get a message that says:
Code:
mount /dev/da0p1: operation not permitted
The partition in question is my user's home directory and is on a separate disk. No issues after logging in, running X, etc. Not sure what
mount
is erroring on. Is there a log I can look at that may show more detail?Here is the contents of /etc/fstab:
Code:
# Device Mountpoint FStype Options Dump Pass#
/dev/gpt/bzrootfs / ufs rw 1 1
/dev/gpt/bzswap none swap sw 0 0
/dev/gpt/bzhomefs /usr/home ufs rw 2 2
/dev/gpt/bzbackfs /mnt/backups ufs rw 2 2
#File system for tmpfs
tmpfs /tmp tmpfs rw,mode=777 0 0
I can post the output of
gpart list
if necessary. I have matched the label names in /etc/fstab to the contents of
Code:
/dev/gpt
Thanks in advance.