I am trying to mount a FAT32 drive with Russian file names:
But I already have msdosfs_iconv.ko loaded:
and regular user can mount:
What's interesting if I mount/umount once as root:
then I can successfully mount/umount as a regular user without getting the error in the title.
My system:
What am I missing in my configuration?
Code:
mount_msdosfs -L en_US.UTF-8 -D UTF-8 -o large /dev/da0s1 ~/mnt/usb
mount_msdosfs: msdosfs_iconv: Operation not permitted
But I already have msdosfs_iconv.ko loaded:
Code:
kldstat|grep msdos
12 1 0xffffffff815b7000 11e0 msdosfs_iconv.ko
and regular user can mount:
Code:
sysctl vfs.usermount
vfs.usermount: 1
What's interesting if I mount/umount once as root:
Code:
sudo mount_msdosfs -L en_US.UTF-8 -D UTF-8 -o large /dev/da0s1 ~/mnt/usb
sudo umount ~/mnt/usb
then I can successfully mount/umount as a regular user without getting the error in the title.
My system:
Code:
uname -a
FreeBSD obama-fbsd 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64
What am I missing in my configuration?