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.
 
Back
Top