Table of Content
When mount the mount point from /etc/fstab, it is not working well,
mount issue
# mount point L:/oldhorse/test /test $ mount /test mount: cannot find /test in /etc/fstab or in /etc/fstab.d/$USER
But it works when manually type here,
$ mount L:/oldhorse/test /test $ mount | grep test L:/oldhorse/test on /test type ntfs (binary,user)
root cause
Finally the issue in on /etc/fstab mount point format, correct format,
# mount point L:/oldhorse/test /test ntfs binary,posix=0,user 0 0 $ mount /test $ mount |grep test L:/oldhorse/test on /test type ntfs (binary,posix=0,user)