ntfs-3g via mount command

Code:
ntfs-3g [drive] [mountpoint]

works fine but

Code:
mount -t ntfs-3g [drive] [mountpoint]

mount: [drive] : Operation not supported by device

Why is this?
 
I don't think 'ntfs-3g' is a valid target for the mount -t command. Wasn't ntfs-3g itself some sort of symlink?
 
DutchDaemon said:
I don't think 'ntfs-3g' is a valid target for the mount -t command. Wasn't ntfs-3g itself some sort of symlink?

I was thinking the same too (about 'ntfs-3g' not a valid target for mount -t command), but from the man page:

SYNOPSIS
ntfs-3g [-o option[,...]] volume mount_point
mount -t ntfs-3g [-o option[,...]] volume mount_point

I've never tried mounting ntfs using the latter command though. Have you tried using the force option (though probably it is a bit risky)?
 
But the standard ntfs-3g install creates the symlink:

Code:
/usr/sbin/mount_ntfs-3g -> /usr/local/bin/ntfs-3g

without any custom modifications.
 
Back
Top