0

I have recently installed Ubuntu 14.04 LTS. I ran the command sudo apt-get install ntfs-config, but it displays the following line:

Unable to locate package ntfs-config

What should i do now to install this?

Braiam
  • 66,947
  • 30
  • 177
  • 264
user267144
  • 77
  • 3
  • 9
  • Visit [this](http://askubuntu.com/questions/481354/how-to-solve-unable-to-locate-package-error) – Pandya Jun 30 '14 at 07:08

1 Answers1

3

In Ubuntu 14.04 ntfs-config package is located in Universe repository. So you have to enable universe repository inorder to install ntfs-config package.

sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install ntfs-config
Avinash Raj
  • 77,204
  • 56
  • 214
  • 254