Packet management
APT (Advanced Package Manager)
apt update #Updates information about the packages avaiable in the repository, "synchronizes" with it
apt upgrade #Updates the packages you have in your system to the latest version fetched by the "apt update"
apt install abc #Installs specified package
apt remove abc #Uninstalls specified package but keeps the configuration files, so it you install it again keeps its old config
apt purge abc #Uninstalls specified package fully, config files too
apt-cache search abc #Searchs packets in the APT database downloaded from the repository, useful if we can't remember the name of the package to download
apt-cache show abc #Shows detailed information on the package
apt list --installed #Prints a list of all the installed packages in our system
DPKG
dpkg -i abc.deb #Installs the specified package
wget url/package.deb && dpkg -i package.debGIT
Last updated