Just about anything I try to install via the package manager gets the following:
root@opsview-appliance:/etc/apt/sources.list.d# apt-get install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
make is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies.
linux-image-virtual : Depends: linux-image-3.13.0-106-generic but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
Even when using -f its more of the same:
root@opsview-appliance:/etc/apt/sources.list.d# apt-get -f install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
make is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies.
linux-image-virtual : Depends: linux-image-3.13.0-106-generic but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
apt-get -f install
What is the output of this ? Did you add any repositories? – pLumo May 16 '17 at 11:56sudo apt-get update
to update your package database? – jhilmer May 16 '17 at 12:14sudo apt-get update && sudo apt-get install -f
like RoVo suggested? Thanks. – David Foerster May 18 '17 at 21:53