Ubuntu – How to install traceroute utility?

aptpackage-management

I'm getting this:

atul@ubuntu:~$ sudo apt-get install traceroute
[sudo] password for atul: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package traceroute is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'traceroute' has no installation candidate

Can any one tell me how to solve this problem?

Best Answer

it has to be installed with the package inetutils-traceroute.

sudo apt-get install inetutils-traceroute
Related Question