Linux系统挂载NTFS分区(无kernel-ntfs对应版本包)

本人使用的是CentOS 5.4 64的系统,挂载普通移动硬盘时,发现没有对应centos 5.4 内核2.6.18-164.el5 x86_64的ntfsrpm包。

当没有ntfs的内核支持包的时候,用以下方法挂载ntfs移动硬盘

一.下载所需源码

fuse最新版本官网下载地址:http://sourceforge.net/projects/fuse/files/fuse-2.X/2.8.3/fuse-2.8.3.tar.gz/download

ntfs-3g最新版本官网下载地址:http://www.tuxera.com/opensource/ntfs-3g-2010.10.2.tgz

二.安装源码

建议安装前阅读INSTALL、REDEME文档里面有详细的安装方法和参数说明。

1.安装fuse
[root@localhost ~]#tar –zxvf fuse-2.8.3.tar.gz

[root@localhost ~]#cd fuse-2.8.3

[root@localhost ~]#./configure

[root@localhost ~]#make && make install

[root@localhost ~]#modprobe fuse

2.安装ntfs-3g
[root@localhost ~]#tar –zxvf ntfs-3g-2010.3.6.tgz

[root@localhost ~]#cd ntfs-3g-2010.3.6

[root@localhost ~]#./configure

[root@localhost ~]#make && make install

三.挂载NTFS分区
 

mount -t ntfs-3g /dev/sda1 /mnt/windows

 

 

参考:http://www.tuxera.com/community/ntfs-3g-download/

你可能感兴趣的:(linux,ntfs,fuse,ntfs-3g,挂载)