ubuntu update code example

Example 1: update ubuntu

sudo apt update && sudo apt upgrade -y
#or use it seperately
sudo apt update
sudo apt upgrade
#you make wanna run below command to remove unwanted
#and free up some space
sudo apt autoremove

Example 2: how upgrade the thins upgradable in ubuntu

echo "sudo apt update && sudo apt -y upgrade && sudo apt -y dist-upgrade && sudo apt -y autoremove && sudo apt autoclean" > update && sudo mv update /usr/local/bin/update && sudo chmod +x /usr/local/bin/update

Example 3: how to update ubuntu

sudo apt update && sudo apt upgrade -y

Example 4: update ubuntu in terminal

#gets package(s) update definitions
sudo apt update
#upgrades the package(s) for which update definitions are received
sudo apt upgrade

Example 5: ubuntu update

sudo -s -- <<EOF
apt-get update
apt-get upgrade -y
apt-get dist-upgrade -y
apt-get autoremove -y
apt-get autoclean -y
EOF

Example 6: ubuntu update

sudo -- sh -c 'apt-get update; apt-get upgrade -y; apt-get dist-upgrade -y; apt-get autoremove -y; apt-get autoclean -y'

Tags:

C Example