I have installed Ubuntu 12.04 on Amazon EC2. Sometimes after connecting with the instance I get the following
7 packages can be updated.
4 updates are security updates.
How can I find which packages can be updated? Can I choose if don't wish to update some packages?
To do a simulated update:
sudo apt-get -s upgrade
To update only a single package:
sudo apt-get upgrade packagename_here
You can see what updates are available by typing as
sudo aptitude
.For example,
And if you don't want any package to update, then you can lock that package.
sudo -s
and hit enterEnter your password for sudo
sudo apt-get update
and thensudo apt-get upgrade
.For more information, check how to pin packages.
Please do this
then check what packages are available for upgrade
apt list --upgradable
then just install what you need from the outcome above
sudo apt-get install PACKAGE_NAME
You can hold any certain package, this will keep it at the same version no matter what.
First run
sudo -s
, thenecho package_name hold | dpkg --set-selections
.You can then remove the hold with
sudo apt-get install package_name
.Hope that helps.