Discussion:
Mounting ntfs filesystem
scrat
2016-12-04 23:35:48 UTC
Permalink
What ports do I need to mount ntfs filesystems?

I have built sysutils/ntfsprogs and sysutils/fusefs-ntfs

I installed sysutils/fusefs-ntfs

When I installed sysutils/ntfsprogs it removed sysutils/fusefs-ntfs.

All the information I can find on the web tells me I need both.

Also mount_ntfs seems to be miising as it was not installed by either port.

Thanks
Jeremy Faulkner
2016-12-05 04:18:34 UTC
Permalink
fusefs-ntfs
kldload fuse
ntfs-3g [device] [path]
Post by scrat
What ports do I need to mount ntfs filesystems?
I have built sysutils/ntfsprogs and sysutils/fusefs-ntfs
I installed sysutils/fusefs-ntfs
When I installed sysutils/ntfsprogs it removed sysutils/fusefs-ntfs.
All the information I can find on the web tells me I need both.
Also mount_ntfs seems to be miising as it was not installed by either port.
Thanks
_______________________________________________
https://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
Polytropon
2016-12-05 08:15:33 UTC
Permalink
Post by scrat
What ports do I need to mount ntfs filesystems?
You'll need to install fusefs-ntfs.
Post by scrat
I have built sysutils/ntfsprogs and sysutils/fusefs-ntfs
I installed sysutils/fusefs-ntfs
When I installed sysutils/ntfsprogs it removed sysutils/fusefs-ntfs.
All the information I can find on the web tells me I need both.
As far as I know, you don't need both. From ntfsprogs, you
can use several tools to deal with NTFS partitions, but in
order to mount them, you'll need FUSE and the fusefs-ntfs
"plug-in". You also need to "kldload fuse" (/boot/loader.conf
is very convenient to do this - the kernel module is provided
by the OS), and then you can issue the mount command, for example:

# ntfs-3g /dev/da0s1 /mnt

The FUSE NTFS mount is more functional than the classic mount_ntfs
which was more or less a "read-only mounter".
Post by scrat
Also mount_ntfs seems to be miising as it was not installed by either port.
This program has been part of the base system. It's no longer
installed as the NTFS functionality has been moved to FUSE.
--
Polytropon
Magdeburg, Germany
Happy FreeBSD user since 4.0
Andra moi ennepe, Mousa, ...
RW via freebsd-questions
2016-12-05 12:07:20 UTC
Permalink
On Mon, 5 Dec 2016 09:15:33 +0100
Polytropon wrote:
# ntfs-3g /dev/da0s1 /mnt
Post by Polytropon
The FUSE NTFS mount is more functional than the classic mount_ntfs
which was more or less a "read-only mounter".
I have had a long-standing problem with fuse ntfs where adding or
deleting files updates the timestamps on other files in same directory.
There is a bug report I think.

Loading...