.
How to order commands? update, upgrade, etc.
For a one line,
what order should these four (4) commands be in?
Below is a Terminal One Liner for
Kubuntu 22.04.1 LTS (Jammy Jellyfish)
What additional commands would make the above upgrade more complete?
--
How to order commands? update, upgrade, etc.
For a one line,
what order should these four (4) commands be in?
Code:
sudo apt update sudo apt list --upgradeable sudo apt dist-upgrade --fix-missing sudo apt autoremove --purge
Below is a Terminal One Liner for
Kubuntu 22.04.1 LTS (Jammy Jellyfish)
Code:
sudo apt update;\ sudo apt list --upgradeable;\ sudo apt dist-upgrade --fix-missing;\ sudo apt autoremove --purge;
What additional commands would make the above upgrade more complete?
--
Comment