3

Gddrescue and testdisk are not on the 12.04 ISO that I downloaded and burned to a CD that I'm currently using to boot my system. Where do I point apt-get to install those packages?

I have Internet access but got this results:

root@ubuntu:/# sudo apt-get install testdisk
Reading package lists... Done
Building dependency tree Reading state information... Done 
E: Unable to locate package testdisk
root@ubuntu:/#
Tim
  • 32,861
  • 27
  • 118
  • 178
Jon Dallara
  • 31
  • 1
  • 1
  • 2

1 Answers1

7

Both packages are in the Universe repository. See this question to enable Universe repository :

In order to install them with the following commands you need an Internet access for your machine.

Testdisk Install testdisk:

sudo apt-get install testdisk

Gddrescue Install gddrescue:

sudo apt-get install gddrescue

For installation without internet access see

If that is not possible you may also try with a live rescue CD remix that already has these tools installed (e.g. SystemRescueCD, TestDisk Live CD)

Takkat
  • 142,284
  • I have internet access, got this result: root@ubuntu:/# sudo apt-get install testdisk Reading package lists... Done Building dependency tree
    Reading state information... Done E: Unable to locate package testdisk root@ubuntu:/#
    – Jon Dallara Oct 02 '12 at 06:36
  • 1
    See edit with link how to activate Universe repository. – Takkat Oct 02 '12 at 07:00