How to enable exFAT in Ubuntu 14.04
Installing the below packages alone will auto-mounts your exFAT formatted drives ,
sudo apt-get install exfat-fuse exfat-utils
Or you may try to mount it manually after installing the above packages,
sudo mkdir /media/exfat
sudo mount -t exfat /dev/sdxx /media/exfat
/dev/sdxx
- your exfat partition.
In Ubuntu 14.04, exfat-fuse
and exfat-utils
packages are available in Universe repository. So enable this repository inorder to install these two packages on Ubuntu 14.04.
sudo add-apt-repository universe
And don't forget to update all repositories,
sudo apt-get update
how about compile from source ?
# wget http://sourceforge.net/projects/fuse/files/fuse-2.X/2.9.3/fuse-2.9.3.tar.gz
# tar -xzvf fuse-2.9.3.tar.gz
# cd fuse*
# ./configure
# make
# make install
Just add the following PPA and install from the PPA:
sudo apt-add-repository ppa:relan/exfat
sudo apt-get update
sudo apt-get install exfat-fuse exfat-utils
and reboot your computer.