Linux挂载U盘报错:mount: unknown filesystem type 'ntfs'

问题:Linux挂载U盘时,报错mount: unknown filesystem type 'ntfs' 错误。这是由于Linux上无法识别NTFS格式的分区的原因。

解决办法:安装ntfs-3g

[root@localhost ~]# wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz
[root@localhost ~]# tar -zxvf  ntfs-3g_ntfsprogs-2017.3.23.tgz
[root@localhost ~]# cd ntfs-3g_ntfsprogs-2017.3.23.tgz
[root@localhost ~]# ./configure
[root@localhost ~]# make && make install

 然后执行挂载命令,挂载U盘:

[root@localhost ~]# mount -t ntfs-3g /dev/sdb1 /mnt

 至此,就解决了Linux系统无法识别ntfs格式的问题。

 

posted @ 2022-09-28 17:24  千里走单琦  阅读(1598)  评论(0编辑  收藏  举报