having problems getting automount -> usb port to work

using pkg automount

sudo ee /usr/local/etc/automount.conf

Code:
USERUMOUNT=YES
ATIME=NO
REMOVEDIRS=YES
FM="thunar --browser --no-desktop"
USER=userx
ENCODING=C.UTF-8
CODEPAGE=cp852
reboot, plugged in a ssd via usb port open thunar click on drive get error 'mount failed with mount /dev/da0p1: invalid argument'

ssd is ext4 format
now what to do to get this to work?
 
Check /var/log/automount.log.
Code:
$> sudo cat /var/log/automount.log
2023-06-09 09:59:31 /dev/ugen0.2: attach
2023-06-09 09:59:31 command 'simple-mtpfs' not found
2023-06-09 09:59:32 /dev/da0: attach
2023-06-09 09:59:32 /dev/da0p1: attach
2023-06-09 09:59:32 /dev/da0: not a block device
2023-06-09 09:59:32 /dev/da0p1: create '/media/da0p1' dir
2023-06-09 09:59:32 /dev/da0p1: fsck.ext4 You must have r/w access to the filesystem or be root
2023-06-09 09:59:32 command 'lklfuse' not found
2023-06-09 09:59:32 please install 'sysutils/fusefs-lkl' port or package
how do I get rw access and let me install fusefs-lkl and see what happens.
thanks

MOD:
now getting this
Code:
2023-06-09 10:13:50 /dev/da0p1: create '/media/da0p1' dir
2023-06-09 10:13:50 /dev/da0p1: fsck.ext4 You must have r/w access to the filesystem or be root
2023-06-09 10:13:50 /dev/da0p1: mount OK: 'lklfuse -o type=ext4 -o allow_other -o intr -o uid=1000 -o gid=0 -o umask=002 /dev/da0p1 /media/da0p1'
drwxrwxr-x 2 root wheel 512 Jun 9 08:45 da0p1
$> groups
userx wheel operator video webcamd
looks like it is down to permissions
 
Back
Top