1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 15:17:57 +01:00

Merge pull request #688 from AloisMahdal/add-rpm

Add page for `rpm` - RPM Package Manager
This commit is contained in:
Ruben Vereecken 2016-01-29 15:20:28 +02:00
commit f6972e4794

27
pages/linux/rpm.md Normal file
View file

@ -0,0 +1,27 @@
# rpm
> RPM Package Manager.
- Show version of httpd package:
`rpm -q {{httpd}}`
- List versions of all matching packages:
`rpm -qa '{{mariadb*}}'`
- Identify owner of a file and show version of the package:
`rpm -qf {{/etc/postfix/main.cf}}`
- List package-owned files:
`rpm -ql {{kernel}}`
- Show scriptlets from an RPM file:
`rpm -qp --scripts {{some.rpm}}`
- Show changed, missing and/or incorrectly installed files of matching packages:
`rpm -Va '{{php-*}}'`