Size: 1780
Comment: use suite name instead
|
Size: 5167
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
||<tablestyle="width: 100%;" style="border: 0px hidden">~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[fr/DebianRepository|Français]] - [[it/DebianRepository|Italiano]] - [[ru/DebianRepository|Русский]] - [[sv/DebianRepository|Svenska]]-~||<style="text-align: right;border: 0px hidden"> (!) [[/Discussion|Discussion]]|| | ||<tablestyle="width: 100%;" style="border: 0px hidden">~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: English - [[fr/DebianRepository|Français]] - [[it/DebianRepository|Italiano]] - [[ru/DebianRepository|Русский]] - [[sv/DebianRepository|Svenska]]-~|| |
Line 4: | Line 4: |
A Debian [[WikiPedia:Software_repository|repository]] is a directory where you can find software you can install on Debian. | A Debian repository is a set of Debian packages organized in a special directory tree, together with some infrastructure (checksums, indices, signatures, desciption translations, ...), that allows debian users to easily update their system or install additional software. |
Line 6: | Line 7: |
Each Debian [[WikiPedia:Software_distribution|distribution]] has its repository. The Debian repositories can be found on [[https://www.debian.org/mirror/|Debian mirrors]]. |
|
Line 11: | Line 9: |
== Anatomy of a repository == The following description is mostly for people who browse a repository using a standard web browser and wonder what is where and how everything fits together. A more precise and technical description is in [[/Format|Format]]. A debian repository contains several '''releases'''. Debian releases are named after characters from the "Toy Story" movies (wheezy, jessie, stretch, ...). The codenames have aliases, so called '''suites''' (stable, oldstable, testing, unstable) A release is divided in several '''components'''. In debian these are named {{{main}}}, {{{contrib}}}, and {{{non-free}}} and indicate the licensing terms of the software they contain. A release also has packages for various '''architectures''' amd64, i386, mips, powerpc, s390x, ...) as well as sources and architecture independent packages. The root directory of a repository has a directory {{{dists}}} which in turn has a directory for each release and suite, the latter usually symlinks to the former, but the browser won't show you a difference. Each release subdirectory contains a cryptographically signed {{{Release}}} file and a directory for each component. Inside these are directories for the different architectures, named {{{binary}}}-''<arch>'' and {{{sources}}}. And in these are files {{{Packages}}} that are text files containing the meta data of packages. Hmm, so where are the actual packages? The packages themselves are below {{{pool}}} in the root directory of the repository. Below {{{pool}}} there are again directories for all the components, and in these are directories named {{{0}}}, ..., {{{9}}}, {{{a}}}, {{{b}}}, ... {{{z}}}, {{{liba}}}, ... , {{{libz}}}. And in these are directories named after the software package they contain, and these directories finally contain the actual packages, i.e the {{{.deb}}} files. The name is not necessarily the name of the package itself, the package bsdutils e.g resides in the {{{pool/main/u/util-linux}}} directory, it is the name of the source that the package is generated from. A single upstream source may generate several binary packages, and all of them will end up in the same subdirectory below {{{pool}}}. The additional single letter directories are just a trick to avoid having too many entries in a single directory which is what many systems traditionally have performance problems with. In the leaf directories below {{{pool}}} there usually are several versions of a package, and the information what releases which version belongs to solely resides in the indices. This way, the same version of a package can belong to several releases but use disk space only once, and that without resorting to hardlinks or symlinks, so mirroring is rather simple and even works with systems that don't have these concepts. |
|
Line 13: | Line 31: |
The official debian package repository is mirrored all over the world. | |
Line 14: | Line 33: |
There is a [[Teams/Mirrors|team in charge of mirrors]]. | * The debian website has an [[https://www.debian.org/mirror/list|official list of Debian mirrors]] |
Line 16: | Line 35: |
A list of mirrors : | * There also is a list of [[/Unofficial|unofficial repositories]] containing various additional software |
Line 18: | Line 37: |
* The [[https://www.debian.org/mirror/list|official list of Debian mirrors]] * Some [[UnofficialRepositories|unofficial repositories]] |
* There is a [[Teams/Mirrors|team in charge of mirrors]]. |
Line 23: | Line 40: |
== Distributions == Here is the list of the software included in each Debian distribution : * in the [[https://packages.debian.org/stable/|stable repository]] * in the [[https://packages.debian.org/stable-backports/|stable-backports repository]] * in the [[https://packages.debian.org/testing/|testing repository]] * in the [[https://packages.debian.org/sid/|sid repository]] * in the [[https://packages.debian.org/experimental/|experimental repository]] |
== Package lists == To browse the list of debian packages grouped by category, you can look at the [[https://packages.debian.org/stable/|stable]], [[https://packages.debian.org/testing/|testing]], [[https://packages.debian.org/unstable/|unstable]] and various other lists, or search on the [[https://packages.debian.org/|packages homepage]] |
Line 39: | Line 50: |
* How to create [[CreateLocalRepositoryIndex|repository index files]] * How to set up a [[HowToSetupADebianRepository|debian repository]] with a list of available tools. * How to set up a [[DebianRepository/HowTo/TrivialRepository|trivial archive]] * A Tutorial on [[RepositoryLocal|Working with Repositories]] |
There are two different ways of working with repositories: You can use it with the apt family of programs (apt, apt-get, apt-cache, aptitude) to browse or install packages, or you can set up a repository yourself and add remove or replaces packages in it. === Using a repository === * A comprehensive guide showing best practices is in [[/UseThirdParty|UseThirdParty]] === Set up and maintain a repository === There are various reasons for building a repository yourself. You might just have a few packages with local modifications that you want to make available to apt, you may want to run a local mirror with those packages used by several machines to save bandwidth, or you build packages yourself and want to test them prior to publication. * A comprehensive list of [[/Setup|tools to set up a repository]] * [[/FeatureSupport|Feature Comparison]] of various repository handling software (incomplete) * Guide how to set up a repository with [[/SetupWithReprepro|reprepro]] |
A Debian repository is a set of Debian packages organized in a special directory tree, together with some infrastructure (checksums, indices, signatures, desciption translations, ...), that allows debian users to easily update their system or install additional software.
Contents
Anatomy of a repository
The following description is mostly for people who browse a repository using a standard web browser and wonder what is where and how everything fits together. A more precise and technical description is in Format.
A debian repository contains several releases. Debian releases are named after characters from the "Toy Story" movies (wheezy, jessie, stretch, ...). The codenames have aliases, so called suites (stable, oldstable, testing, unstable) A release is divided in several components. In debian these are named main, contrib, and non-free and indicate the licensing terms of the software they contain. A release also has packages for various architectures amd64, i386, mips, powerpc, s390x, ...) as well as sources and architecture independent packages.
The root directory of a repository has a directory dists which in turn has a directory for each release and suite, the latter usually symlinks to the former, but the browser won't show you a difference. Each release subdirectory contains a cryptographically signed Release file and a directory for each component. Inside these are directories for the different architectures, named binary-<arch> and sources. And in these are files Packages that are text files containing the meta data of packages. Hmm, so where are the actual packages?
The packages themselves are below pool in the root directory of the repository. Below pool there are again directories for all the components, and in these are directories named 0, ..., 9, a, b, ... z, liba, ... , libz. And in these are directories named after the software package they contain, and these directories finally contain the actual packages, i.e the .deb files. The name is not necessarily the name of the package itself, the package bsdutils e.g resides in the pool/main/u/util-linux directory, it is the name of the source that the package is generated from. A single upstream source may generate several binary packages, and all of them will end up in the same subdirectory below pool. The additional single letter directories are just a trick to avoid having too many entries in a single directory which is what many systems traditionally have performance problems with.
In the leaf directories below pool there usually are several versions of a package, and the information what releases which version belongs to solely resides in the indices. This way, the same version of a package can belong to several releases but use disk space only once, and that without resorting to hardlinks or symlinks, so mirroring is rather simple and even works with systems that don't have these concepts.
Mirrors
The official debian package repository is mirrored all over the world.
The debian website has an official list of Debian mirrors
There also is a list of unofficial repositories containing various additional software
There is a team in charge of mirrors.
Package lists
To browse the list of debian packages grouped by category, you can look at the stable, testing, unstable and various other lists, or search on the packages homepage
Working with repositories
There are two different ways of working with repositories: You can use it with the apt family of programs (apt, apt-get, apt-cache, aptitude) to browse or install packages, or you can set up a repository yourself and add remove or replaces packages in it.
Using a repository
A comprehensive guide showing best practices is in UseThirdParty
Set up and maintain a repository
There are various reasons for building a repository yourself. You might just have a few packages with local modifications that you want to make available to apt, you may want to run a local mirror with those packages used by several machines to save bandwidth, or you build packages yourself and want to test them prior to publication.
A comprehensive list of tools to set up a repository
Feature Comparison of various repository handling software (incomplete)
Guide how to set up a repository with reprepro