pkgmgt.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/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. As well as the binary and library files, a
  13. package manager will handle the installation of configuration files. Before
  14. you begin to wonder, NO&mdash;this section will not talk about nor recommend
  15. any particular package manager. What it provides is a roundup of the more
  16. popular techniques and how they work. The perfect package manager for you may
  17. be among these techniques or may be a combination of two or more of these
  18. techniques. This section briefly mentions issues that may arise when upgrading
  19. packages.</para>
  20. <para>Some reasons why no package manager is mentioned in LFS or BLFS
  21. include:</para>
  22. <itemizedlist>
  23. <listitem>
  24. <para>Dealing with package management takes the focus away from the goals
  25. of these books&mdash;teaching how a Linux system is built.</para>
  26. </listitem>
  27. <listitem>
  28. <para>There are multiple solutions for package management, each having
  29. its strengths and drawbacks. Including one that satisfies all audiences
  30. is difficult.</para>
  31. </listitem>
  32. </itemizedlist>
  33. <para>There are some hints written on the topic of package management. Visit
  34. the <ulink url="&hints-root;">Hints Project</ulink> and see if one of them
  35. fits your need.</para>
  36. <sect2>
  37. <title>Upgrade Issues</title>
  38. <para>A Package Manager makes it easy to upgrade to newer versions when they
  39. are released. Generally the instructions in the LFS and BLFS books can be
  40. used to upgrade to the newer versions. Here are some points that you should
  41. be aware of when upgrading packages, especially on a running system.</para>
  42. <itemizedlist>
  43. <listitem>
  44. <para>If Glibc needs to be upgraded to a newer version, (e.g. from
  45. glibc-2.31 to glibc-2.32), it is safer to rebuild LFS. Though you
  46. <emphasis>may</emphasis> be able to rebuild all the packages in their
  47. dependency order, we do not recommend it. </para>
  48. </listitem>
  49. <listitem> <para>If a package containing a shared library is updated, and
  50. if the name of the library changes, then any the packages dynamically
  51. linked to the library need to be recompiled in order to link against the
  52. newer library. (Note that there is no correlation between the package
  53. version and the name of the library.) For example, consider a package
  54. foo-1.2.3 that installs a shared library with name <filename
  55. class='libraryfile'>libfoo.so.1</filename>. If you upgrade the package to
  56. a newer version foo-1.2.4 that installs a shared library with name
  57. <filename class='libraryfile'>libfoo.so.2</filename>. In this case, any
  58. packages that are dynamically linked to <filename
  59. class='libraryfile'>libfoo.so.1</filename> need to be recompiled to link
  60. against <filename class='libraryfile'>libfoo.so.2</filename> in order to
  61. use the new library version. You should not remove the previous
  62. libraries unless all the dependent packages are recompiled.</para>
  63. </listitem> </itemizedlist>
  64. </sect2>
  65. <sect2>
  66. <title>Package Management Techniques</title>
  67. <para>The following are some common package management techniques. Before
  68. making a decision on a package manager, do some research on the various
  69. techniques, particularly the drawbacks of the particular scheme.</para>
  70. <sect3>
  71. <title>It is All in My Head!</title>
  72. <para>Yes, this is a package management technique. Some folks do not find
  73. the need for a package manager because they know the packages intimately
  74. and know what files are installed by each package. Some users also do not
  75. need any package management because they plan on rebuilding the entire
  76. system when a package is changed.</para>
  77. </sect3>
  78. <sect3>
  79. <title>Install in Separate Directories</title>
  80. <para>This is a simplistic package management that does not need any extra
  81. package to manage the installations. Each package is installed in a
  82. separate directory. For example, package foo-1.1 is installed in
  83. <filename class='directory'>/usr/pkg/foo-1.1</filename>
  84. and a symlink is made from <filename>/usr/pkg/foo</filename> to
  85. <filename class='directory'>/usr/pkg/foo-1.1</filename>. When installing
  86. a new version foo-1.2, it is installed in
  87. <filename class='directory'>/usr/pkg/foo-1.2</filename> and the previous
  88. symlink is replaced by a symlink to the new version.</para>
  89. <para>Environment variables such as <envar>PATH</envar>,
  90. <envar>LD_LIBRARY_PATH</envar>, <envar>MANPATH</envar>,
  91. <envar>INFOPATH</envar> and <envar>CPPFLAGS</envar> need to be expanded to
  92. include <filename>/usr/pkg/foo</filename>. For more than a few packages,
  93. this scheme becomes unmanageable.</para>
  94. </sect3>
  95. <sect3>
  96. <title>Symlink Style Package Management</title>
  97. <para>This is a variation of the previous package management technique.
  98. Each package is installed similar to the previous scheme. But instead of
  99. making the symlink, each file is symlinked into the
  100. <filename class='directory'>/usr</filename> hierarchy. This removes the
  101. need to expand the environment variables. Though the symlinks can be
  102. created by the user to automate the creation, many package managers have
  103. been written using this approach. A few of the popular ones include Stow,
  104. Epkg, Graft, and Depot.</para>
  105. <para>The installation needs to be faked, so that the package thinks that
  106. it is installed in <filename class="directory">/usr</filename> though in
  107. reality it is installed in the
  108. <filename class="directory">/usr/pkg</filename> hierarchy. Installing in
  109. this manner is not usually a trivial task. For example, consider that you
  110. are installing a package libfoo-1.1. The following instructions may
  111. not install the package properly:</para>
  112. <screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
  113. make
  114. make install</userinput></screen>
  115. <para>The installation will work, but the dependent packages may not link
  116. to libfoo as you would expect. If you compile a package that links against
  117. libfoo, you may notice that it is linked to
  118. <filename class='libraryfile'>/usr/pkg/libfoo/1.1/lib/libfoo.so.1</filename>
  119. instead of <filename class='libraryfile'>/usr/lib/libfoo.so.1</filename>
  120. as you would expect. The correct approach is to use the
  121. <envar>DESTDIR</envar> strategy to fake installation of the package. This
  122. approach works as follows:</para>
  123. <screen role="nodump"><userinput>./configure --prefix=/usr
  124. make
  125. make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>
  126. <para>Most packages support this approach, but there are some which do not.
  127. For the non-compliant packages, you may either need to manually install the
  128. package, or you may find that it is easier to install some problematic
  129. packages into <filename class='directory'>/opt</filename>.</para>
  130. </sect3>
  131. <sect3>
  132. <title>Timestamp Based</title>
  133. <para>In this technique, a file is timestamped before the installation of
  134. the package. After the installation, a simple use of the
  135. <command>find</command> command with the appropriate options can generate
  136. a log of all the files installed after the timestamp file was created. A
  137. package manager written with this approach is install-log.</para>
  138. <para>Though this scheme has the advantage of being simple, it has two
  139. drawbacks. If, during installation, the files are installed with any
  140. timestamp other than the current time, those files will not be tracked by
  141. the package manager. Also, this scheme can only be used when one package
  142. is installed at a time. The logs are not reliable if two packages are
  143. being installed on two different consoles.</para>
  144. </sect3>
  145. <sect3>
  146. <title>Tracing Installation Scripts</title>
  147. <para>In this approach, the commands that the installation scripts perform
  148. are recorded. There are two techniques that one can use:</para>
  149. <para>The <envar>LD_PRELOAD</envar> environment variable can be set to
  150. point to a library to be preloaded before installation. During
  151. installation, this library tracks the packages that are being installed by
  152. attaching itself to various executables such as <command>cp</command>,
  153. <command>install</command>, <command>mv</command> and tracking the system
  154. calls that modify the filesystem. For this approach to work, all the
  155. executables need to be dynamically linked without the suid or sgid bit.
  156. Preloading the library may cause some unwanted side-effects during
  157. installation. Therefore, it is advised that one performs some tests to
  158. ensure that the package manager does not break anything and logs all the
  159. appropriate files.</para>
  160. <para>The second technique is to use <command>strace</command>, which
  161. logs all system calls made during the execution of the installation
  162. scripts.</para>
  163. </sect3>
  164. <sect3>
  165. <title>Creating Package Archives</title>
  166. <para>In this scheme, the package installation is faked into a separate
  167. tree as described in the Symlink style package management. After the
  168. installation, a package archive is created using the installed files.
  169. This archive is then used to install the package either on the local
  170. machine or can even be used to install the package on other machines.</para>
  171. <para>This approach is used by most of the package managers found in the
  172. commercial distributions. Examples of package managers that follow this
  173. approach are RPM (which, incidentally, is required by the <ulink
  174. url="http://refspecs.linuxfoundation.org/lsb.shtml">Linux
  175. Standard Base Specification</ulink>), pkg-utils, Debian's apt, and
  176. Gentoo's Portage system. A hint describing how to adopt this style of
  177. package management for LFS systems is located at <ulink
  178. url="&hints-root;fakeroot.txt"/>.</para>
  179. <para>Creation of package files that include dependency information is
  180. complex and is beyond the scope of LFS.</para>
  181. <para>Slackware uses a <command>tar</command> based system for package
  182. archives. This system purposely does not handle package dependencies
  183. as more complex package managers do. For details of Slackware package
  184. management, see <ulink
  185. url="http://www.slackbook.org/html/package-management.html"/>.</para>
  186. </sect3>
  187. <sect3>
  188. <title>User Based Management</title>
  189. <para>This scheme, unique to LFS, was devised by Matthias Benkmann, and is
  190. available from the <ulink url="&hints-root;">Hints Project</ulink>. In
  191. this scheme, each package is installed as a separate user into the
  192. standard locations. Files belonging to a package are easily identified by
  193. checking the user ID. The features and shortcomings of this approach are
  194. too complex to describe in this section. For the details please see the
  195. hint at <ulink url="&hints-root;more_control_and_pkg_man.txt"/>.</para>
  196. </sect3>
  197. </sect2>
  198. <sect2>
  199. <title>Deploying LFS on Multiple Systems</title>
  200. <para>One of the advantages of an LFS system is that there are no files that
  201. depend on the position of files on a disk system. Cloning an LFS build to
  202. another computer with the same architecture as the base system is as
  203. simple as using <command>tar</command> on the LFS partition that contains
  204. the root directory (about 250MB uncompressed for a base LFS build), copying
  205. that file via network transfer or CD-ROM to the new system and expanding
  206. it. From that point, a few configuration files will have to be changed.
  207. Configuration files that may need to be updated include:
  208. <filename>/etc/hosts</filename>,
  209. <filename>/etc/fstab</filename>,
  210. <filename>/etc/passwd</filename>,
  211. <filename>/etc/group</filename>,
  212. <phrase revision="systemd">
  213. <filename>/etc/shadow</filename>, and
  214. <filename>/etc/ld.so.conf</filename>.
  215. </phrase>
  216. <phrase revision="sysv">
  217. <filename>/etc/shadow</filename>,
  218. <filename>/etc/ld.so.conf</filename>,
  219. <filename>/etc/sysconfig/rc.site</filename>,
  220. <filename>/etc/sysconfig/network</filename>, and
  221. <filename>/etc/sysconfig/ifconfig.eth0</filename>.
  222. </phrase>
  223. </para>
  224. <para>A custom kernel may need to be built for the new system depending on
  225. differences in system hardware and the original kernel
  226. configuration.</para>
  227. <note><para>There have been some reports of issues when copying between
  228. similar but not identical architectures. For instance, the instruction set
  229. for an Intel system is not identical with an AMD processor and later
  230. versions of some processors may have instructions that are unavailable in
  231. earlier versions.</para></note>
  232. <para>Finally the new system has to be made bootable via <xref
  233. linkend="ch-bootable-grub"/>.</para>
  234. </sect2>
  235. </sect1>