Mounting proc in FreeBSD 14.3

I've been trying to mount proc for the MATE desktop environment in the latest release of FreeBSD. I've edited the /etc/fstab using vim (vi /etc/fstab) and mounted proc like it says in the guide but after doing so when starting lightdm, a warning message is displayed and the screen almost instantly goes blank. Does the proc line have to mounted in a specific way? I've mounted at the bottom of /dev/ada0p3?
mount.png
 
Your /etc/fstab isn't showing anything regarding /proc.

Code:
root@fbsd-test:~ # cat /etc/fstab
# Device                Mountpoint      FStype  Options         Dump    Pass#
/dev/gpt/efiboot0       /boot/efi       msdosfs rw,noauto       2       2
/dev/vtbd0p3            none            swap    sw              0       0
tmpfs                   /tmp            tmpfs   rw,mode=1777    0       0
proc                    /proc           procfs  rw              0       0
 
Back
Top