Can I choose which packages I want to upgrade with apt?
Using apt-get upgrade
upgrades all packages, not just some of them.
Using apt-get install package
doesn't upgrade some by me required packages which are related to the specified package.
Example: When I type sudo apt-get install firefox
, packages like firefox-locale-en
still using previous package version.
firefox
doesn't depend onfirefox-locale-en
. You can see it with:apt-cache depends firefox
. – BuZZ-dEE Feb 23 '13 at 15:30