当前位置: 代码迷 >> 综合 >> Centos5.3 ntfs读写支持
  详细解决方案

Centos5.3 ntfs读写支持

热度:94   发布时间:2024-01-09 09:49:27.0

1、如果只要对ntfs盘进行读操作,在http://sourceforge.net/project/showfiles.php?group_id=13956 页面找到和内核版本匹配的文件。如我自己的,下载了

kernel-module-ntfs-2.6.18-128.el5-2.1.27-0.rr.10.11.i686.rpm

2、安装之。

3、如果还想对ntfs盘进行写操作,则要安装fuse+ntfs-3g

4、安装fuse

建议不要用二进制包安装而应该用源代码安装,我刚开始用二进制包安装总是提示

FATAL: Module fuse not found.
fuse: device not found, try 'modprobe fuse' first
FUSE mount point creation failed

郁闷了一阵子干脆源码安装

首先下载fuse2.7.2 http://sourceforge.net/project/showfiles.php?group_id=121684

fuse-2.7.2.tar.gz

然后就是经典的./configure&&make&&make install&&make clean

PS:执行./configure别忘了加参数--prefix=/usr,否则默认安装在 /usr/local/lib,这样有需要编辑/etc/ld.so.conf把/usr/local/lib加进去,再执行 /sbin/ldconfig,不然安装ntfs-3g会有错误。

5、安装ntfs-3g

这里建议用二进制包安装,免去编译的麻烦

下载地址:ftp://rpmfind.net/linux/fedora/e ... .417-1.fc7.i386.rpm
或http://download.opensuse.org/repositories/home:/benkai:/ntfs/CentOS_5/i386/ (找到对应版本)

ntfs-3g-1.2712-3.1.i386.rpm

6、mount -t ntfs-3g /dev/hda6 /mountpoint

7、OK!

  相关解决方案