转自:http://www.siutung.org/post/455/
今天将USB移动硬盘挂在CentOS上准备将压缩包拷贝下来的。
结果挂载移动硬盘的时候却提示:
mount: unknown filesystem type 'ntfs'
原因:Linux无法识别NTFS格式的分区。
解决:
因为刚刚将CentOS升级到了2.6.18-164.el5内核,无法使用Kernel NTFS Module挂载Windows下的NTFS分区(没有在开源站点上找到相应内核包),所以只有使用ntfs-3g来解决了。
打开ntfs-3g的下载站点,将最新稳定版(当前最新版本为ntfs-3g-2010.3.6)下载到CentOS,执行以下命令安装:
1、编译安装ntfs-3g:
# ./configure
# make
# make install
2、查看USB设备点:
# fdisk -l Disk /dev/sdb: 60.0 GB, bytes
heads, sectors/track, cylinders
Units = cylinders of * = bytes Device Boot Start End Blocks Id System
/dev/sdb1 * b W95 FAT32
/dev/sdb2 f W95 Ext'd (LBA)
/dev/sdb5 b W95 FAT32
/dev/sdb6 HPFS/NTFS
3、挂载NTFS分区:
# mount -t ntfs-3g /dev/sdb6 /mnt/win