Which Debian package system command will list all partially installed packages and suggest how to get them correctly installed?
A.
dpkg -C
B.
apt-get -u
C.
dpkg -Dh
D.
dpkg -l
E.
apt-get -y
Explanation:
From the man pages:
dpkg -C, –audit list all partially installed packages and will make suggestions how to install them correctly.
-Dh is the option for displaying help for the debugging options
-I, –info shows status information about a specific package
apt-get-y, –yes, –assume-yes will answer every interactive question with Yes, allowing unattended installation and upgrades.
apt-get -u, –show-upgraded shows all packages that were or will be upgraded.