List available upgrades from apt without upgrading the system
apt-get --just-print upgrade
Related Posts
How do I find the kernel version, Ubuntu release and disk partition information from the terminal?
uname -a # for all info regarding kernel version, uname -r # for exact kernel…
Which one is better: using ; or && to execute multiple commands in one line?
Cheatsheet: A; B Run A and then B, regardless of success of A A &&…