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

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

Jan 05, 2024 pm 01:18 PM
type unknown exfat

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!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25: How To Unlock Everything In MyRise
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the uses of the Type keyword in Go? What are the uses of the Type keyword in Go? Sep 06, 2023 am 09:58 AM

The usage of the Type keyword in Go includes defining new type aliases or creating new structure types. Detailed introduction: 1. Type alias. Use the "type" keyword to create an alias for an existing type. This alias does not create a new type, but only provides a new name for the existing type. Type aliases can improve code. The readability of the code makes the code clearer; 2. Structure type. Use the "type" keyword to create a new structure type. The structure is a composite type that can be used to define custom types containing multiple fields. etc.

Solve Ubuntu mounting mobile hard disk error: unknown file system type exfat Solve Ubuntu mounting mobile hard disk error: unknown file system type exfat Jan 05, 2024 pm 01:18 PM

An error occurs when ubuntu mounts a mobile hard disk: mount: unknownfilesystemtype'exfat'. The processing method is as follows: Ubuntu13.10 or install exfat-fuse: sudoapt-getinstallexfat-fuseUbuntu13.04 or below sudoapt-add-repositoryppa:relan/exfatsudoapt-getupdatesudoapt-getinstallfuse- exfatCentOS Linux mount exfat format USB disk error solution to load extfa in CentOS

US Kaspersky antivirus accounts sold to UltraAV with automatic service transfers occuring this month US Kaspersky antivirus accounts sold to UltraAV with automatic service transfers occuring this month Sep 18, 2024 pm 04:09 PM

US Kaspersky antivirus accounts have been sold to UltraAV, a division of the Pango Group. Pango was recently spun off from Aura, a security company founded by CEO Hari Ravichandran. Kaspersky was forced to abandon the US market after being banned by

Linux type command Linux type command Mar 20, 2024 pm 05:06 PM

In this guide, we will learn more about the "type" command in Linux. Prerequisites: To perform the steps demonstrated in this guide, you need the following components: A properly configured Linux system. See how to create a LinuxVM for testing and learning purposes. Basic understanding of the command line interface The Type command in Linux is different from other Linux-specific commands (for example: ls, chmod, shutdown, vi, grep, pwd, etc.). The "type" command is a built-in Bash function that is displayed as an argument. Information about the command type provided. $type In addition to Bash, other shells (Zsh, Ksh, etc.) also come with

What information is required when registering a Deepseek account? What information is required when registering a Deepseek account? Mar 12, 2025 pm 02:33 PM

Required information: 1. Email registration; 2. Mobile phone number registration; 3. Third-party social platform registration. After successful registration, you usually need to fill in some basic personal information, such as nickname, gender, birthday, etc.

What are the principles and usage of Redis type and encoding encoding? What are the principles and usage of Redis type and encoding encoding? May 29, 2023 pm 04:21 PM

Abstract Redis is an open source, high-performance key-value database that is widely used in various scenarios. In Redis, data type (type) and encoding (encoding) are very important concepts. This blog will introduce in detail the data types supported by Redis as well as the corresponding encoding methods and underlying implementation principles. To view the internal encoding of a Redis key, you can use the Redis command OBJECTENCODINGkey. Among them, key is the key name you want to query. For example, if you want to query the internal encoding of a key named mykey, you can execute the following command: 127.0.0.1:6379>objectencodin

What is the difference between Type selection maven project and maven pom when creating a SpringBoot project with idea? What is the difference between Type selection maven project and maven pom when creating a SpringBoot project with idea? May 16, 2023 pm 04:52 PM

1) Open the idea and start creating the SpringBoot project 2) Select SpringInitializr, select the appropriate jdk version, and click Next. When operating to the Type option, there are four project types to choose from: MavenProject (GenerateaMavenbasedprojectarchive) MavenPOM (GenerateaMavenpom.xml) GradleProject (GenerateaGradlebasedprojectarchive) )GradleConfig(GenerateaGradlebuildfile

How to solve '[Vue warn]: Invalid prop: type check' error How to solve '[Vue warn]: Invalid prop: type check' error Aug 26, 2023 pm 10:40 PM

How to Fix “[Vuewarn]:Invalidprop:typecheck” Error Vue.js is a popular JavaScript framework for building user interfaces. When developing applications using Vue.js, we sometimes encounter some error messages, one of which is "[Vuewarn]:Invalidprop:typecheck". This error is usually caused by incorrect use of attributes in the component

See all articles