When I login I see message: 64 packages can be updated. 36 updates are security updates
How I can do this updates? I use Ubuntu 13.10
Thanks Nick
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
You can try the following cli to keep your droplet up-to-date, clean and secure: <br> <br>apt-get update && aptitude dist-upgrade -y && apt-get autoremove -y <br> <br>HTH <br>
You may also be interested in
aptitude
, which is a command-line, “graphical” interface to the package manager. It can be installed with the following command: <br> <br> sudo apt-get install aptitude <br> <br>After runningsudo aptitude
, the following basic commands are used for navigation: <br> <br>*Ctrl-T
: open the menu bar. <br>*+
: mark a package for installation. <br>*-
: cancel the pending installation of a package. <br>*g
: Proceed to the package selection confirmation screen. <br>*g
: Press again to confirm your selection. <br>*q
: Or press to close the current view and return to the package list. <br> <br>These are the absolute basic operations, of course. For details, see the documentation: <br> <br>http://algebraicthunk.net/~dburrows/projects/aptitude/doc/en/ <br> <br>Chapter 1 is a good starting point, andaptitude
can really be a great tool to get to know!You may want to also run sudo apt-get dist-upgrade
Run these two commands: <br>sudo apt-get update <br> <br>and then <br> <br>sudo apt-get upgrade <br>say “y” when they ask you for confirmation