I'm looking for a command line to update my already installed software.I want to update all of them.
Asked
Active
Viewed 1,248 times
-1
1 Answers
0
Open the Terminal(Ctrl + Alt+ T) and enter the following:
sudo apt-get update && sudo apt-get upgrade

xangua
- 7,217

Dusan Milosevic
- 1,952
- 6
- 27
- 48
sudo apt-get upgrade
– Avinash Raj Mar 21 '14 at 12:08aptdcon --refresh
followed byaptdcon --safe-upgrade
. This has the advantage of not requiring sudo privileges. – To Do Mar 21 '14 at 13:27