I'm trying to fix a broken system and work out what dependencies are missing. I ask apt-get about a package:
jon@jon-laptop:/var/log/apt$ sudo apt-get install -s openssh-server
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libumfpack5.7.1 : Depends: libcholmod3.0.6 but it is not going to be installed
openssh-server : Depends: openssh-client (= 1:7.1p2-2)
Depends: openssh-sftp-server but it is not going to be installed
Recommends: ssh-import-id but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
Ok, so the above says libcholmod3.0.6 is missing. So then I check it with:
jon@jon-laptop:/var/log/apt$ sudo apt-get install -s libcholmod3.0.6
Reading package lists... Done
Building dependency tree
Reading state information... Done
libcholmod3.0.6 is already the newest version (1:4.4.6-1).
libcholmod3.0.6 set to manually installed.
0 to upgrade, 0 to newly install, 0 to remove and 0 not to upgrade.
So this says it is installed... what's the deal?
thanks!