Linux 和 Mac OS X 因为某些原因本身不支持读写 NTFS 文件系统,大多数人平时也不需要与 NTFS 做数据文件的交互,只是有时候 Windows 用户应急状态下需要使用大容量移动硬盘拷贝数据,必须实现 Linux 下挂载 NTFS ,而 Tuxera 恰好为 Linux 和 Mac 用户提供了灰常简单的实现方法。
Open Source: NTFS-3G , Read-Write NTFS Driver
2016 年 07 月 29 日 - 初稿
阅读原文 - https://wsgzao.github.io/post/ntfs-3g/
扩展阅读
Tuxera - https://www.tuxera.com/
我偷个大懒直接引用官方的原话
NTFS-3G is a stable, full-featured, read-write NTFS driver for Linux, Android, Mac OS X, FreeBSD, NetBSD, OpenSolaris, QNX, Haiku, and other operating systems. It provides safe handling of the Windows XP, Windows Server 2003, Windows 2000, Windows Vista, Windows Server 2008, Windows 7, Windows 8 and Windows 10 NTFS file systems. A high-performance alternative, called Tuxera NTFS is available for embedded devices and Mac OS X.
The release notes and the software changes can be found on the Release History page. Subscribe here for new release notifications.
Latest Download - http://www.tuxera.com/community/open-source-ntfs-3g/
NTFS-3G Manual - http://www.tuxera.com/community/ntfs-3g-manual/
stable version - https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2016.2.22.tgz
#Installation
tar zxvf /tmp/ntfs-3g_ntfsprogs-2016.2.22.tgz
cd ntfs*
#yum install gcc
./configure
make
make install # or 'sudo make install' if you aren't root
#Usage
fdisk -l
mkdir -p /mnt/windows
mount -t ntfs-3g /dev/sda1 /mnt/windows
#You can also make NTFS to be mounted during boot by adding the following line to the end of the /etc/fstab file:
vi /etc/fstab
/dev/sda1 /mnt/windows ntfs-3g defaults 0 0
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.