Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

I have searched around here and with Google, and none of the instructions I have found work with Oneric.

How do install exFAT and mount an exFAT partition in the latest release of Kubuntu?

share|improve this question

1 Answer

You will need the package fuse-exfat to allow you to read and write on exFAT drives:

Open a terminal ctrl+alt+t and type the following:

  1. To add the correct repository:

    sudo apt-add-repository ppa:relan/exfat
    
  2. To update your package list:

    sudo apt-get update
    
  3. To install fuse-exfat and exfat-utils packages:

    sudo apt-get install fuse-exfat exfat-utils
    

Afterwards you just need to plug in the HDD and you're good to go.

More on this at this stackoverflow question.


Hope this will help you.

share|improve this answer
Update, this works on 12.10 – lqlarry Jan 25 at 3:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.