USB Stick mount operation not permitted

Good morning everyone, I need help with mounting a USB stick.

Initial situation: USB stick with 128GB, empty, to be used as a backup device (e.g. .config files)

mount /dev/da0p1 ~/stick always results in operation not permitted and is only available with doas.

What has already been tried from the research:

gpart destroy -F /dev/da0
gpart create -s gpt /dev/da0
gpart add -t freebsd-ufs /dev/da0
newfs /dev/da0p1
mount /dev/da0p1 ~/stick

sysctl.conf:
vfs.usermount=1

boot/loader.conf:
vfs.usermount=1

etc/fstab
/dev/da0p1 /home/user/stick udf ro,noauto 0 0

etc/devs.conf:
own /dev/da0 root:operator
perm /dev/da0 0664

etc/group
operator:*:5:root,user
 
Back
Top