当前位置: 代码迷 >> 综合 >> Accessing ExFAT partition on Fedora / 在Fedora系统上读写ExFAT分区
  详细解决方案

Accessing ExFAT partition on Fedora / 在Fedora系统上读写ExFAT分区

热度:1   发布时间:2024-01-09 20:36:07.0
---
title	Accessing ExFAT partition on Fedora
titlecn	在Fedora系统上读写ExFAT分区
author	Charles Shih <schrht@gmail.com>
date	2019-12-06
updated	2019-12-06
tags	ExFAT,mount,Fedora,Red Hat Linux
---

文章目录

  • Backgroud
  • Solution

Backgroud

ExFAT filesystem is widely supported on Windows and MacOS. So if you’d like to use your block device across Windows and MacOS, format it as ExFAT would be a great choice. This filesystem also can be accessed by Linux. But by default, Linux doesn’t support ExFAT filesystem, so you will get the following prompts while mounting the ExFAT partition to your system:

Error mounting /dev/xxx at xxxx: unknown filesystem type 'exfat' (udisks-error-quark, 0)

Solution

To access the ExFAT partition on Fedora, RHEL or CentOS system can be very easy. Just install fuse-exfat and exfat-utils packages on your system. The command should be:

sudo dnf install fuse-exfat exfat-utils

  相关解决方案