Home  >  Article  >  System Tutorial  >  Solve Ubuntu mounting mobile hard disk error: unknown file system type exfat

Solve Ubuntu mounting mobile hard disk error: unknown file system type exfat

PHPz
PHPzforward
2024-01-05 13:18:262144browse

An error occurred when ubuntu mounted the mobile hard disk: mount:unknown filesystem type 'exfat'

The processing method is as follows:
Ubuntu 13.10 or

Install exfat-fuse:

sudo apt-get install exfat-fuse

Ubuntu 13.04 or below

sudo apt-add-repository ppa:relan/exfat
sudo apt-get update
sudo apt-get install fuse-exfat

Solution to the error of mounting exfat format USB disk on CentOS Linux

Loading an extfat-formatted U disk in CentOS cannot be mounted, and the error mount: unknown filesystem type 'exfat' keeps appearing.

[root@localhost] mount -t exfat /dev/sdb1 /good

mount: unknown filesystem type 'exfat'

ubuntu挂载移动硬盘出现错误 mount:unknown filesystem type exfat

No matter how we try, the exfat format U disk cannot be mounted. Even though the system has recognized the U disk, it cannot be mounted. The following is the basic solution

1. Download fuse-exfat and exfat-util respectively

wget http://download1.rpmfusion.org/free/el/updates/6/SRPMS/fuse-exfat-1.0.1-2.el6.src.rpm
wget http://download1.rpmfusion.org/free/el/updates/6/SRPMS/exfat-utils-1.0.1-2.el6.src.rpm

2. Install dependencies

yum - y install scons fuse-devel

Install rpm-build

yum install rpm-build

Install the two downloaded packages

rpm -ivh fuse-exfat-1.0.1-1-el6.src.rpm exfat-utils-1.0.1-1.el6.src.rpm

Compile using rpmbuild

$ cd ~/rpmbuild/SPECS
$ rpmbuild -ba fuse-exfat.spec
$ rpmbuild -ba exfat-utils.spec

Rebuild the rpm file generated by spec compilation

/root/rpmbuild/RPMS/x86_64

rpm -ivh exfat-utils-1.0.1-2.el6.x86_64.rpm exfat-utils-1.0.1-1.el6.x86_64.rpm

Note that these two are different from the previous ones. They are files that can be executed directly without src.

The above is the detailed content of Solve Ubuntu mounting mobile hard disk error: unknown file system type exfat. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:jb51.net. If there is any infringement, please contact admin@php.cn delete