现在的位置: 首页 > 综合 > 正文

LINUX下挂载ntfs

2018年02月10日 ⁄ 综合 ⁄ 共 577字 ⁄ 字号 评论关闭
[root@localhost tools]# uname -a //查看自己的内核版本
Linux localhost.localdomain 2.6.18-8.el5 #1 SMP Fri Jan 26 14:15:21 EST 2007 i686 i686 i386 GNU/Linux

http://rpm.pbone.net/index.php3/stat/11/limit/21/dl/40/vendor/2608/com/Linux-NTFS%20Project.html

搜索并下载适合自己内核版本的模块,安装。
用如下方法加载:
#mount -t ntfs /dev/sda1 /mnt/windows //为什么ntfs后没有跟" -3g",此补丁为系统自带ntfs功能的补丁

如果上面的不行,可以到如下地址下载安装

http://www.ntfs-3g.org/index.html#download

然后安装fuse

http://downloads.sourceforge.net/fuse/fuse-2.7.4.tar.gz

安装fuse ,ntfs-3g
./configure
make
make install

#mount -t ntfs-3g /dev/sda1 /mnt/windows
#vi /etc/fstab //自动加载

/dev/sda1 /mnt/windows ntfs-3g defaults 0 0

抱歉!评论已关闭.