Hi,

On Thu, 1 Mar 2007, Jenny wrote:

> I just compiled the ntfs driver (v 1.0) from the sources via make install.
> However when I try to mount the NTFS drive, I get this error message
> 
> exec mount_ntfs-3g not found in /sbin:/usr/sbin: No such file or directory

I guess the mount_ntfs-3g link to ntfs-3g is not created on FreeBSD, that's 
why mount -t ntfs-3g ... doesn't work.

Hopefully both of these work:

        ln -s /usr/locale/bin/ntfs-3g /sbin/mount_ntfs-3g
        mount -t ntfs-3g /dev/ad0s1 /home/Jenny/Win

or (if /usr/locale/bin is in the $PATH)
        ntfs-3g /dev/ad0s1 /home/Jenny/Win

> Perhaps it could be fixed in the next release that the driver is not only  
> installed to /usr/locale/bin.

That wouldn't make 'mount -t ntfs-3g ...' work but I think the driver 
should be indeed installed in /sbin by default to avoid some common 
problems (/usr/local/bin isn't in the $PATH often, and more importantly, 
to fix automounting during boot if /usr or /usr/local is on a separate 
partition and the order of the fstab entries isn't right -- this is highly 
mysterious and frustrating for users).

> I tried to manually copy the driver into the /sbin directory as well as to  
> the /usr/sbin directory, but the message still pops up.

Yes, I think the symlink is missing, that's the real problem. 

> I'm using PC-BSD(FreeBSD that is), Kernel 6.1 -p11
> The mount command was mount -t ntfs-3g /dev/ad0s1 /home/Jenny/Win

Thanks for the bug report. Cheers,

        Szaka

PS: Liked Alexandra's movies :-)

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
ntfs-3g-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ntfs-3g-devel

Reply via email to