If you need to Mount exFAT Drive storage on Ubuntu, the process is now much easier than in older Linux releases. Modern Ubuntu versions include built-in exFAT support, allowing USB drives and SD cards to work almost instantly after connection.
exFAT is widely used on flash drives because it supports large files and works across Windows, macOS, and Linux systems. Unlike FAT32, it removes the 4GB file size limitation, making it ideal for backups, videos, and portable storage devices.
This guide explains how to mount exFAT drives manually, install required utilities, and configure automatic mounting on Ubuntu 24.04 and 22.04.
The exFAT filesystem was designed for removable storage devices such as USB flash drives and SD cards. It provides better compatibility across operating systems while supporting modern storage capacities.
Ubuntu 22.04 and Ubuntu 24.04 use Linux kernel support for exFAT, so most drives mount automatically through the desktop environment. However, servers or minimal installations may still require manual configuration.
If automatic mounting does not work, you can manually Mount exFAT Drive devices using the Linux terminal.
First, identify the connected storage device:
lsblk -f
Locate the partition marked with the exfat filesystem type. It will usually appear as /dev/sdb1 or similar.
Next, create a mount directory:
sudo mkdir -p /mnt/usb
Now mount the drive:
sudo mount -t exfat /dev/sdb1 /mnt/usb
Replace /dev/sdb1 with your actual device name.
Once mounted, you can access files directly from /mnt/usb.
To safely disconnect the drive later, unmount it first:
sudo umount /mnt/usb
Although Ubuntu supports exFAT natively, additional tools are useful for formatting and repairing drives.
Install the required utilities using:
sudo apt updatesudo apt install exfatprogs
The exfatprogs package includes important tools such as:
mkfs.exfat for formatting drivesfsck.exfat for filesystem repairexfatlabel for managing drive labelsTo format a USB drive as exFAT:
sudo mkfs.exfat -L "USB_DRIVE" /dev/sdb1
Be careful, as formatting permanently erases all existing data.
If you regularly use the same external drive, setting up automatic mounting can save time.
First, find the device UUID:
sudo blkid /dev/sdb1
Then add the drive to /etc/fstab:
UUID=1234-5678 /mnt/usb exfat defaults,uid=1000,gid=1000,umask=022 0 0
After saving the file, test the configuration:
sudo mount -a
If no errors appear, Ubuntu will automatically mount the drive during boot.
One common issue is the error:
unknown filesystem type 'exfat'
This usually means exFAT support or utilities are missing. Installing exfatprogs typically resolves the problem.
Another frequent issue is read-only access. In that case, repair the filesystem:
sudo fsck.exfat /dev/sdb1
Permission problems can also occur because exFAT does not support Linux ownership permissions directly.
Learning how to Mount exFAT Drive devices on Ubuntu is essential for users working with portable storage across multiple operating systems. Ubuntu 24.04 and 22.04 simplify the process with native exFAT support, while tools like exfatprogs provide advanced management and repair capabilities.
Whether you are using USB drives, SD cards, or backup disks, proper exFAT setup ensures smooth compatibility and reliable file access across Linux, Windows, and macOS systems.