问题:
无法挂载 NTFS格式的分区
原创
©著作权归作者所有:来自51CTO博客作者perlin的原创作品,请联系作者获取转载授权,否则将追究法律责任
[root@localhost ~]# mount -t ntfs /dev/sda5 /test/
mount: unknown filesystem type 'ntfs'
主要由于系统无法识别ntfs文件系统。
解决办法:
wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2013.1.13.tgz
tar -zxvf ntfs-3g_ntfsprogs-2013.1.13.tgz
cd ntfs-3g_ntfsprogs-2013.1.13
./configure
make
make install
[root@localhost ~]# mount -t ntfs-3g /dev/sda5 /test/
The disk contains an unclean file system (0, 0).
The file system wasn't safely closed on Windows. Fixing.
[root@localhost ~]# ls /test/
7-Zip DTLite4413-0173.zip Program Files
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
centos7 数据盘分区并挂载
本文简单介绍如果将新创建的数据盘进行分区并格式化系统文件格式ext4.
数据盘 磁盘分区 格式化数据盘 -
Linux挂载ntfs分区Linux XP GCC C C++