I normally update my Linux Debian using the Update manager, but how can I do that using the terminal?
Asked
Active
Viewed 5.5k times
1 Answers
13
On Debian and most Debian-based distributions (including Ubuntu):
Refresh the package database:
apt update,apt-get updateoraptitude updateInstall new packages:
apt upgrade,apt-get upgrade, oraptitude safe-upgrade.apt(-get) upgradeonly updates existing packages and is safer, whileapt full-upgradeorapt-get dist-upgrademay install new dependencies or remove existing ones.
(See also: apt-get vs aptitude)
u1686_grawity
- 426,297
- 64
- 894
- 966
-
And when do I know that a system restart is required after upgrading (let's say because of a kernel upgrade) – karatedog Aug 06 '13 at 13:31
-
Most update(except kernel and nvidea) won't require system restart. Because unlike Windows, open file won't prohibit the writing over it. However sometimes when running service is updated and you want to use the new version immediately, you merely need to restart that service alone(if not done by the upgrade script already). – Chong Jul 16 '15 at 05:34