NTFS-3G 是一个提供给 Linux、Mac OS X、FreeBSD、NetBSD、BeOS 和 Haiku 的 开放源代码、完全自由的 NTFS 文件系统驱动程序。
下面为大家介绍在CentOS 7.1 安装NTFS-3G的详细过程。
安装fuse
下载:wget http://nchc.dl.sourceforge.net/project/fuse/fuse-2.X/2.9.2/fuse-2.9.2.tar.gz
安装:
tar -zxvf tar -zxvf fuse-2.9.2.tar.gz
cd fuse-2.9.2
./configure
make
make install
modprobe fuse
安装ntfs-3g
下载:wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2013.1.13.tgz
安装:
tar -zxvf tar ntfs-3g_ntfsprogs-2013.1.13.tgz
cd ntfs-3g_ntfsprogs-2013.1.13
./configure
make
make install
挂载
mount -t ntfs-3g /dev/sd2 /samu/sd2/
Linux系统下安装NTFS-3g对NTFS进行读写:http://www.linuxdiyf.com/linux/7529.html
Gentoo Linux下读写NTFS格式分区(ntfs-3g解决NTFS只读不可写的问:http://www.linuxdiyf.com/linux/4832.html
ntfs-3g加载NTFS分区工具:http://www.linuxdiyf.com/linux/3057.html
CentOS上使用ntfs-3g挂载NTFS分区:http://www.linuxdiyf.com/linux/3049.html
CentOS 6.3下用ntfs-3g挂载Windows NTFS分区:http://www.linuxdiyf.com/linux/1994.html