---
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