Linux RPM - keshavbaweja-git/guides GitHub Wiki

Check signature

rpm --checksig <pkg_name>

Install

rpm -ivh <pkg_name>

-i : install

-v : verbose

-h : print hash symbol

Check dependencies

rpm -qpR <pkg_name>

-q : Query a package

-p : List capabilities this package provides

-R : List capabilities on which this package depends

Install without dependencies

rpm -ivh --nodeps <pkg_name>

List all files of an installed package

rpm -ql <pkg_name>

Reference

⚠️ **GitHub.com Fallback** ⚠️