Search My Blog

Tuesday, October 12, 2010

RPM Package Manager - Wikipedia, the free encyclopedia

RPM Package Manager

From Wikipedia, the free encyclopedia
Jump to: navigation, search
RPM Package Manager (RPM)
Original author(s) Red Hat
Developer(s) Community & Red Hat
Stable release 4.8.1 / June 11, 2010; 3 months ago (2010-06-11)
Operating system GNU/Linux, Unix-like
Type Package management
License GNU General Public License
Website http://rpm.org/ http://rpm5.org/

RPM Package Manager is a package management system[1]. The name RPM refers to two things: software packaged in the .rpm file format, and the package manager itself. RPM was intended primarily for GNU/Linux distributions; the file format is the baseline package format of the Linux Standard Base.

Originally developed by Red Hat for Red Hat Linux, RPM is now used by many GNU/Linux distributions. It has also been ported to some other operating systems, such as Novell NetWare (as of version 6.5 SP3) and IBM's AIX as of version 4.

Originally standing for "Red Hat Package Manager", RPM now stands for "RPM Package Manager", a recursive acronym.

Contents

[hide]

[edit] Features

For a system administrator performing software installation and maintenance, the use of package management rather than manual building has advantages such as simplicity, consistency and the ability for these processes to be automated and non-interactive.

A typical RPM repository (the place where the packages are made available publicly) contains thousands of free applications.

Features of RPM include:

  • RPM packages can be cryptographically verified with GPG and MD5
  • Original source archive(s) (e.g. .tar.gz, .tar.bz2) are included in SRPMs, making verification easier
  • PatchRPMs and DeltaRPMs, the RPM equivalent of a patch file, can incrementally update RPM-installed software

[edit] Local operations

Packages may come from within a particular distribution (say Red Hat Linux) or be built for it by other parties (for example Freshrpms for Fedora).[2] Circular dependencies among mutually dependent RPMs (so-called 'dependency hell') can be problematic; in such cases a single installation command needs to specify all the relevant packages.

[edit] Front ends

There are several front ends to RPM that ease the process of obtaining and installing RPMs and in resolving their dependencies. These include:

[edit] Local RPM installation database

Working behind the scenes of the package manager is the RPM database, stored in /var/lib/rpm. It uses Berkeley DB as its back-end. It consists of a single database (Packages) containing all of the meta information of the installed rpms. Multiple databases are created for indexing purposes, replicating data to speed up queries. The database is used to keep track of all files that are changed and created when a user (using RPM) installs a package, thus enabling the user (via RPM) to reverse the changes and remove the package later. If the database gets corrupted (which is possible if the RPM client is killed), the index databases can be recreated with the rpm --rebuilddb command.[3]

[edit] Description

Whilst the RPM format is the same across different Linux distributions, the detailed conventions and guidelines may vary across them.

[edit] Package filename and label

An RPM is delivered in a single file, normally in the format:

<name>-<version>-<release>.<architecture>.rpm

such as:

libgnomeuimm-2.0-2.0.0-3.i386.rpm

Source code may also be distributed in RPM packages; the architecture part is specified as <src>:

libgnomeuimm-2.0-2.0.0-3.src.rpm

RPMs with the noarch.rpm extension refer to packages which do not depend on a certain computer's architecture. These include graphics and text for another program to use, and programs written in interpreted programming languages such as Python programs and shell scripts.

The RPM contents also include a package label, which contains the following pieces of information:

  • the software name
  • the software version (the version taken from original "upstream" source of the software)
  • the package release (the number of times the package has been rebuilt using the same version of the software). This field is also often used for indicating the specific distribution the package is intended for by appending strings like "mdv" (formerly, "mdk") (Mandriva Linux), "fc4" (Fedora Core 4), "rhl9" (Red Hat Linux 9), "suse100" (SUSE Linux 10.0) etc.
  • the architecture the package was built for (i386, i686, athlon, ppc, etc.)

The package label does not necessarily need to match the name of the file.

[edit] Library packaging

Libraries are distributed in two separate packages for each version. One contains the precompiled code for use at run-time, while the second one contains the related development files such as headers, etc. Those packages have "-devel" appended to their name field. The system administrator should ensure that the versions of the binary and development packages match.

[edit] Format

The format is binary and consists of four sections:[1]

  • The lead identifies the file as an RPM file and contains some obsolete headers.
  • The signature which can be used to ensure integrity and/or authenticity
  • The header contains metadata including package name, version, architecture, file list, etc..
  • A file archive, which usually is in cpio format, compressed with gzip. The rpm2cpio tool enables retrieval of the cpio file without needing to install the RPM package.[1]
    • In more recent versions of RPM, star can also be used for archive and bzip2, lzma or xz for compression.
    • RPM 5.0 format supports using xar for archiving.

[edit] Spec file

The "recipe" for creating an RPM package is a spec file. Spec files end in the ".spec" suffix and contain the package name, version, RPM revision number, steps to build, install, and clean a package, and a changelog. Multiple packages can be built from a single RPM spec file, if desired. RPM packages are created from RPM spec files using the rpmbuild tool.

Spec files are usually distributed within SRPM files, which contain the spec file packaged along with the source code.

[edit] Forks

As of June 2010, there are two versions of RPM in development — one led by the Fedora Project and Red Hat, and the other by a separate group led by a previous maintainer of RPM, a former employee of Red Hat. Both projects currently call themselves the "official" version of RPM.

[edit] RPM.org

The rpm.org community's first major code revision was in July 2007; version 4.8 was released in January 2010.

This version is used by distributions such as Fedora, Red Hat Enterprise Linux, Novell's openSUSE and SUSE Linux Enterprise, Mandriva and CentOS.

[edit] RPM v5

The RPM maintainer since 1999, Jeff Johnson, continued development efforts together with participants from several other distributions. RPM version 5 was released in May 2007.

This version is used by distributions like such as Alt Linux, ArkLinux, Unity Linux and cAos Linux, and also by the OpenPKG project which provides packages for other common UNIX-platforms.

[edit] See also

[edit] References

[edit] External links

Namespaces
Variants
Views
Actions

Go there...
http://en.wikipedia.org/wiki/RPM_Package_Manager

Don

No comments: