centos无法mount ntfs分区解决办法
这个问题老早就遇到过,这几天在本机上装了CentOS,又遇到这个问题,这儿说一下解决办法。
1,遇到问题
[root@localhost zhangy]# mount /dev/sda5 /mnt/viats
mount: unknown filesystem type 'ntfs'
[root@localhost zhangy]# mount -t ntfs /dev/sda5 /mnt/vista
mount: unknown filesystem type 'ntfs'
提示是没法识别的文件系统
2,下载ntfs-3g
wget http://tuxera.com/opensource/ntfs-3g-2010.10.2.tgz
tar zxvf ntfs-3g-2010.10.2.tgz
cd ntfs-3g-2010.10.2
./configure --prefix=/usr/local/ntfs-3g
make && make install
CentOS 5.5默认是没有gcc的,也就是说根本没办法编译,make摄错的话,检查一下有没有gcc
[root@localhost ntfs-3g-2010.10.2]# whereis gcc
gcc: /usr/bin/gcc /usr/lib/gcc /usr/libexec/gcc /usr/share/man/man1/gcc.1.gz
如果没有gcc的话,yum install gcc就可以了。
3,重新mount
mount -t ntfs-3g /dev/sda5 /mnt/vista