The APT suite of tools includes a program called apt-cache whose purpose is to provide information about the Debian package database. Information are gathered during the apt-get update operation from the sources listed in the sources.list file.
In this chapter we will describe some features of this program.
Search for a program
Let’s say you would like to install a network mapper, but you don’t know the name of the program. You could type apt-cache search network mapper to get a list of packages that refer to the word network mapper:
Display Package Information
To display information about a particural package, type the apt-cache showpkg PACKAGE_NAME command:
Display Package Statistics
To learn how many packages are installed, how many dependencies are recorded, and various other statistics about the package database, type the apt-cache stats command:
Find Unmet Dependencies
To display information about unmet dependencies, type apt-cache unmet. This displays a summary of all unmet dependencies in the package cache.
Display Dependencies
To show all of the specified package’s dependencies, use the apt-cache depends PACKAGE_NAME command:
To display the names of all the packages installed on the system, use the apt-cache pkgnames command. You can specify the second parameter to filter the name list. For example, to find all packages that begin with the string doc, we would use the following command:
In this chapter we will describe some features of this program.
Search for a program
Let’s say you would like to install a network mapper, but you don’t know the name of the program. You could type apt-cache search network mapper to get a list of packages that refer to the word network mapper:
Display Package Information
To display information about a particural package, type the apt-cache showpkg PACKAGE_NAME command:
Display Package Statistics
To learn how many packages are installed, how many dependencies are recorded, and various other statistics about the package database, type the apt-cache stats command:
Find Unmet Dependencies
To display information about unmet dependencies, type apt-cache unmet. This displays a summary of all unmet dependencies in the package cache.
Display Dependencies
To show all of the specified package’s dependencies, use the apt-cache depends PACKAGE_NAME command:
NOTE – to find reverse dependencies (packages that depend on the one you specify), use the rdepends subcommand.Locate All Packages
To display the names of all the packages installed on the system, use the apt-cache pkgnames command. You can specify the second parameter to filter the name list. For example, to find all packages that begin with the string doc, we would use the following command:
Post a Comment