List Installed Packages on Your Ubuntu Linux
If you’re interested in what exactly your Ubuntu system has got installed, there’s a command you can use to list the packages along with their versions and short descriptions.
How packages information is stored in Ubuntu
Essentially being a fork of the Debian Linux, Ubuntu inherited quite a lot of things from it. One of them is the way packages are installed and managed.
dpkg (Debian Package Manager) is a command found in every Ubuntu installation. While managing software packages, it stores all the files it depends upon in a /var/lib/dpkg directory. Most of these files you can look into using basic Unix commands, but there’s really no need because dpkg does it for you.
For example, status of all the installed packages is stored in /var/lib/dpkg/status file.
Here’s how it looks, just to give you an idea:
As you can see, there’s all the possible information about bash package (the Bourne Again Shell), but you usually don’t need to know this much, so instead we’ll use dpkg command to confirm what packages are installed and which ones are not.
List installed packages with dpkg
The easiest way to confirm the list of packages installed on your Ubuntu OS is to run dpkg -l
command. The output is quite long, so I’ll only show you a fragment of it:
The legend at the very top of the output explains the first 3 charactes of each line in the dpkg output, the symbols there confirm whether each package is expected to be installed, and whether it’s actually installed or partially installed:
A first letter of each option is used, so ii for the adduser package in this example means that the desired state for this package is “Installed” (first i) and the actual status is “Installed” as well. That’s the normal condition for most of your packages.
As you can also see, each line shows you the version of each package you have and provides a brief description of what a package is used for.
That’s it, this should be a good start for your Ubuntu exploration, I’ll post a few more things about dpkg in the future.
See also
- dpkg
- Debian Linux
- Ubuntu Linux
- Finding out the release version of your Unix
- apt-get behind proxy
If you’re interested in what exactly your Ubuntu system has got installed, there’s a command you can use to list the packages along with their versions and short descriptions.
How packages information is stored in Ubuntu
Essentially being a fork of the Debian Linux, Ubuntu inherited quite a lot of things from it. One of them is the way packages are installed and managed.
dpkg (Debian Package Manager) is a command found in every Ubuntu installation. While managing software packages, it stores all the files it depends upon in a /var/lib/dpkg directory. Most of these files you can look into using basic Unix commands, but there’s really no need because dpkg does it for you.
For example, status of all the installed packages is stored in /var/lib/dpkg/status file. Here’s how it looks, just to give you an idea:
As you can see, there’s all the possible information about bash package (the Bourne Again Shell), but you usually don’t need to know this much, so instead we’ll use dpkg command to confirm what packages are installed and which ones are not.
List installed packages with dpkg
The easiest way to confirm the list of packages installed on your Ubuntu OS is to run dpkg -l
command. The output is quite long, so I’ll only show you a fragment of it:
The legend at the very top of the output explains the first 3 charactes of each line in the dpkg output, the symbols there confirm whether each package is expected to be installed, and whether it’s actually installed or partially installed:
A first letter of each option is used, so ii for the adduser package in this example means that the desired state for this package is “Installed” (first i) and the actual status is “Installed” as well. That’s the normal condition for most of your packages.
As you can also see, each line shows you the version of each package you have and provides a brief description of what a package is used for.
That’s it, this should be a good start for your Ubuntu exploration, I’ll post a few more things about dpkg in the future.
See also
- dpkg
- Debian Linux
- Ubuntu Linux
- Finding out the release version of your Unix
- apt-get behind proxy