Linux挂载U盘报错:mount: unknown filesystem type 'ntfs'
Posted linux_ng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux挂载U盘报错:mount: unknown filesystem type 'ntfs'相关的知识,希望对你有一定的参考价值。
原因:由于Linux上无法识别NTFS格式的分区的原因
解决方法:安装 ntfs-3g
1、下载:wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz
2、解压:tar zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz
3、进安装目录,编辑
#./configure
# make
# make install
执行./configure时报错:/bin/rm: cannot remove `libtoolT’: No such file or directory
解决方法:编辑configure文件,注释掉$RM "$cfgfile"
#vim configure
若不行,则安装gcc和libtool试试
#yum install gcc
#yum install libtool
4、用mount –t ntfs-3g挂载
# mount –t ntfs-3g /dev/sdb1 /mnt/usb
以上是关于Linux挂载U盘报错:mount: unknown filesystem type 'ntfs'的主要内容,如果未能解决你的问题,请参考以下文章
uboot下识别FAT32格式的U盘报错:## Valid DOS partition found ##