pkgmgt.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-pkgmgt">
  8. <?dbhtml filename="pkgmgt.html"?>
  9. <title>Package Management</title>
  10. <para>Package Management is an often requested addition to the LFS Book. A
  11. Package Manager allows tracking the installation of files making it easy to
  12. remove and upgrade packages. Before you begin to wonder, NO&mdash;this section
  13. will not talk about nor recommend any particular package manager. What it
  14. provides is a roundup of the more popular techniques and how they work. The
  15. perfect package manager for you may be among these techniques or may be a
  16. combination of two or more of these techniques. This section briefly mentions
  17. issues that may arise when upgrading packages.</para>
  18. <para>Some reasons why no package manager is mentioned in LFS or BLFS
  19. include:</para>
  20. <itemizedlist>
  21. <listitem>
  22. <para>Dealing with package management takes the focus away from the goals
  23. of these books&mdash;teaching how a Linux system is built.</para>
  24. </listitem>
  25. <listitem>
  26. <para>There are multiple solutions for package management, each having
  27. its strengths and drawbacks. Including one that satisfies all audiences
  28. is difficult.</para>
  29. </listitem>
  30. </itemizedlist>
  31. <para>There are some hints written on the topic of package management. Visit
  32. the <ulink url="&hints-root;">Hints subproject</ulink> and see if one of them
  33. fits your need.</para>
  34. <sect2>
  35. <title>Upgrade Issues</title>
  36. <para>A Package Manager makes it easy to upgrade to newer versions when they
  37. are released. Generally the instructions in the LFS and BLFS Book can be
  38. used to upgrade to the newer versions. Here are some points that you should
  39. be aware of when upgrading packages, especially on a running system.</para>
  40. <itemizedlist>
  41. <listitem>
  42. <para>If one of the toolchain packages (Glibc, GCC or Binutils) needs
  43. to be upgraded to a newer minor version, it is safer to rebuild LFS.
  44. Though you <emphasis>may</emphasis> be able to get by rebuilding all
  45. the packages in their dependency order, we do not recommend it. For
  46. example, if glibc-2.2.x needs to be updated to glibc-2.3.x, it is safer
  47. to rebuild. For micro version updates, a simple reinstallation usually
  48. works, but is not guaranteed. For example, upgrading from glibc-2.3.4
  49. to glibc-2.3.5 will not usually cause any problems.</para>
  50. </listitem>
  51. <listitem>
  52. <para>If a package containing a shared library is updated, and if the
  53. name of the library changes, then all the packages dynamically linked
  54. to the library need to be recompiled to link against the newer library.
  55. (Note that there is no correlation between the package version and the
  56. name of the library.) For example, consider a package foo-1.2.3 that
  57. installs a shared library with name
  58. <filename class='libraryfile'>libfoo.so.1</filename>. Say you upgrade
  59. the package to a newer version foo-1.2.4 that installs a shared library
  60. with name <filename class='libraryfile'>libfoo.so.2</filename>. In this
  61. case, all packages that are dynamically linked to
  62. <filename class='libraryfile'>libfoo.so.1</filename> need to be
  63. recompiled to link against
  64. <filename class='libraryfile'>libfoo.so.2</filename>. Note that you
  65. should not remove the previous libraries until the dependent packages
  66. are recompiled.</para>
  67. </listitem>
  68. </itemizedlist>
  69. </sect2>
  70. <sect2>
  71. <title>Package Management Techniques</title>
  72. <para>The following are some common package management techniques. Before
  73. making a decision on a package manager, do some research on the various
  74. techniques, particularly the drawbacks of the particular scheme.</para>
  75. <sect3>
  76. <title>It is All in My Head!</title>
  77. <para>Yes, this is a package management technique. Some folks do not find
  78. the need for a package manager because they know the packages intimately
  79. and know what files are installed by each package. Some users also do not
  80. need any package management because they plan on rebuilding the entire
  81. system when a package is changed.</para>
  82. </sect3>
  83. <sect3>
  84. <title>Install in Separate Directories</title>
  85. <para>This is a simplistic package management that does not need any extra
  86. package to manage the installations. Each package is installed in a
  87. separate directory. For example, package foo-1.1 is installed in
  88. <filename class='directory'>/usr/pkg/foo-1.1</filename>
  89. and a symlink is made from <filename>/usr/pkg/foo</filename> to
  90. <filename class='directory'>/usr/pkg/foo-1.1</filename>. When installing
  91. a new version foo-1.2, it is installed in
  92. <filename class='directory'>/usr/pkg/foo-1.2</filename> and the previous
  93. symlink is replaced by a symlink to the new version.</para>
  94. <para>Environment variables such as <envar>PATH</envar>,
  95. <envar>LD_LIBRARY_PATH</envar>, <envar>MANPATH</envar>,
  96. <envar>INFOPATH</envar> and <envar>CPPFLAGS</envar> need to be expanded to
  97. include <filename>/usr/pkg/foo</filename>. For more than a few packages,
  98. this scheme becomes unmanageable.</para>
  99. </sect3>
  100. <sect3>
  101. <title>Symlink Style Package Management</title>
  102. <para>This is a variation of the previous package management technique.
  103. Each package is installed similar to the previous scheme. But instead of
  104. making the symlink, each file is symlinked into the
  105. <filename class='directory'>/usr</filename> hierarchy. This removes the
  106. need to expand the environment variables. Though the symlinks can be
  107. created by the user to automate the creation, many package managers have
  108. been written using this approach. A few of the popular ones include Stow,
  109. Epkg, Graft, and Depot.</para>
  110. <para>The installation needs to be faked, so that the package thinks that
  111. it is installed in <filename class="directory">/usr</filename> though in
  112. reality it is installed in the
  113. <filename class="directory">/usr/pkg</filename> hierarchy. Installing in
  114. this manner is not usually a trivial task. For example, consider that you
  115. are installing a package libfoo-1.1. The following instructions may
  116. not install the package properly:</para>
  117. <screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
  118. make
  119. make install</userinput></screen>
  120. <para>The installation will work, but the dependent packages may not link
  121. to libfoo as you would expect. If you compile a package that links against
  122. libfoo, you may notice that it is linked to
  123. <filename class='libraryfile'>/usr/pkg/libfoo/1.1/lib/libfoo.so.1</filename>
  124. instead of <filename class='libraryfile'>/usr/lib/libfoo.so.1</filename>
  125. as you would expect. The correct approach is to use the
  126. <envar>DESTDIR</envar> strategy to fake installation of the package. This
  127. approach works as follows:</para>
  128. <screen role="nodump"><userinput>./configure --prefix=/usr
  129. make
  130. make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>
  131. <para>Most packages support this approach, but there are some which do not.
  132. For the non-compliant packages, you may either need to manually install the
  133. package, or you may find that it is easier to install some problematic
  134. packages into <filename class='directory'>/opt</filename>.</para>
  135. </sect3>
  136. <sect3>
  137. <title>Timestamp Based</title>
  138. <para>In this technique, a file is timestamped before the installation of
  139. the package. After the installation, a simple use of the
  140. <command>find</command> command with the appropriate options can generate
  141. a log of all the files installed after the timestamp file was created. A
  142. package manager written with this approach is install-log.</para>
  143. <para>Though this scheme has the advantage of being simple, it has two
  144. drawbacks. If, during installation, the files are installed with any
  145. timestamp other than the current time, those files will not be tracked by
  146. the package manager. Also, this scheme can only be used when one package
  147. is installed at a time. The logs are not reliable if two packages are
  148. being installed on two different consoles.</para>
  149. </sect3>
  150. <sect3>
  151. <title>LD_PRELOAD Based</title>
  152. <para>In this approach, a library is preloaded before installation. During
  153. installation, this library tracks the packages that are being installed by
  154. attaching itself to various executables such as <command>cp</command>,
  155. <command>install</command>, <command>mv</command> and tracking the system
  156. calls that modify the filesystem. For this approach to work, all the
  157. executables need to be dynamically linked without the suid or sgid bit.
  158. Preloading the library may cause some unwanted side-effects during
  159. installation. Therefore, it is advised that one performs some tests to
  160. ensure that the package manager does not break anything and logs all the
  161. appropriate files.</para>
  162. </sect3>
  163. <sect3>
  164. <title>Creating Package Archives</title>
  165. <para>In this scheme, the package installation is faked into a separate
  166. tree as described in the Symlink style package management. After the
  167. installation, a package archive is created using the installed files.
  168. This archive is then used to install the package either on the local
  169. machine or can even be used to install the package on other machines.</para>
  170. <para>This approach is used by most of the package managers found in the
  171. commercial distributions. Examples of package managers that follow this
  172. approach are RPM (which, incidentally, is required by the <ulink
  173. url="http://lsbbook.gforge.freestandards.org/package.html#RPM">Linux
  174. Standard Base Specification</ulink>), pkg-utils, Debian's apt, and
  175. Gentoo's Portage system. A hint describing how to adopt this style of
  176. package management for LFS systems is located at <ulink
  177. url="&hints-root;fakeroot.txt"/>.</para>
  178. </sect3>
  179. <sect3>
  180. <title>User Based Management</title>
  181. <para>This scheme, unique to LFS, was devised by Matthias Benkmann, and is
  182. available from the <ulink url="&hints-root;">Hints Project</ulink>. In
  183. this scheme, each package is installed as a separate user into the
  184. standard locations. Files belonging to a package are easily identified by
  185. checking the user ID. The features and shortcomings of this approach are
  186. too complex to describe in this section. For the details please see the
  187. hint at <ulink url="&hints-root;more_control_and_pkg_man.txt"/>.</para>
  188. </sect3>
  189. </sect2>
  190. </sect1>