CentOS 用ntfs-3g挂载Windows NTFS分区

CentOS 6不支持NTFS移动硬盘挂载,要想把NTFS格式的磁盘挂载到CentOS 6.3下面需要安装第三方的插件ntfs-3g。

1、安装ntfs-3g

# 进入/home目录,把软件下载到此目录
cd /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

2、查看使用安装ntfs-3g

fdisk -l #显示NTFS移动硬盘分区信息
#####################################################################

Disk /dev/sda: 999.7 GB, 999653638144 bytes
255 heads, 63 sectors/track, 121534 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: 0x0008cd2a

Device Boot Start End Blocks Id System
/dev/sda1 * 1 17 131072 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sda2 17 1061 8388608 82 Linux swap / Solaris
/dev/sda3 1061 121535 967703552 83 Linux

Disk /dev/sdb: 1999.3 GB, 1999307276288 bytes
255 heads, 63 sectors/track, 243068 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: 0x0005d9bd

Device Boot Start End Blocks Id System
/dev/sdc4 5094 20673 117784800 f W95 Ext'd (LBA)
/dev/sda5 * 1 5093 38503048+ 7 HPFS/NTFS

###################################################################
以上信息显示的是移动硬盘分区信息.

3、挂载分区,下面我们把/dev/sdc5分区挂载到/media

cd /media
mount -t ntfs-3g /dev/sdc5 /media

#分区挂载完成,现在可以进入/mnt目录下面查看对应的文件夹,即就是你移动硬盘的分区
#如果想卸载,可以用下面的命令
umount /dev/sdc5

4、如果想让系统开机自动挂载移动硬盘,编辑/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

现在只要重启机器,会自动挂载移动硬盘

取消挂载问题:

umount的时候出现如下提示:
[root@weijing.co /]# umount /dev/sda1
umount: /mnt/upan: device is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))

解决方法:

[root@weijing.co /]# lsof -w /mnt/upan
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
bash 31761 root cwd DIR 8,18 8192 2316326 /mnt/upan/weijing.co

使用 lsof -w /mnt/upan 可以看出,有个命令窗口在/mnt/upan/weijing.co目录上,关闭这个窗口,或退出这个挂载目录,再使用 umount 即可安全退出挂载的设备!

发表评论