pkgmgt.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. <note>
  35. <para>As no particular package management technique is mentioned in LFS,
  36. the commands in the remainder of this book must be performed while logged in
  37. as user <systemitem class="username">root</systemitem> and no longer as user
  38. <systemitem class="username">lfs</systemitem>. Also, double check that
  39. <envar>$LFS</envar> is set.</para>
  40. </note>
  41. <sect2>
  42. <title>Upgrade Issues</title>
  43. <para>A Package Manager makes it easy to upgrade to newer versions when they
  44. are released. Generally the instructions in the LFS and BLFS Book can be
  45. used to upgrade to the newer versions. Here are some points that you should
  46. be aware of when upgrading packages, especially on a running system.</para>
  47. <itemizedlist>
  48. <listitem>
  49. <para>If one of the toolchain packages (Glibc, GCC or Binutils) needs
  50. to be upgraded to a newer minor version, it is safer to rebuild LFS.
  51. Though you <emphasis>may</emphasis> be able to get by rebuilding all
  52. the packages in their dependency order, we do not recommend it. For
  53. example, if glibc-2.2.x needs to be updated to glibc-2.3.x, it is safer
  54. to rebuild. For micro version updates, a simple reinstallation usually
  55. works, but is not guaranteed. For example, upgrading from glibc-2.3.4
  56. to glibc-2.3.5 will not usually cause any problems.</para>
  57. </listitem>
  58. <listitem>
  59. <para>If a package containing a shared library is updated, and if the
  60. name of the library changes, then all the packages dynamically linked
  61. to the library need to be recompiled to link against the newer library.
  62. (Note that there is no correlation between the package version and the
  63. name of the library.) For example, consider a package foo-1.2.3 that
  64. installs a shared library with name
  65. <filename class='libraryfile'>libfoo.so.1</filename>. Say you upgrade
  66. the package to a newer version foo-1.2.4 that installs a shared library
  67. with name <filename class='libraryfile'>libfoo.so.2</filename>. In this
  68. case, all packages that are dynamically linked to
  69. <filename class='libraryfile'>libfoo.so.1</filename> need to be
  70. recompiled to link against
  71. <filename class='libraryfile'>libfoo.so.2</filename>. Note that you
  72. should not remove the previous libraries until the dependent packages
  73. are recompiled.</para>
  74. </listitem>
  75. <listitem>
  76. <para>If you are upgrading a running system, be on the lookout for
  77. packages that use <command>cp</command> instead of
  78. <command>install</command> to install files. The latter command is
  79. usually safer if the executable or library is already loaded in memory.
  80. </para>
  81. </listitem>
  82. </itemizedlist>
  83. </sect2>
  84. <sect2>
  85. <title>Package Management Techniques</title>
  86. <para>The following are some common package management techniques. Before
  87. making a decision on a package manager, do some research on the various
  88. techniques, particularly the drawbacks of the particular scheme.</para>
  89. <sect3>
  90. <title>It is All in My Head!</title>
  91. <para>Yes, this is a package management technique. Some folks do not find
  92. the need for a package manager because they know the packages intimately
  93. and know what files are installed by each package. Some users also do not
  94. need any package management because they plan on rebuilding the entire
  95. system when a package is changed.</para>
  96. </sect3>
  97. <sect3>
  98. <title>Install in Separate Directories</title>
  99. <para>This is a simplistic package management that does not need any extra
  100. package to manage the installations. Each package is installed in a
  101. separate directory. For example, package foo-1.1 is installed in
  102. <filename class='directory'>/usr/pkg/foo-1.1</filename>
  103. and a symlink is made from <filename>/usr/pkg/foo</filename> to
  104. <filename class='directory'>/usr/pkg/foo-1.1</filename>. When installing
  105. a new version foo-1.2, it is installed in
  106. <filename class='directory'>/usr/pkg/foo-1.2</filename> and the previous
  107. symlink is replaced by a symlink to the new version.</para>
  108. <para>Environment variables such as <envar>PATH</envar>,
  109. <envar>LD_LIBRARY_PATH</envar>, <envar>MANPATH</envar>,
  110. <envar>INFOPATH</envar> and <envar>CPPFLAGS</envar> need to be expanded to
  111. include <filename>/usr/pkg/foo</filename>. For more than a few packages,
  112. this scheme becomes unmanageable.</para>
  113. </sect3>
  114. <sect3>
  115. <title>Symlink Style Package Management</title>
  116. <para>This is a variation of the previous package management technique.
  117. Each package is installed similar to the previous scheme. But instead of
  118. making the symlink, each file is symlinked into the
  119. <filename class='directory'>/usr</filename> hierarchy. This removes the
  120. need to expand the environment variables. Though the symlinks can be
  121. created by the user to automate the creation, many package managers have
  122. been written using this approach. A few of the popular ones include Stow,
  123. Epkg, Graft, and Depot.</para>
  124. <para>The installation needs to be faked, so that the package thinks that
  125. it is installed in <filename class="directory">/usr</filename> though in
  126. reality it is installed in the
  127. <filename class="directory">/usr/pkg</filename> hierarchy. Installing in
  128. this manner is not usually a trivial task. For example, consider that you
  129. are installing a package libfoo-1.1. The following instructions may
  130. not install the package properly:</para>
  131. <screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
  132. make
  133. make install</userinput></screen>
  134. <para>The installation will work, but the dependent packages may not link
  135. to libfoo as you would expect. If you compile a package that links against
  136. libfoo, you may notice that it is linked to
  137. <filename class='libraryfile'>/usr/pkg/libfoo/1.1/lib/libfoo.so.1</filename>
  138. instead of <filename class='libraryfile'>/usr/lib/libfoo.so.1</filename>
  139. as you would expect. The correct approach is to use the
  140. <envar>DESTDIR</envar> strategy to fake installation of the package. This
  141. approach works as follows:</para>
  142. <screen role="nodump"><userinput>./configure --prefix=/usr
  143. make
  144. make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>
  145. <para>Most packages support this approach, but there are some which do not.
  146. For the non-compliant packages, you may either need to manually install the
  147. package, or you may find that it is easier to install some problematic
  148. packages into <filename class='directory'>/opt</filename>.</para>
  149. </sect3>
  150. <sect3>
  151. <title>Timestamp Based</title>
  152. <para>In this technique, a file is timestamped before the installation of
  153. the package. After the installation, a simple use of the
  154. <command>find</command> command with the appropriate options can generate
  155. a log of all the files installed after the timestamp file was created. A
  156. package manager written with this approach is install-log.</para>
  157. <para>Though this scheme has the advantage of being simple, it has two
  158. drawbacks. If, during installation, the files are installed with any
  159. timestamp other than the current time, those files will not be tracked by
  160. the package manager. Also, this scheme can only be used when one package
  161. is installed at a time. The logs are not reliable if two packages are
  162. being installed on two different consoles.</para>
  163. </sect3>
  164. <sect3>
  165. <title>LD_PRELOAD Based</title>
  166. <para>In this approach, a library is preloaded before installation. During
  167. installation, this library tracks the packages that are being installed by
  168. attaching itself to various executables such as <command>cp</command>,
  169. <command>install</command>, <command>mv</command> and tracking the system
  170. calls that modify the filesystem. For this approach to work, all the
  171. executables need to be dynamically linked without the suid or sgid bit.
  172. Preloading the library may cause some unwanted side-effects during
  173. installation. Therefore, it is advised that one performs some tests to
  174. ensure that the package manager does not break anything and logs all the
  175. appropriate files.</para>
  176. </sect3>
  177. <sect3>
  178. <title>Creating Package Archives</title>
  179. <para>In this scheme, the package installation is faked into a separate
  180. tree as described in the Symlink style package management. After the
  181. installation, a package archive is created using the installed files.
  182. This archive is then used to install the package either on the local
  183. machine or can even be used to install the package on other machines.</para>
  184. <para>This approach is used by most of the package managers found in the
  185. commercial distributions. Examples of package managers that follow this
  186. approach are RPM (which, incidentally, is required by the <ulink
  187. url="http://lsbbook.gforge.freestandards.org/package.html#RPM">Linux
  188. Standard Base Specification</ulink>), pkg-utils, Debian's apt, and
  189. Gentoo's Portage system. A hint describing how to adopt this style of
  190. package management for LFS systems is located at <ulink
  191. url="&hints-root;/fakeroot.txt"/>.</para>
  192. </sect3>
  193. <sect3>
  194. <title>User Based Management</title>
  195. <para>This scheme, unique to LFS, was devised by Matthias Benkmann, and is
  196. available from the <ulink url="&hints-root;">Hints Project</ulink>. In
  197. this scheme, each package is installed as a separate user into the
  198. standard locations. Files belonging to a package are easily identified by
  199. checking the user ID. The features and shortcomings of this approach are
  200. too complex to describe in this section. For the details please see the
  201. hint at <ulink url="&hints-root;/more_control_and_pkg_man.txt"/>.</para>
  202. </sect3>
  203. </sect2>
  204. </sect1>