When I insert a USB stick or camera flash card I get the following error:
unknown filesystem type 'exfat'
Is there a simple way to add exFAT support to Ubuntu without kernel patching?
When I insert a USB stick or camera flash card I get the following error:
unknown filesystem type 'exfat'
Is there a simple way to add exFAT support to Ubuntu without kernel patching?
Ubuntu 14.04 and 14.10 (13.10 and higher)
Adding additional ppas is no longer required. Also, it seems
fuse-exfat
is no longer installable. The package to install is now namedexfat-fuse
and is available by default (universe repository). The packageexfat-utils
will also add the usual filesystem management tools including this package. Also thanks to this answerUbuntu 12.04 (13.04 and lower)
A more detailed, step-to-step description on how to use the PPA pointed to by StalkerNOVA can be found on stackoverflow, copied here for the sake of completeness:
Do only once:
sudo add-apt-repository ppa:relan/exfat
sudo apt-get update
sudo apt-get install fuse-exfat
sudo mkdir /media/exfat
Everytime you want to access sdxc the card/exfat filesystem:
sudo mount -t exfat /dev/sdc1 /media/exfat
On some devices, cameras, for locked sdxc cards etc you might want to mount the filesystem read only, just add-o ro
to the mount command line:sudo mount -t exfat -o ro /dev/sdc1 /media/exfat
sudo umount /media/exfat
The
sdc1
in the step-by-step above refers to the linux device where your card/exfat filesystem resides on. If this changes (usb card readers, cameras) or you simply don't know which one it could be either use the menu systemSystem
->Administration
->Disk Util
and usually you will find your camera or card reader in the list on the left hand side. Or - as a quick shortcut - usecat /proc/partitions
on a terminal command line. The latter is only useful if you know all the other unchanging device names on your system and thus can quickly identify the one added one.Google showed the answer... https://launchpad.net/~relan/+archive/exfat
For Ubuntu 14.04 there is a package called exfat-fuse. The following worked for me: