| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443 |
- <!-- -*- mode: sgml; mode: fold -*- -->
- <!doctype debiandoc PUBLIC "-//DebianDoc//DTD DebianDoc//EN">
- <book>
- <title>APT Files</title>
- <author>Jason Gunthorpe <email>jgg@debian.org</email></author>
- <version>$Id: files.sgml,v 1.12 2003/04/26 23:26:13 doogie Exp $</version>
- <abstract>
- This document describes the complete implementation and format of the
- installed APT directory structure. It also serves as guide to how APT
- views the Debian archive.
- </abstract>
- <copyright>
- Copyright © Jason Gunthorpe, 1998-1999.
- <p>
- "APT" and this document are free software; you can redistribute them and/or
- modify them under the terms of the GNU General Public License as published
- by the Free Software Foundation; either version 2 of the License, or (at your
- option) any later version.
- <p>
- For more details, on Debian GNU/Linux systems, see the file
- /usr/share/common-licenses/GPL for the full license.
- </copyright>
- <toc sect>
- <chapt>Introduction
- <!-- General {{{ -->
- <!-- ===================================================================== -->
- <sect>General
- <p>
- This document serves two purposes. The first is to document the installed
- directory structure and the format and purpose of each file. The second
- purpose is to document how APT views the Debian archive and deals with
- multiple package files.
- <p>
- The var directory structure is as follows:
- <example>
- /var/lib/apt/
- lists/
- partial/
- xstatus
- userstatus
- cdroms.list
- /var/cache/apt/
- pkgcache.bin
- srcpkgcache.bin
- archives/
- partial/
- /etc/apt/
- sources.list
- apt.conf
- /usr/lib/apt/
- methods/
- cdrom
- ftp
- http
- file
- gzip
- copy
- </example>
- <p>
- As is specified in the FHS 2.1 /var/lib/apt is used for application
- data that is not expected to be user modified. /var/cache/apt is used
- for regeneratable data and is where the package cache and downloaded .debs
- go.
- </sect>
- <!-- }}} -->
- <chapt>Files
- <!-- Distribution Source List {{{ -->
- <!-- ===================================================================== -->
- <sect>Distribution Source list (sources.list)
- <p>
- The distribution source list is used to locate archives of the debian
- distribution. It is designed to support any number of active sources and to
- support a mix of source media. The file lists one source per line, with the
- fastest source listed first. The format of each line is:
- <p>
- <var>type uri args</var>
- <p>
- The first item, <var>type</var>, indicates the format for the remainder
- of the line. It is designed to indicate the structure of the distribution
- the line is talking about. Currently the only defined value is <em>deb</em>
- which indicates a standard debian archive with a dists dir.
- <sect1>The deb Type
- <p>
- The <em>deb</em> type is to be a typical two level debian distributions,
- dist/<var>distribution</var>/<var>component</var>. Typically distribution
- is one of stable, unstable or testing while component is one of main,
- contrib, non-free or non-us. The format for the deb line is as follows:
- <p>
- deb <var>uri</var> <var>distribution</var> <var>component</var>
- [<var>component</var> ...]
- <p>
- <var>uri</var> for the <em>deb</em> type must specify the base of the
- debian distribution. APT will automatically generate the proper longer
- URIs to get the information it needs. <var>distribution</var> can specify
- an exact path, in this case the components must be omitted and
- <var>distribution</var> must end in a slash.
-
- <p>
- Since only one distribution can be specified per deb line it may be
- necessary to list a number of deb lines for the same URI. APT will
- sort the URI list after it has generated a complete set to allow
- connection reuse. It is important to order things in the sourcelist
- from most preferred to least preferred (fastest to slowest).
- </sect1>
- <sect1>URI specification
- <p>
- URIs in the source list support a large number of access schemes.
- <taglist>
- <tag>cdrom<item>
- The cdrom scheme is special in that If Modified Since queries are never
- performed and that APT knows how to match a cdrom to the name it
- was given when first inserted. APT also knows all of the possible
- mount points the cdrom drives and that the user should be prompted
- to insert a CD if it cannot be found. The path is relative to an
- arbitrary mount point (of APT's choosing) and must not start with a
- slash. The first pathname component is the given name and is purely
- descriptive and of the users choice. However, if a file in the root of
- the cdrom is called '.disk/info' its contents will be used instead of
- prompting. The name serves as a tag for the cdrom and should be unique.
- <example>
- cdrom:Debian 1.3/debian
- </example>
- <tag>http<item>
- This scheme specifies a HTTP server for the debian archive. HTTP is preferred
- over FTP because If Modified Since queries against the Package file are
- possible as well as deep pipelining and resume capabilities.
- <example>
- http://www.debian.org/archive
- </example>
- <tag>ftp<item>
- This scheme specifies a FTP connection to the server. FTP is limited because
- there is no support for IMS and is hard to proxy over firewalls.
- <example>
- ftp://ftp.debian.org/debian
- </example>
- <tag>file<item>
- The file scheme allows an arbitrary directory in the file system to be
- considered as a debian archive. This is useful for NFS mounts and
- local mirrors/archives.
- <example>
- file:/var/debian
- </example>
-
- <tag>smb<item>
- A possible future expansion may be to have direct support for smb (Samba
- servers).
- <example>
- smb://ftp.kernel.org/pub/mirrors/debian
- </example>
- </taglist>
- </sect1>
- <sect1>Hashing the URI
- <p>
- All permanent information acquired from any of the sources is stored in the
- lists directory. Thus, there must be a way to relate the filename in the
- lists directory to a line in the sourcelist. To simplify things this is
- done by quoting the URI and treating _'s as quoteable characters and
- converting / to _. The URI spec says this is done by converting a
- sensitive character into %xx where xx is the hexadecimal representation
- from the ASCII character set. Examples:
- <example>
- http://www.debian.org/archive/dists/stable/binary-i386/Packages
- /var/lib/apt/lists/www.debian.org_archive_dists_stable_binary-i386_Packages
- cdrom:Debian 1.3/debian/Packages
- /var/lib/apt/info/Debian%201.3_debian_Packages
- </example>
- <p>
- The other alternative that was considered was to use a deep directory
- structure but this poses two problems, it makes it very difficult to prune
- directories back when sources are no longer used and complicates the handling
- of the partial directory. This gives a very simple way to deal with all
- of the situations that can arise. Also note that the same rules described in
- the <em>Archive Directory</> section regarding the partial sub dir apply
- here as well.
- </sect1>
- </sect>
- <!-- }}} -->
- <!-- Extra Status {{{ -->
- <!-- ===================================================================== -->
- <sect>Extra Status File (xstatus)
- <p>
- The extra status file serves the same purpose as the normal dpkg status file
- (/var/lib/dpkg/status) except that it stores information unique to apt.
- This includes the autoflag, target distribution and version and any other
- unique features that come up over time. It duplicates nothing from the normal
- dpkg status file. Please see other APT documentation for a discussion
- of the exact internal behaviour of these fields. The Package field is
- placed directly before the new fields to indicate which package they
- apply to. The new fields are as follows:
- <taglist>
- <tag>X-Auto<item>
- The Auto flag can be Yes or No and controls whether the package is in
- auto mode.
- <tag>X-TargetDist<item>
- The TargetDist item indicates which distribution versions are offered for
- installation from. It should be stable, unstable or testing.
-
- <tag>X-TargetVersion<item>
- The target version item is set if the user selects a specific version, it
- overrides the TargetDist selection if both are present.
- </taglist>
- </sect>
- <!-- }}} -->
- <!-- Binary Package Cache {{{ -->
- <!-- ===================================================================== -->
- <sect>Binary Package Cache (pkgcache.bin)
- <p>
- Please see cache.sgml for a complete description of what this file is. The
- cache file is updated whenever the contents of the lists directory changes.
- If the cache is erased, corrupted or of a non-matching version it will
- be automatically rebuilt by all of the tools that need it.
- <em>srcpkgcache.bin</> contains a cache of all of the package files in the
- source list. This allows regeneration of the cache when the status files
- change to use a prebuilt version for greater speed.
- </sect>
- <!-- }}} -->
- <!-- Downloads Directory {{{ -->
- <!-- ===================================================================== -->
- <sect>Downloads Directory (archives)
- <p>
- The archives directory is where all downloaded .deb archives go. When the
- file transfer is initiated the deb is placed in partial. Once the file
- is fully downloaded and its MD5 hash and size are verified it is moved
- from partial into archives/. Any files found in archives/ can be assumed
- to be verified.
- <p>
- No directory structure is transfered from the receiving site and all .deb
- file names conform to debian conventions. No short (msdos) filename should
- be placed in archives. If the need arises .debs should be unpacked, scanned
- and renamed to their correct internal names. This is mostly to prevent
- file name conflicts but other programs may depend on this if convenient.
- A conforming .deb is one of the form, name_version_arch.deb. Our archive
- scripts do not handle epochs, but they are necessary and should be re-inserted.
- If necessary _'s and :'s in the fields should be quoted using the % convention.
- It must be possible to extract all 3 fields by examining the file name.
- Downloaded .debs must be found in one of the package lists with an exact
- name + version match..
- </sect>
- <!-- }}} -->
- <!-- The Methods Directory {{{ -->
- <!-- ===================================================================== -->
- <sect> The Methods Directory (/usr/lib/apt/methods)
- <p>
- The Methods directory is more fully described in the APT Methods interface
- document.
- </sect>
- <!-- }}} -->
- <!-- The Mirror List {{{ -->
- <!-- ===================================================================== -->
- <sect> The Mirror List
- <p>
- The mirror list is stored on the primary debian web server (www.debian.org)
- and contains a machine readable list of all known debian mirrors. It's
- format and style mirror the Package file.
- <taglist>
- <tag>Site<item>
- This is the proper host name of the site. It should not be a host within
- debian.org and generally cnames should be avoided here.
- <tag>Aliases<item>
- These list any commonly used aliases for the site. This field is used to make
- sure that a site is not added twice.
- <tag>Type<item>
- This field can either be <em>Push-Primary</> or <em>leaf</>.
- <em>Push-Primary</> are authorized top level mirrors of the archive, all
- other mirrors are leaf.
- <tag>Archive-[access]<item>
- The Archive field gives the path(s) to the debian archive. [access]
- specifies the access method and may be one of ftp, http, rsync, nfs, or
- smb. For many of the types it is possible to prefix the path with :###
- indicating that an alternate port should be used. Generally paths
- start with a / and end with a /, rsync is an exception in that the
- first directory component is not a path but a label.
- <tag>WWW-[access]<item>
- The WWW field gives the path(s) to the debian web site.
- <tag>CDImage-[access]<item>
- The WWW field gives the path(s) to the debian CD-ROM images
- <tag>Incoming-[access]<item>
- The Incoming field gives the path(s) to a mirror of the debian incoming
- directory.
- <tag>nonUS-[access]<item>
- The nonUS field gives the path(s) to a mirror of the non-US distribution.
- <tag>Maintainer<item>
- This is the email address of the maintainer of the mirror.
- <tag>Location<item>
- Location gives the general geographical region the mirror is in.
- <tag>Sponsor<item>
- The Sponsor field indicates who owns the mirror and a URL to a web page
- describing the organization.
- <tag>Comment<item>
- General free-form text.
- </taglist>
- <p>
- Some form of network measurement will have to be used to gauge performance
- of each of the mirrors. This will be discussed later, initial versions
- will use the first found URI.
- </sect>
- <!-- }}} -->
- <!-- The Release File {{{ -->
- <!-- ===================================================================== -->
- <sect> The Release File
- <p>
- This file plays and important role in how APT presents the archive to the
- user. Its main purpose is to present a descriptive name for the source
- of each version of each package. It also is used to detect when new versions
- of debian are released. It augments the package file it is associated with
- by providing meta information about the entire archive which the Packages
- file describes.
- <p>
- The full name of the distribution for presentation to the user is formed
- as 'label version archive', with a possible extended name being
- 'label version archive component'.
- <p>
- The file is formed as the package file (RFC-822) with the following tags
- defined:
- <taglist>
- <tag>Archive<item>
- This is the common name we give our archives, such as <em>stable</> or
- <em>unstable</>.
- <tag>Component<item>
- Refers to the sub-component of the archive, <em>main</>, <em>contrib</>
- etc. Component may be omitted if there are no components for this archive.
- <tag>Version<item>
- This is a version string with the same properties as in the Packages file.
- It represents the release level of the archive.
- <tag>Origin<item>
- This specifies who is providing this archive. In the case of Debian the
- string will read 'Debian'. Other providers may use their own string
- <tag>Label<item>
- This carries the encompassing name of the distribution. For Debian proper
- this field reads 'Debian'. For derived distributions it should contain their
- proper name.
- <tag>Architecture<item>
- When the archive has packages for a single architecture then the Architecture
- is listed here. If a mixed set of systems are represented then this should
- contain the keyword <em>mixed</em>.
- <tag>NotAutomatic<item>
- A Yes/No flag indicating that the archive is extremely unstable and its
- version's should never be automatically selected. This is to be used by
- experimental.
- <tag>Description<item>
- Description is used to describe the release. For instance experimental would
- contain a warning that the packages have problems.
- </taglist>
- <p>
- The location of the Release file in the archive is very important, it must
- be located in the same location as the packages file so that it can be
- located in all situations. The following is an example for the current stable
- release, 1.3.1r6
- <example>
- Archive: stable
- Component: main
- Version: 1.3.1r6
- Origin: Debian
- Label: Debian
- Architecture: i386
- </example>
- This is an example of experimental,
- <example>
- Archive: experimental
- Version: 0
- Origin: Debian
- Label: Debian
- Architecture: mixed
- NotAutomatic: Yes
- </example>
- And unstable,
- <example>
- Archive: unstable
- Component: main
- Version: 2.1
- Origin: Debian
- Label: Debian
- Architecture: i386
- </example>
- </sect>
- <!-- }}} -->
- </book>
|