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…
Find and delete files older than 1 week (example)
find /home/users/backup_MyDB -type f -mtime +7 -exec rm {} + Although generally it is wise…
