Package Management

From miki
Revision as of 22:28, 14 October 2008 by Mip (talk | contribs) (New page: == Ubuntu / Debian == <source lang=bash> dpkg --get-selections # Show the list of packages installed through apt-get dpkg --get-selections | grep php # ... filtering for ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Ubuntu / Debian

dpkg --get-selections               # Show the list of packages installed through apt-get
dpkg --get-selections | grep php    # ... filtering for some specific package keyword
dpkg -L <package>                   # Show files delivered by a given <package>
apt-cache search <keyword>          # Search package cache (package name and description) for given <keyword>