IgnorantGuru / udevil

Mount without password
http://ignorantguru.github.com/udevil/
GNU General Public License v3.0
130 stars 30 forks source link

exfat mounting issue (needs to create mountpoint first) #83

Closed beelze closed 5 years ago

beelze commented 5 years ago
% udevil --verbose mount /dev/sdd1
ROOT: /bin/mount -v -t exfat -o nosuid,noexec,nodev,noatime,umask=0077,uid=1000,gid=1000,iocharset=utf8,namecase=0,nonempty /dev/sdd1 /media/m10exfat
FUSE exfat 1.3.0
WARN: volume was not unmounted cleanly.
fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the 'nonempty' mount option
      mount exit status = 1

but after # mkdir /media/m10exfat all went fine.

DrPoldo commented 5 years ago

I've done a bit of debug, it's a problem of exfat 1.3.0, it doesn't pass the 'nonempty' option to the fuse library. Downgrade exfat to 1.2.8 and you should be fine.

beelze commented 5 years ago

So, it's a fuse bug. Closing.