Skip to content

Instantly share code, notes, and snippets.

@hl2guide
Last active March 26, 2022 15:01
Show Gist options
  • Select an option

  • Save hl2guide/28140a2cebf82d3ce264048055aa4404 to your computer and use it in GitHub Desktop.

Select an option

Save hl2guide/28140a2cebf82d3ce264048055aa4404 to your computer and use it in GitHub Desktop.
Terminal Commands that update and clean up old versions of all installed packages on popular Linux distros.

Distros

Linux Mint, Zorin or Pop!_OS (Debian based)

sudo apt-get update && sudo apt-get upgrade --yes && sudo apt autoremove --yes && echo ✅ UPDATES COMPLETED

Manjaro (Arch based)

sudo pacman -Syu -y && echo ✅ UPDATES COMPLETED

Solus

sudo eopkg up && echo ✅ UPDATES COMPLETED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment