<mohammadrony>

APT Repository

Repository

Commands

sudo apt-add-repository --yes REPOSITORY
sudo apt-add-repository --remove --yes REPOSITORY

Ubuntu 22

Add repository

sudo add-apt-repository -y -s "deb http://archive.ubuntu.com/ubuntu/ jammy main universe"
sudo apt update

Remove repository

sudo add-apt-repository -r -y -s "deb http://archive.ubuntu.com/ubuntu/ jammy main universe"

Upgrade

Upgrade all package

sudo apt upgrade -y

Upgrade specific package

sudo apt install -y PACKAGE
sudo apt install -y PACKAGE=VERSION*