package management system
A package management system is a collection of tools to automate the process of installing, upgrading, configuring, and removing software packages from a computer. The term is most commonly used with regards to Unix-like systems, particularly Linux, and these systems may rely heavily on it, with a typical Linux distribution including thousands of discrete packages.
In such a system, software is distributed in packages, usually encapsulated into a single file. As well as the software itself, packages often include other important information, such as the full name, a description of its purpose, the version number, vendor of the software, checksum information, and a list of other packages, known as dependencies, that are required for the software to run properly. This meta-information is typically entered into a local package database.
The differences between a package management system and an installer are:
| Package Management System | Installer |
|---|---|
| Typically part of the operating system. | Each product comes bundled with its own installer. |
| Uses a single installation database. | Tracks its own installation. |
| Can verify and manage all packages on the system. | Only works with its bundled product. |
| Single package management system vendor. | Multiple installer vendors. |
| Single package format. | Multiple installation formats. |
Ian Murdock has commented that package management is "the single biggest advancement Linux has brought to the industry", that it blurs the boundaries between operating system and applications, and that it makes it "easier to push new innovations [...] into the marketplace and [...] evolve the OS".[1]
Function
Package management systems are charged with the task of organising all of the packages installed on a system and maintaining their usability. These systems meet these goals using various combinations of the following techniques:
- Verification of file checksums to help prevent differences between the local and official versions of a package
- Checking of digital signatures
- Simple installation, upgrade, and removal facilities (c.f. file archiver)
- Dependency tracking to deliver working software from a package
- Update checking to provide the latest version of software, which often includes bug fixes and security updates
- Grouping of packages by function to help eliminate user confusion when installing or maintaining them.
Several of the widely used package management systems take advantage of simple backends for actually installing the packages. For instance, yum relies on rpm as a backend, and apt relies on dpkg.
Challenges with shared libraries
On systems where applications share pieces of machine instructions (i.e. packages' binaries are dynamic, as opposed to static), such as most Linux distributions, dependency checking becomes a necessity when installing and uninstalling packages.
Failure of package management systems to deal with complex relationships between different packages, or even a lack of a management system that would handle such a thing in the first place, results in what is habitually known as "dependency hell". The most popular specific kind of that is the DLL hell, which refers to clusters of problems that could be observed with dynamically linked libraries on Windows systems.
Some of the more advanced package management features are recursive and cascading package removal [2], in which all packages that depend on the target package and all packages that only the target package depends on, are also removed, respectively.
Front-ends for locally compiled packages
It is common for local administrators to install software not available in the repositories available through the package management. An example would be a newer version of a software application than that supplied with a distribution, or an alternative to that chosen by the distribution. If the additional software is distributed in source-only form, this approach requires local compilation. However, if additional software is locally added, the state of the local system may fall out of synchronization with the state of the package manager's database. If so, the local administrator user will be required to take additional measures to ensure the entire system is kept up to date. The package manager may no longer be able to do so automatically.
There are tools available to ensure that locally compiled packages are integrated with the package management. For distributions based on .deb and .rpm files as well as Slackware Linux, there is CheckInstall, and for recipe-based systems such as Gentoo Linux and hybrid systems such as Arch Linux, it is usually easy to write a recipe first, which then ensures that the package fits into the local package database.[citation needed]
Conversion of binary packages
- Further information: Alien (computing)
Alien is a program that converts between different Linux package formats. It supports conversion between Linux Standard Base, RPM, deb, Stampede (.slp) and Slackware (tgz) packages.
Maintenance of configuration
Particularly troublesome with software upgrades are upgrades of configuration files. Since package management systems, at least on Unix systems, originated as extensions of file archiving utilities, they can usually only either overwrite or retain configuration files, rather than applying rules to them. There are exceptions to this that usually apply to kernel configuration (which, if broken, will render the computer unusable after a restart). Problems can be caused if the format of configuration files changes. For instance, if the old configuration file does not explicitly disable new options that should be disabled. Some package management systems, such as Debian's dpkg, allow configuration during installation. In other situations, it is desirable to install packages with the default configuration and then overwrite this configuration, for instance, in headless installations to a large number of computers. (This kind of pre-configured installation is also supported by dpkg.)
Repositories
In order to give users easy control over the kinds of software that they are allowing to be installed on their system (and sometimes due to legal or convenience reasons on the distributors' side), software is often downloaded from a number of repositories.[3]
Upgrade suppression
When a user interacts with the package management software to bring about an upgrade, it is customary to present the user with the list of things to be done (usually the list of packages to be upgraded, and possibly giving the old and new version numbers), and allow him to either accept the upgrade in bulk, or select individual packages for upgrades. Many package management systems can be configured to never upgrade certain packages, or only upgrade them when critical vulnerabilities or instabilities are found in the previous version, as defined by the packager of the software. This process is sometimes called version pinning.
For instance:
- yum supports this with the syntax exclude=openoffice*,[4] pacman with IgnorePkg = openoffice[2] (to suppress upgrading openoffice in both cases)
- dpkg and dselect support this partially through the hold flag in package selections
- APT extends the hold flag through the complex "pinning" mechanism[5]
- aptitude has "hold" and "forbid" flags
Examples
Free software systems
- See also: Linux package formats
By the nature of free software, packages under similar and compatible licenses are available for use on a number of operating systems. These packages can be easily combined and distributed using configurable and internally complex packaging systems to handle many permutations of software and manage version-specific dependencies and conflicts. Some packaging systems of free software are also themselves released as free software. One typical difference between package management in proprietary operating systems, such as Mac OS X and Windows, and those in free software, such as Linux, is that free software systems permit third party packages to also be installed and upgraded through the same mechanism, whereas the PMS of Mac OS X and Windows will only upgrade software provided by Apple and Microsoft, respectively (with the exception of some third party drivers in Windows). The ability to continuously upgrade third party software is typically added by adding the URL of the corresponding repository to the package management's configuration file.
For binary packages
FreeBSD
- pkg_add(1) - a utility for installing software package distributions
- pkg_create(1) - a utility for creating software package distributions
- pkg_delete(1) - a utility for deleting previously installed software package distributions
- pkg_info(1) - a utility for displaying information on software packages
GNU/Linux
- dpkg, used originally by Debian and now by other systems, uses the .deb format and was the first to have a widely known dependency resolution tool (APT).
- The RPM Package Manager was created by Red Hat, and is now used by a number of other Linux distributions. RPM is the Linux Standard Base packaging format and is the base of a large number of additional tools, including apt4rpm, Red Hat's up2date, Mandriva's urpmi, openSUSE's YaST and YUM, used by Fedora and Yellow Dog Linux.
- A simple tgz package system combines the standard tar and gzip. Used by Slackware Linux there are a few higher-level tools that use the same tgz packaging format, including: slapt-get, slackpkg and swaret.
- Pacman for Arch Linux uses pre-compiled binaries distributed in a tgz archive.
- Smart Package Manager
- ipkg [1], a dpkg-inspired, very lightweight system targeted at storage-constrained Linux systems such as embedded devices and handheld computers
Mac OS X
- fink, for Mac OS X, derives partially from dpkg/apt and partially from ports.
- MacPorts, formerly called DarwinPorts, originated from the OpenDarwin project.
Windows
- Appupdater - Appupdater provides advanced functionality to Windows, similar to apt-get or yum on Linux. Fully customizable for use in a corporate environment.
- Windows-get - Windows-get is a command-line package manager with very similar syntax to linux apt-get. The repositories is maintained by volunteers and includes browsers, archive handlers, text editors etc
- Winpackman - The Windows Package Manager is a graphical package manager under development.
- GetIt - Uses several other packet managers as sources and combines their repositories to one big catalog.
- Appsnap - One of the most advanced packet managers for windows.
- FileHippo Update Checker - Not really a fully-featured packet manager but checks for updates for a big number of software of all licenses.
- Installpad - Very basic: Lets you install a small number of applications, no update functionality.
- VersionTracker - Checks for updatable software on your computer. Commercial.
Solaris
- SysV format (sometimes called pkgadd format), used by Solaris.
For installing using compile scripts
- Portage and emerge are used by Gentoo Linux. They were inspired by the BSD ports system and use scripts called ebuilds to install software.
- A recipe file contains information on how to download, unpack, compile and install a package in GoboLinux distribution using its Compile tool.
Hybrid systems
- The FreeBSD Ports Collection, sometimes known as just ports, uses a system of Makefiles to install software from sources or binaries. MacPorts (for Mac OS X), NetBSD's pkgsrc and OpenBSD's ports collection are similar.
Meta package managers
The following unify package management for several or all Linux and sometimes Unix variants. These, too, are based on the concept of a recipe file.
- Autopackage uses .package files.
- epm, developed by Easy Software Products (creators of CUPS), is a "meta packager", that allows to create native packages for all Linux and Unix operating systems (.deb, .rpm, .tgz for Linux, pkg for Solaris and *BSD, .dmg for OS X,...) controlled from a single *.list file.
- klik aims to provide an easy way of getting software packages for most major distributions without the dependency problems so common in many other package formats.
- Zero Install installs each package into its own directory and uses environment variables to let each program find its libraries. Package and dependency information is downloaded directly from the software authors' pages in an XML format, similar to an RSS Feed.
- The Nix Package Manager manages packages in a purely functional way.
Proprietary software systems
A wide variety of package management systems are in common use today by proprietary software operating systems, handling the installation of both proprietary and free packages.
- installp is the AIX command for Object Data Manager (ODM) databases.
- Software Distributor is the HP-UX package manager.
- In the Microsoft .NET framework an assembly is a partially compiled code library for use in deployment, versioning and security.
Application level package managers
Aside of the systems level application managers, there are some add-on package managers for operating systems with limited capabilities and for programming languages where developers need the latest libraries. Those include:
- fink - a free software repository and package manager for the MacOS X operating system
- Cygwin - a free software repository and package manager for the Windows operating system
- CPAN - a programming library and package manager for the Perl programming language
- PEAR - a programming library for the PHP programming language
- RubyGems - a programming library for the Ruby programming language
- EasyInstall - a programming library and package manager for the Python programming language
In contrast to systems level application managers, application level package managers focus on a small part of the operating system. They typically reside within a directory tree that is not maintained by the systems level package manager (like c:\cygwin or /usr/local/fink). Though, this is not the case for the package managers that deal with programming libraries. This leads to a conflict as both package managers claim to "own" a file and might break upgrades.
See also
References
- ^ http://ianmurdock.com/2007/07/21/how-package-management-changed-everything/
- ^ a b http://www.archlinux.org/pacman/pacman.8.html
- ^ Linux repository classification schemes. Retrieved on 2006-05-05.
- ^ http://lists.centos.org/pipermail/centos/2005-May/046320.html
- ^ http://www.debian.org/doc/manuals/apt-howto/ch-apt-get.en.html#s-pin
External links
This entry is from Wikipedia, the leading user-contributed encyclopedia. It may not have been reviewed by professional editors (see full disclaimer)



