首页 > 技术文章 > Linux挂载U盘报错:mount: unknown filesystem type 'ntfs'

linux-ng 2019-01-29 18:11 原文

原因:由于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

   

 

推荐阅读