红联Linux门户
Linux帮助

Linux mount ntfs磁盘分区

发布时间:2014-12-12 09:35:12来源:linux网站作者:gltyi99

今天,在CentOS 5.6下,挂载ntfs格式的移动硬盘,总是报错,错误信息如下:

[root@localhostmnt]# mount -t ntfs /dev/sdc1 /mnt/1tdisk/

mount:unknown filesystem type 'ntfs'


从网上找了一些帮助,说操作系统的内核对ntfs格式不支持。

ntfs-3g-2010.10.2.tgz下载并安装,已使系统对ntfs格式的支持。

[root@localhostntfs-3g-2010.10.2]# ./configure

[root@localhostntfs-3g-2010.10.2]# make

[root@localhostntfs-3g-2010.10.2]# make install


测试挂载:

[root@localhostmnt]# mount -t ntfs-3g /dev/sdc1 /mnt/1tdisk/

挂载后,可以正常访问ntfs格式分区。