Live Chat!

How to check what have installed in Debian/Ubuntu

* * * * ½ 2 votos

November 21st, 2006 mysurface

To check what have install by listing all using dpkg is easy.
dpkg -l
To check whether a package is install also easy.
dpkg -l | grep apache
The command above is some how redundant, because dpkg support wild characters, doing this instead
dpkg -l “apache*”
By doing this, it will also list the package that not install but available in [...]

Posted in Admin, dpkg, dpkg-query | Hits: 9519 | 5 Comments »