sudo nano ~/update_ubuntuAppend the following lines to the file :
export DEBIAN_FRONTEND=noninteractive
sudo apt update
sudo apt -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" -o APT::Get::Assume-Yes="true" -y dist-upgrade
sudo apt -y autoclean
sudo apt -y --purge autoremoveSave it and make it executable.
chmod +x ~/update_ubuntuTo run it :
sudo ~/update_ubuntuThat's all! See you.
