Thursday, December 26, 2013

mout exfat in ubuntu

How to mount exfat in kali or ubuntu/debian like distribution, one solution occurred in many posts is like below,

apt-get install python-software-properties
add-apt-repository ppa:relan/exfat
apt-get update
apt-get install fuse-exfat
mount -t exfat /dev/sdc1 /media/exfat 

but it doesn't work for me.

The other solution listed below works for me ,

apt-get install libfuse-dev # for fuse.h
download fuse-exfat from http://code.google.com/p/exfat/
follow instructions in http://code.google.com/p/exfat/wiki/HOWTO
scons
scons install
mount.exfat-fuse /dev/sdXn /mnt/exfat

No comments: