This article will show you how you can use the rpm command to preform various package management task , such as installing, removing, querying the rpm database, etc…
1. Installing, removing and updating packages
1.1. Installing packages
Package installation is done using rpm -i (or –install). The basic usage of the command is as follows:
for example to install htop – An Interactive text-mode Process Viewer for Linux, one wold obtain the rpm package of htop and install it as follows:
rpm -i htop-0.9-11.1.x86_64.rpm
Optionally the the -i option can take ftp or http address of the rpm package. In wich case rpm will download the package prior to installation.
Additional interesting rpm -i options are described in the table below. They can be passed after the -i argument, for example:
rpm -i <option> <package name>
NOTE: For a full list of options review the rpm man page, by typing man rpm.
Install-specific Options
|
Option |
Description |
Usage example |
-h –hash |
If you add -h, RPM will print fifty hash marks (“#”) as the install proceeds. |
rpm -ih htop-0.9-11.1.x86_64.rpm |
-v |
Provides additional output during the installation of a package. Combine this option with -h for nice output. |
rpm -iv htop-0.9-11.1.x86_64.rpm |
–test |
Do not install the package, simply check for and report potential conflicts. |
rpm -i –test htop-0.9-11.1.x86_64.rpm |
–excludedocs
|
Don’t install any files which are marked as documentation (which includes man pages and texinfo documents). |
rpm -i –excludedocs htop-0.9-11.1.x86_64.rpm |
–replacepkgs |
Replace a package with a new copy of itself.This option is normally used if the installed package has been damaged somehow and needs to be fixed up. |
rpm -i –replacepkgs htop-0.9-11.1.x86_64.rpm |
–force
|
Installs a package by ignoring conflicts with other packages and missing dependencies.
|
rpm -i –replacepkgs htop-0.9-11.1.x86_64.rpm |
–ignoresize
|
Don’t check mount file systems for sufficient disk space before installing this package.
|
rpm -i –ignoresize htop-0.9-11.1.x86_64.rpm
|
–ignorearch
|
Allow installation or upgrading even if the architectures of the binary package and host don’t match.
|
|
–nodeps |
Don’t do a dependency check before installing or upgrading a package. Note that this will probably leave the package broken after installation. |
rpm -i –nodeps htop-0.9-11.1.x86_64.rpm |
–ignoreos |
Allow installation or upgrading even if the operating systems of the binary package and host don’t match. |
|
1.2 Upgrading packages
Package upgrade is preformed using rpm -U (or –upgrade). The basic usage of the command is as follows:
for example: if we want to upgrade our htop package to a newer version we would download the newer version of the package (for example 1.0) and issue the following command:
rpm -U htop-1.0.1-bla-bla.rpm
During execution the rpm -U command preforms two distinct operations:
- Installs the desired package
- Erases all older versions of the package, if any exists
As the -i option -U can take ftp or http address of the rpm package. In wich case rpm will download the package prior to upgrade.
rpm -U is a combination of two commands rpm -i – used for installing packages (see a bought) and the rpm -e command used for deleting(erasing) packages (see below). The additional rpm -i options described in section 1.1. Installing packages are relevant for the rpm -U command. As stated before, refer to the manual page of rpm for additional command line options.
1.3 Removing packages (erasing)
In rpm the process of removing packages from the system is called erasing. It’s preformed using the rpm -e (–erase) command. The basic usage of rpm -e is shown below:
rpm -e <package1> <package2> <package N>
If we want to remove the htop package from the system we will type:
RPM preforms number of steps during package removal:
- It checks the RPM database to make sure that no other packages depend on the package being erased.
- It executes a pre-uninstall script defined by the package (if one exists).
- It checks to see if any of the package’s config files have been modified. If so, it saves copies of them.
- It reviews the RPM database to find every file listed as being part of the package, and if they do not belong to another package, deletes them.
- It executes a post-uninstall script defined by the package (if one exists).
- It removes all traces of the package (and the files belonging to it) from the RPM database.
Additional rpm -e options are described in the table below. They can be passed after the -e argument, for example:
rpm -e <option> <package name>
NOTE: For a full list of options review the rpm man page, by typing man rpm.
Erase-specific Options
|
Option |
Description |
Usage example |
–test |
Preform erase tests only.This option is useful if you want to see what will happen if you remove a package from your system. |
rpm -e –test htop
|
–noscripts
|
Do not execute pre- and post-uninstall scripts.In most cases this option will result in unusable package.
|
rpm -e –noscripts htop
|
–nodeps
|
Do not check dependencies. If other packages depends on this particular package, using this option will break them.
|
rpm -e –nodeps htop
|
2. Retrieving information for packages
In recent days the most useful future or the rpm command are the querying capabilities.By querying capabilities I mean things like retrieving information about a package, such as installed files, dependencies etc, all stored in the rpm database.
Querying the database is done using the rpm -q “query arguments” command. We will look at this “query arguments” one by one.
2.1. Obtaining general information about a package
General information(or package summary) about installed rpm package is obtained using the rpm -qi command. For example if we want to retrieve general information about the htop package we would type:
This will result in output like this:
Name : htop Relocations: (not relocatable)
Version : 0.9 Vendor: openSUSE
Release : 11.1 Build Date: Sat 19 Feb 2011 06:45:05 AM EET
Install Date: Wed 20 Jul 2011 02:50:36 PM EEST Build Host: build22
Group : System/Monitoring Source RPM: htop-0.9-11.1.src.rpm
Size : 151367 License: GPLv2+
Signature : RSA/8, Sat 19 Feb 2011 06:45:09 AM EET, Key ID b88b2fd43dbdc284
Packager : http://bugs.opensuse.org
URL : http://htop.sourceforge.net
Summary : An Interactive text-mode Process Viewer for Linux
Description :
htop is an interactive text-mode process viewer for Linux. It aims to
be a better 'top' and requires ncurses. It is tested with Linux 2.6,
but is also reported to work (and was originally developed) with the
2.4 series.
Authors:
--------
Hisham H. Muhammad
Distribution: openSUSE 11.4
2.2. Listing files that belongs to a package
To list files that belongs to a package one would use the rpm -ql command. For example if we want to retrieve the files that belong to the htop package:
This will result in output like this:
/usr/bin/htop
/usr/share/applications/htop.desktop
/usr/share/doc/packages/htop
/usr/share/doc/packages/htop/COPYING
/usr/share/man/man1/htop.1.gz
/usr/share/pixmaps/htop.png
rpm -qc command on the other hand will list only the configuration files that belongs to a package. For example if we want to list the configuration files that belongs to tomcat6 we would type:
This will result in output like this:
/etc/logrotate.d/tomcat6
/etc/tomcat6/catalina.policy
/etc/tomcat6/catalina.properties
/etc/tomcat6/context.xml
/etc/tomcat6/logging.properties
/etc/tomcat6/server.xml
/etc/tomcat6/tomcat-users.xml
/etc/tomcat6/tomcat6.conf
/etc/tomcat6/web.xml
rpm -qd will list only the package documentation files.
rpm -qs will display the state(modified or not) of each file in the package. Each file in the package may have one of the following states:
- normal – A file in the normal state has not been modified by installing another package on the system.
- replaced — Files in the replaced state have been modified by installing another package on the system.
- not installed – A file classified as not installed, is not installed
Here is the result of executing rpm -qs against tomcat6 package:
normal /etc/init.d/tomcat6
normal /etc/logrotate.d/tomcat6
normal /etc/tomcat6
normal /etc/tomcat6/Catalina
normal /etc/tomcat6/catalina.policy
normal /etc/tomcat6/catalina.properties
normal /etc/tomcat6/context.xml
normal /etc/tomcat6/logging.properties
normal /etc/tomcat6/server.xml
normal /etc/tomcat6/tomcat-users.xml
normal /etc/tomcat6/tomcat6.conf
normal /etc/tomcat6/web.xml
.......
Normal at the start of the line is the state.
2.3. Finding which package provides a file
To find which package provides a file one would use the rpm -qf command. For example if we want to view which package provides htop binary:
Result of the command should looks like this:
rpm -qf requires the exact file path (in our example /usr/bin/htop). One neat trick, if you don’t know where the file is located is to use the the which command (show a full path of a shell command) in combination with rpm -lf. For example:
2.4. Querying all installed packages
If you want to review all packages that are installed on a system, rpm -qa is your friend. For example if I execute rpm -qa on my openSUSE box the result will looks like this:
oziris:/home/paskov # rpm -qa
licenses-20070810-92.1.noarch
netcat-1.10-1008.1.x86_64
libpth20-2.0.7-124.1.x86_64
libattr-2.4.44-11.1.x86_64
pptp-1.7.2-31.1.x86_64
libasm1-0.149-2.7.x86_64
perl-Net-Daemon-0.43-90.1.x86_64
xz-5.0.0-13.1.x86_64
usbutils-001-3.1.x86_64
....
The result of rpm -qa will be quite long so you may want to redirect it to a file or use more.
rpm -qa >> install_list #redirects the output to a file
rpm -qa | more #uses the more pager
Conclusion
This concludes part one of ‘Using the rpm command’ series. In the following articles we will look at more querying capabilities, and ways to format the output of rpm -q command. Also how to develop applications that make use of librpm.