I use the dpkg -l
command to find out what version of a package I have installed. For example:
dpkg -l network-manager
returns the information on the package:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Description
+++-=========================-=========================-==================================================================
ii network-manager 0.8.3~git.20101118t223039 network management framework daemon
As you can see, it returns 0.8.3~git.20101118t223039
which is wrong because it truncates the version (I've picked a long one for the purpose of this question). The way I've solved this in the past is to pass a stupidly long COLUMNS argument to make it expand:
COLUMNS=200 dpkg -l network-manager
which gives me the entire version number, but also a bunch of junk:
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Description
+++-============================================-============================================-========================================================================================================
ii network-manager 0.8.3~git.20101118t223039.d60a988-0ubuntu1 network management framework daemon
Now I can see the full version number, which is 0.8.3~git.20101118t223039.d60a988-0ubuntu1
.
I get the feeling that this is not the proper way to find the version number of an installed package. This never really was a problem in the past, but with the tacking on of "ubuntu" in the versions and the proliferation of PPAs these strings are getting longer and longer. Is there an easier way?
e. g.:
Sample output:
It's not using the
dpkg
command but apt-show-versionsExample:
I think aneeshep's is the best answer as your question specifies using dpkg. But for completeness sake, here's another way:
Or for just the version number:
Another method to find the version of an installed package via
dpkg
as below,Example:
Explanation:
dpkg -l
command lists all the installed packages.This standard output was fed as input to theawk
command.awk
searches for the corresponding package name in the standard input(column 2) if it finds then it grabs the corresponding line. And finally prints the value of (column 3) which was actually represents the package version.According to the above, column 2 represents the package name, column 3 represents the package version, column 4 represents the architecture and column 5 represents package description.
The command
apt -qq list <package-name>
shows whether the package is installed and appears to return the full version number.Example 1 – uses
-qq
Example 2 – uses
-qq
and*
Example 3 – uses
-qqa