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

   

猜你喜欢

转载自www.cnblogs.com/linux-ng/p/10335226.html
今日推荐