默认情况下, 6.4不支持Widows NTFS硬盘分区读写,要想把NTFS格式的磁盘挂载到CentOS 6.4下面
需要安装第三方的插件ntfs-3g,这里我们采用编译安装插件。 1、安装编译器,否则不能成功编译。 yum install gcc 根据提示按Y安装完成2、安装ntfs-3gcd
/home #进入/home目录,把软件下载到此目录
wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2011.4.12.tgz #下载 tar zxvf ntfs-3g_ntfsprogs-2011.4.12.tgz #解压 cd ntfs-3g_ntfsprogs-2011.4.12 #进入目录 ./configure #编译 make #安装 make install #安装 cd .. #返回上一级目录 rm -r -f ntfs-3g_ntfsprogs* #删除安装程序包 3、查看使用 fdisk -l #显示Widows NTFS硬盘分区信息 ##################################################################### [root@fyq-linux /]# fdisk -l Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes 255 heads, 63 sectors/track, 121601 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 4096 bytes I/O size (minimum/optimal): 4096 bytes / 4096 bytes Disk identifier: 0x0ac28733 Device Boot Start End Blocks Id System /dev/sdb1 * 1 13055 104857604 7 HPFS/NTFS Partition 1 does not end on cylinder boundary. /dev/sdb2 13055 121601 871901180 5 Extended Partition 2 does not end on cylinder boundary. /dev/sdb5 13055 49345 291503108 7 HPFS/NTFS /dev/sdb6 49345 85505 290455556 7 HPFS/NTFS /dev/sdb7 85505 111703 210433909 7 HPFS/NTFS Partition 7 does not start on physical sector boundary. /dev/sdb8 111703 121601 79506432 7 HPFS/NTFS WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted. Disk /dev/sda: 24.0 GB, 24015495168 bytes 255 heads, 63 sectors/track, 2919 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x1f681f67 Device Boot Start End Blocks Id System /dev/sda1 1 2920 23452631+ ee GPT ################################################################### 以上信息显示的是我的Widows NTFS硬盘分区信息,总共1T,有五个NTFS分区4、挂载分区,下面我们把
/dev/sda1分区挂载到/mnt/winC /dev/sda5分区挂载到/mnt/winD /dev/sda6分区挂载到/mnt/winE /dev/sda7分区挂载到/mnt/winF/dev/sda8分区挂载到/mnt/winG
进入/mnt目录,新建winC winD winE winF winG 四个挂载目录
cd /mnt mkdir winC winD winE winF winGmount -t ntfs-3g /dev/sda1 /mnt/winC #挂载
mount -t ntfs-3g /dev/sda5 /mnt/winD mount -t ntfs-3g /dev/sda6 /mnt/winE mount -t ntfs-3g /dev/sda7 /mnt/winFmount -t ntfs-3g /dev/sda8 /mnt/winG
分区挂载完成,现在可以进入/mnt目录下面查看对应的文件夹,即就是你移动硬盘的分区
如果想卸载,可以用下面的命令
umount /dev/sda1 #卸载
umount /dev/sda5 umount /dev/sda6 umount /dev/sda75、如果想让系统开机自动挂载移动硬盘,编辑/etc/fstab文件。
cp /etc/fstab /etc/fstabbak #更改之前先备份 vi /etc/fstab #编辑用insert命令在最后添加以下信息,以读写方式挂载磁盘
/dev/sda1 /mnt/winC ntfs-3g defaults 0 0
/dev/sda5 /mnt/winD ntfs-3g defaults 0 0 /dev/sda6 /mnt/winE ntfs-3g defaults 0 0 /dev/sda7 /mnt/winF ntfs-3g defaults 0 0/dev/sda8 /mnt/winG ntfs-3g defaults 0 0
执行ESC命令退出。
:wq!保存,退出 现在只要重启机器,会自动挂载移动硬盘.转载自:http://www.linuxidc.com/Linux/2012-09/70787.htm