I tried to use traceroute
for my networking project. But whenever I tried to install traceroute
it shows that
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt--fix-broken install' to correct these.
The following packages have unmet dependencies:
code : Depends: libgconf-2-4 but it is not going to be installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
Then I followed this link. But again it is not successfully installed and shows that,
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies: code : Depends: libgconf-2-4 but it is not installed
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
Now my question is, How I can install the traceroute
in my ubuntu 18.04?
sudo apt --fix-broken install
like the output suggests? – vidarlo Jan 27 '19 at 15:44traceroute
? You didn't show us the commands. Have you triedsudo apt install traceroute
?apt-cache search traceroute
shows many choices. – waltinator Jan 27 '19 at 15:47