11

I'm unable to mount Sandisk 64GB SDXC card.

This error shown while connecting using my phone.

This

I tried this, this and this links, but unable to find any solution.

I've tried the below commands to install the exfat,

sudo add-apt-repository ppa:relan/exfat
sudo apt-get update && sudo apt-get install exfat-utils fuse-exfat

But below error displayed in terminal,

The following information may help to resolve the situation:

The following packages have unmet dependencies:
fuse-exfat : Depends: fuse-utils (>= 2.7) but it is not installable
E: Unable to correct problems, you have held broken packages.
Karthik
  • 251

1 Answers1

17

There is no need to add extra repo. If you are using Ubuntu 14.04, exfat-fuse and exfat-utils packages are present in Universe repository.

Enable it (if it is not enabled) using

sudo add-apt-repository universe

Update your software list using

sudo apt-get update

Now you can install it using

  sudo apt-get install exfat-fuse exfat-utils
g_p
  • 18,504