Apt-cache Search Package
Apt-cache Show package for information about packages, such as description, size, version, etc.
sudo apt-get install package
sudo apt-get Install package--Reinstall reinstall packages
sudo apt-get-f install fix "-F =--fix-missing"
sudo apt-get Remove Package
sudo apt-get Remove Package--purge delete packages, including deletion of configuration files, etc.
sudo apt-get update source
sudo apt-get upgrade update installed packages
sudo apt-get Dist-upgrade upgrade system
sudo apt-get dselect-upgrade using Dselect upgrade
Apt-cache depends package learn about using dependencies
Apt-cache Rdepends package is to see which packages are dependent on
sudo apt-get BUILD-DEP Package Installation-related compilation environment
Apt-get Source Package Downloads The source code for the bundle
sudo apt-get clean && sudo apt-get autoclean cleanup of useless packages
sudo apt-get check to see if there is a corrupted dependency
After using APT (Advanced package management tool), it is generally not necessary to process a single deb file. If necessary, use the dpkg command.
Loading gedit:
# dpkg-i Gedit-2.12.1.deb
Unloading:
# Dpkg-r Gedit
Just write a name here. You can also add the--purge (-p) flag:
# dpkg-p Gedit
This will be removed along with the Gedit configuration file, with-R only if the configuration file is not deleted.
If you don't want to install a deb package, but want to see what files it contains:
# dpkg-c Gedit-2.12.1.deb
If you want more information:
# dpkg-i Gedit-2.12.1.deb
You can also use wildcard characters to list the software on your machine:
# dpkg-l gcc*
This will list all the packages that begin with GCC
If you want to see if a package is already installed:
# dpkg-s Gedit
If you want to see what files a software has, where it is installed:
# dpkg-l Gedit
If you want to see only some of these files, add grep:
# dpkg-l gedit grep png
ubuntu--Software Management