On desktop machines, the Update Manager application is able to show the details of a package upgrade in the section called "Description of update" in the bottom half of the screen. Is there a way to see this information for a server machine using the command line?
Install
apt-listchanges
, it will show the changes through pager and also mail them (to root, I think).You can combine the names of upgradable packages, obtained by
with the packages description obtained by
apt-cache
. Here is a script that do that:Some difficulties resolved above are that
apt-check -p
send output to stderr and do not write a newline on the last line.