User Tools

Site Tools


rpmcommands

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
rpmcommands [2006/10/16 23:16] 209.8.22.201rpmcommands [2008/02/16 23:38] (current) 92.195.6.210
Line 1: Line 1:
 +====== RPM Quickref ======
  
 +list all installed packages:
 +  rpm -qa
 +
 +show package info
 +  rpm -qi <package>
 +
 +the same but for an uninstalled packagefile
 +  rpm -qpi <package.rpm>
 +
 +list files in package
 +  rpm -ql <package>
 +
 +install package
 +  rpm -ivh <package.rpm>
 +
 +delete package
 +  rpm -e <package>
 +
 +Adding ''--test'' will do a dryrun and only check for (dependency) errors
 +
 +list requirements for installing/using package
 +  rpm -q <package> --requires