IT业行者,行者无疆
分类: LINUX
2010-11-09 10:43:30
一、NTFS卷轴的挂载一 检测你的内核版本和CPU型号#uname -r -p #2.6.18-128.el5xen i686 我的内核版本号为:2.6.18-128.el5xen CPU类型为:i686 二 去官方网站上下载内核对应的RPM包 现在你可以根据你得到的相应的参数,去上下载相对应的版本了。 kernel-module-ntfs-2.6.18-128.el5xen-2.1.27-0.rr.10.11.i686.rpm 三 安装Rpm 四 将ntfs模块加载到内核中 查看ntfs是否被正确的加载 如果出现下面的信息应该是被正确的加载了。 五 Mount查看下原来硬盘的分区 [root@localhost 安装目录下]# fdisk -l Disk /dev/hda: 251.0 GB, 251000193024 bytes Device Boot Start End Blocks Id System Mount windwos下的/dev/hda6分区 [root@localhost Download]# mkdir /media/windows 查看是否被mount上来 [root@localhost Download]# df -h 这样可以在RHEL5下显示NTFS分区格式下的文件了。 二、redhat enterprise linux 5挂载可读写的NTFS盘NTFS-3G是一个开源软件,支持在Linux, FreeBSD, Mac OS X, NetBSD, Haiku操作系统下读写NTFS格式的分区。它能快速且安全的操作Windows XP, Windows Server 2003, Windows 2000 以及Windows Vista文件系统,除了完全的文件属主和访问权限,它支持所有符合POSIX标准的磁盘操作。linux 内核 2.6.0 以上才可以用 NTFS-3G。使用前请先用uname -a检查你的linux版本。 两步安装: 1.安装fuse,地址: 要安装稳定版本,ntfs-3g才能认到,这里下载了fuse-2.7.4.tar.gz 下载解压后,用终端进入fuse的目录,然后输入命令 # ./configure # make # make install # /sbin/modprobe fuse 期间系统会对程序进行编译。 2.安装ntfs-3g.地址: 目前最新的稳定般为: 下载 解压后,用终端进入ntfs-3g的目录,然后输入命令 # ./configure # make # make install 开始挂载(以C盘为例): # mount -t ntfs-3g -o umask=0000 /dev/sda1 /mnt/C 卸载: # umount /mnt/windows/C /dev/sda1 /mnt/C ntfs-3g ntfs utf8,umask=0222 0 0 /dev/sda5 /mnt/D ntfs-3g ntfs utf8,umask=0222 0 0 /dev/sda6 /mnt/E ntfs-3g ntfs utf8,umask=0222 0 0 /dev/sda7 /mnt/F ntfs-3g ntfs utf8,umask=0222 0 0 /dev/sda8 /mnt/G ntfs-3g ntfs utf8,umask=0222 0 0 这在文件就是实现自动挂载的参数设定。在系统启动时,会自动根据这个文件中的设置,自动挂载你的文件系统 |