Add new 'rpm' cheatsheet

This commit is contained in:
quentin 2014-08-07 11:59:59 +02:00
parent 8dd00d8c9b
commit db92b4c5d8
1 changed files with 14 additions and 0 deletions

14
cheat/cheatsheets/rpm Normal file
View File

@ -0,0 +1,14 @@
# To install a package:
rpm -ivh <rpm>
# To remove a package:
rpm -e <package>
# To find what package installs a file:
rpm -qf </path/to/file>
# To find what files are installed by a package:
rpm -qpl <rpm>
# To list all installed packages:
rpm -qa