how to update ubuntu server packages all at once

Asked by rrchandrakmpati

I just now installed Ubuntu server. I would like to update it's all packages. I am using "sudo apt-get update" but still it is showing (soon after login) that ' 90 packages can be updated. Am I missing any thing...

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu apt Edit question
Assignee:
No assignee Edit question
Solved by:
rrchandrakmpati
Solved:
Last query:
Last reply:
Revision history for this message
mycae (mycae) said :
#1

Update updates the package database; upgrade actually does what you want

sudo apt-get safe-upgrade

or

sudo apt-get full-upgrade

you can read more in the manpage with

man apt-get

or here (same thing):
http://man.cx/apt-get

Revision history for this message
arochester (arochester) said :
#2

Try each of the following commands one-by-one:
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade

Revision history for this message
rrchandrakmpati (kommalapatiravichandra) said :
#3

Thankyou It worked