Error mount: unknown filesystem type exfat on Ubuntu
This article will help you how to resolve error mount: unknown filesystem type ‘exfat’.
Example error message when mounting Micro SD using card reader:
Unable to mount 64 GB Volume
Error mounting /dev/sdb1 at /media/serverdiary/disk: Command-line `mount -t "exfat" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=1000,iocharset=utf8,namecase=0,errors=remount-ro,umask=0077" "/dev/sdb1" "/media/serverdiary/disk"' exited with non-zero exit status 32: mount: unknown filesystem type 'exfat'
exFAT filesystem is not installed in Ubuntu by default, so you need to install Exfat filesystem.
exFAT is proprietary and patented by Microsoft.
Install exFAT Filesystem on Ubuntu 13.10 or higher
Open terminal and run this command on Ubuntu 13.10 or higher
# sudo apt-get install exfat-fuse exfat-utils
For ubuntu 13.04 and lower, you will need a ppa to install the exfat support.
How to install exFAT filesystem on Ubuntu 12.0.4
sudo apt-add-repository ppa:relan/exfat
sudo apt-get update
sudo apt-get install fuse-exfat
If you see the error gpg: “tag:launchpad.net:2008:redacted” not a key ID: skipping during the apt-add-repository step, then you will need to manually install the signing key and run the apt-get update and apt-get install steps after that:
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4DF9B28CA252A784
$ apt-get update
Example output on Ubuntu 16.0.4 is




