Solved Cannot auto mount ntfs

At a very beginning time after installation of ntfs-3g, I can auto mount ntfs via adding
Code:
/dev/nvd1p2            /mnt/win/d    ntfs            mountprog=/usr/local/bin/ntfs-3g,noauto,rw      0       0
to /etc/fstab. But it suddenly failed a long time ago, so I have to mount ntfs mannually after boot. How can I fix it?
 
Remove that pipe. And note that 'noauto' means it won't get mounted at boot.

Code:
             noauto  This file system should be skipped when mount is run with
                     the -a flag.
 
Ok, after remove noauto, I get
Code:
Mounting local filesystems:fuse: failed to open fuse device: No such file or directory
According to Thread fuse-failed-to-open-fuse-device.44544, I add
Code:
fusefs_load="YES"
to /boot/loader.conf. It can mount /dev/nvd1pX finally.

However, it still cannot auto mount /dev/ada0pX.
 
Back
Top