source: BOOK/final-system/common/pkgmgt.xml @ 49678f8

systemd
Last change on this file since 49678f8 was 7cd7f99, checked in by Chris Staub <chris@…>, 8 years ago

Put one configure option per line

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