0% found this document useful (0 votes)
46 views

RPM (Red Hat Package Manager)

RPM (Red Hat Package Manager) allows users to install, upgrade, and remove software packages on Linux systems. It supports querying installed packages and provides options to install packages forcefully or without dependencies. RPM functions both as the installation method and package format.

Uploaded by

pawan_battula
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
46 views

RPM (Red Hat Package Manager)

RPM (Red Hat Package Manager) allows users to install, upgrade, and remove software packages on Linux systems. It supports querying installed packages and provides options to install packages forcefully or without dependencies. RPM functions both as the installation method and package format.

Uploaded by

pawan_battula
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

RPM (Red hat Package Manager)

Package Management
RPM (Red hat Package Manager)
BY using RPM we can
Install new applications.
Upgrade existing applications.
Remove installed applications.
Query package.
RPM is both installation method and package format.
RPM Label Pattern

RPM Installation:
To install package
# rpm <options> <package>
# rpm ivh bind-9.2.4.28.el4-i386.rpm
Options:
-i To install
-u To update existing package
-h Display progress in hash.
-v verbose
To install RPM forcefully.
# rpm ivh bind-9.2.4.28.el4-i386.rpm - - force

To install RPM without dependency.


# rpm ivh bind-9.2.4.28.el4-i386.rpm - - nodeps
Querying RPM
# rpm <options> <packagename>
#rpm -qa # rpm ivh bind-9.2.4.28.el4-i386.rpm
Options:
- q availability of package
-qa display all install package
-qi display complete info of package
Remove RPM
To remove RPM we use
# rpm <options> <packagename>
#rpm -e bind-9.2.4-28.el4
To remove RPM without dependancy:
# rpm e bind-9.2.4-28.el4 - - nodpes

You might also like