前言

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.

Open Source: NTFS-3G

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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

Tuxera NTFS for Mac

Mac新手入门以及常用软件推荐 - https://wsgzao.github.io/post/mac/

文章目录
  1. 1. 前言
  2. 2. 更新记录
  3. 3. 介绍
  4. 4. Open Source: NTFS-3G
  5. 5. Tuxera NTFS for Mac