How to mount exFAT (used in SDcard / USB Drive) filesystem in Ubuntu
|
|
exFAT is a filesystem developed by Microsoft for use in flash drives or portable storage devices where the use of NTFS is not feasible. exFAT is inteded to be supported on consumer devices such as MP3 players, cameras, mobile phones and video recorders.
However filesystem formatted with exFAT are not currently supported by Ubuntu (as of 12.04) out from the box. In order to do that, you need to download exFAT filesystem module from relan PPA.
1. Add exFAT PPA repository
sudo -s apt-add-repository ppa:relan/exfat
2. Update apt-get repository
apt-get update
3. Install exfat modules
apt-get install fuse-exfat
That’s it you’re done! Then you can finally mounts exFAT filesystem using the following command….
4. mounting exFAT filesystem
mount -t exfat /dev/sdd /media
You should be able to mount exFAT filesystem from now on… the fuse-exfat also comes with ‘exfat-utils‘ package which enables the creation, checking and labelling exFAT filesystem.
Tags: apt-get, debian, exfat, fat32, filesystem, ubuntu, windows
Keep updated with the latest posts, be a part of over 1,000 subscribers! :
Subscribe to your email
You might also want to read...
- Ubuntu 10.04 fix for USB Drive not mounting on pc with Floppy Drive
- How to Boot Linux from USB Drive
- Mounting Apple iPhone filesystem on Ubuntu Linux
- How to use FTP filesystem on Ubuntu using CurlFtpFS
- How to use rsync to backup and synchronize files to USB drive
- How to add “Send To” removable USB drive in GNOME
- Create Ubuntu Live USB Drive easily with uSbuntu


July 31st, 2012 at 6:42 am
Last command doesn’t work
disk doesn’t mount
July 31st, 2012 at 6:48 am
any tip on mounting would be good :)
September 26th, 2012 at 7:37 am
You need to find your partition and replace “sdd” with the correct description of your partition.
Type: cat /proc/partitions
Determine which is your partition. The size should match the approximate size of your partition.
For example:
root@ubuntu:# cat /proc/partitions
major minor #blocks name
8 0 20971520 sda
8 1 20051968 sda1
8 2 1 sdb
8 5 916480 sdb2
root@ubuntu:# mount -t exfat /dev/sdb2 /media
October 3rd, 2012 at 3:52 am
Thanks! This worked perfect in Linux Mint for my 64GB SanDisk which I couldn’t see in Windows XP.
November 4th, 2012 at 5:37 am
Thanks a lot – your solution worked perfectly fine for my 150GB HDD exfat (previously formatted under w7). Am very grateful.