Friday, December 23, 2016

Updating existing software on linux from command line

These commands will upgrade all existing software packages on linux and remove any no longer used packages/dependencies

sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt-get dist-upgrade
sudo apt-get autoclean
sudo apt-get autoremove 

No comments:

Post a Comment