Linux mount ntfs 磁盘分区

字体大小: 中小 标准 ->行高大小: 标准

今天,在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下载地址:

免费下载地址在 http://linux.linuxidc.com/

用户名与密码都是www.linuxidc.com

具体下载目录在 /pub/2011/09/20/Linux mount ntfs 磁盘分区/

从上面的网址下载并安装,已使系统对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格式分区。

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/59260.html