Redhat下挂载windows的ntfs
1、 首先们需要下载ntfs-3g 。
http://www.tuxera.com/community/ntfs-3g-download/
2 、 然后解压进行安装
[root@guo ~]#./configure
[root@guo ~]#make
[root@guo ~]#make install # or 'sudo make install'
3、下一步就是挂载ntfs了。
之前先用fdisk -l 进行查看文件
[root@guo mnt]# fdisk -l
Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 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: 0xb753b753
Device Boot Start End Blocks Id System
/dev/sda1 * 1 2550 20482843+ 7 HPFS/NTFS
/dev/sda2 2551 14593 96735397+ f W95 Ext'd (LBA)
/dev/sda5 8925 12043 25053336 7 HPFS/NTFS
/dev/sda6 12044 14593 20482843+ 7 HPFS/NTFS
/dev/sda7 2551 7650 40960000 83 Linux
/dev/sda8 7650 8663 8138752 83 Linux
/dev/sda9 8663 8924 2096128 82 Linux swap / Solaris
Partition table entries are not in disk order
接下来就可以挂载了,然后在终端中输入:
[root@guo mnt]# mount -t ntfs-3g /dev/sda2 /mnt/sda2
当然这时候可能出现错误提示/mnt中没有sda2 ,这时候可以在终端中输入:
[root@guo mnt]# mkdir sda2
然后再运行:
[root@guo mnt]# mount -t ntfs-3g /dev/sda2 /mnt/sda2
就成功了。