Help mounting NTFS, EXT4 drives via FSTAB

I can mount ntfs and ext4 drives manually but I just can't seem to get them to mount at bootup via fstab.
During bootup screen it's displaying: " :eek:peration not supported by device"

Here is my fstab:
fstab.png

Here is rc.conf:
Code:
ifconfig_re0="DHCP"
sshd_enable="YES"
ntpdate_enable="YES"
ntpd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
zfs_enable="YES"
kld_list="nvidia-modeset fusefs"
dbus_enable="YES"

In the Handbook for NTFS it says to # sysrc kld_list+=fusefs

And it works when I mount manually with: ntfs-3g /dev/ada3s1 /mnt/vane

man page for "ntfs" shows the fstab listing as:
Code:
/dev/sda5   /home/user/mnt   ntfs-3g  ro,uid=1000 0 0

So I tried replacing ntfs with ntfs-3g, but that didn't work either.
Tried adding mountprog=/usr/local/bin/ntfs-3g in the option area but that did not work either. :(

Anyone have any idea why my fstab is not working?
 
Here is my fstab:
Please don't post pictures of text. Just copy/paste the information please. Preferably in a [code]...[/code] block.

It's
Code:
/dev/sda5   /home/user/mnt   ntfs   mountprog=/usr/local/bin/ntfs-3g,late,ro,uid=1000 0 0
 
I've also been using this in /etc/fstab.
Is the "late" option always necessary, or is that dependent upon each actual use case ?
TIA's
 
It depends, it does the mount a little later on in the boot process. That might be needed if it depends on other services being up and running before the mount can actually be done.
 
Back
Top