I know this is probably a straight forward syntax problem but I am having trouble getting an NTFS partition to automount a fixed partition on booting.
(fuse_load="YES" is in my /boot/loader.conf for whatever it's worth.)
The command I would use to do so under Mate since click-mounting does not work is:
(Which obviously mounts that partition as music and is r/w with no problems)
From past threads I picked up that something like this should be added into fstab:
Except I get the "Inappropriate file type or format" error during boot if I do so.
What's the mistake I am making here?
I see someone reporting the same issue in https://forums.freebsd.org/threads/50102/#post-283214 but with no solution. The big plus for me if I can do so is that I could switch over to FreeBSD full time, as NTFS access is literally the one thing keeping me from doing so.
(fuse_load="YES" is in my /boot/loader.conf for whatever it's worth.)
The command I would use to do so under Mate since click-mounting does not work is:
ntfs-3g /dev/ada1s5 /media/music
(Which obviously mounts that partition as music and is r/w with no problems)
From past threads I picked up that something like this should be added into fstab:
Code:
/dev/ada1s5 /media/music ntfs mountprog=/usr/local/bin/ntfs-3g,late,rw 0 0
What's the mistake I am making here?
I see someone reporting the same issue in https://forums.freebsd.org/threads/50102/#post-283214 but with no solution. The big plus for me if I can do so is that I could switch over to FreeBSD full time, as NTFS access is literally the one thing keeping me from doing so.