📦APT Package Manager
Update System
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
# Other Options
sudo apt-get update
sudo apt-get upgradeecho "alias sysupdate='sudo apt-get update -y && sudo apt-get upgrade -y'” >> ~/. bashrc
# Refresh Terminal
sysupdate # Run this to update and upgrade the systemPackage Manipulation
sudo apt install <package> <options>
sudo apt install wget -y
sudo apt install curl wget file -y
# Other Options
sudo apt-get install <package># Uninstall
sudo apt remove <package>
sudo apt remove wget
# Remove deprecated/un-needed packages
sudo apt autoremove sudo apt update --fix-brokenLast updated