exfat icon indicating copy to clipboard operation
exfat copied to clipboard

failed to mount as non-root user

Open multiSnow opened this issue 5 years ago • 3 comments

run:

$>> mkdir mnt
$>> mount.exfat-fuse -o noatime /dev/sdX1 ./mnt/
FUSE exfat 1.3.0
fusermount: unknown option 'user=<current user name>'

and exit with code 1 with no volume mounted.

If try again

$>> mount.exfat-fuse -o noatime /dev/sdX1 ./mnt/
FUSE exfat 1.3.0
WARN: volume was not unmounted cleanly.
fusermount: unknown option 'user=<current user name>'

but the volume should never mounted before.

Use owner option in /etc/fstab shows the same error.

Call mount.exfat-fuse as root works correctly.

multiSnow avatar Oct 05 '19 01:10 multiSnow

Same issue here when using FreeBSD 12.1-STABLE.

ghost avatar Oct 19 '19 03:10 ghost

Same issue on FreeBSD 12.1 for me too.

andersbo87 avatar Dec 20 '19 20:12 andersbo87

Still an issue. It seems that the user option is currently not supported on FreeBSD. Changing main.c in line 502 from #if defined(__linux__) || defined(__FreeBSD__) to #if defined(__linux__)

which should disable this.

Alexco500 avatar May 27 '20 08:05 Alexco500

Fixed in 11e4f032d1782a606e3b004c89990a72cadf91bf.

relan avatar Feb 26 '23 10:02 relan

Fixed in v1.4.0.

relan avatar Mar 02 '23 20:03 relan