AS4挂载NTFS文件系统

AS4内核版本2.6.9-55.ELsmp,将kernel-devel  kernel kernel-headers这个几个包更新了一下,版本为2.6.9-89.33.1.EL 

一、下载软件包:

1、 Linux kernels 2.6.14以后的版本才包含FUSE模块,这里手工编译安装FUSE,我选择的fuse-2.7.0

#wget http://downloads.sourceforge.net/project/fuse/fuse-2.X/2.7.0/fuse-2.7.0.tar.gz?r=http://sourceforge.net/projects/fuse/files/fuse-2.X/2.7.0/&ts=1315986269&use_mirror=cdnetworks-kr-2

2、NTFS-3G

#wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2011.4.12.tgz

二、安装软件包 

1、安装fuser
    #tar zxvf fuse-2.7.0.tar.gz
    #cd fuse-2.7.0
    #./configure

#make
    #make install

#modprobe fuse

如果编译时报错:

*** Please specify the location of the kernel source with
*** the '--with-kernel=SRCDIR' option
configure: error: ./configure failed for kernel

请安装与内核版本一致的kernel-devel包即可解决。

2、安装ntfs-3g

#tar zxvf ntfs-3g_ntfsprogs-2011.4.12.tgz

#cd ntfs-3g_ntfsprogs-2011.4.12

#./configure

#make

#make install

三、挂载NTFS文件系统

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

四、开机自动挂载NTFS文件系统

编辑文件fstab#vim /etc/fstab,

加入如下内容

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

你可能感兴趣的:(linux,系统,软件包)