Home > System Tutorial > LINUX > body text

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

PHPz
Release: 2024-01-05 13:18:26
forward
2180 people have browsed it

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
Copy after login

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!

Related labels:
source:jb51.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!