source: chapter08/pkgmgt.xml@ 55a29cc

12.0 12.0-rc1 12.1 12.1-rc1 multilib renodr/libudev-from-systemd trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/update-glibc
Last change on this file since 55a29cc was 55a29cc, checked in by Xi Ruoyao <xry111@…>, 11 months ago

pkgmgt: Mention the "dependency hell" issue

  • Property mode set to 100644
File size: 18.5 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 LFS Book. A
14 Package Manager tracks the installation of files, making it easier to
15 remove and upgrade packages. A good package manager will also handle the
16 configuration files specially to keep the user configuration when the
17 package is reinstalled or upgraded. Before
18 you begin to wonder, NO&mdash;this section will not talk about nor recommend
19 any particular package manager. What it does provide is a roundup of the more
20 popular techniques and how they work. The perfect package manager for you may
21 be among these techniques, or it may be a combination of two or more of these
22 techniques. This section briefly mentions issues that may arise when upgrading
23 packages.</para>
24
25 <para>Some reasons why no package manager is mentioned in LFS or BLFS
26 include:</para>
27
28 <itemizedlist>
29 <listitem>
30 <para>Dealing with package management takes the focus away from the goals
31 of these books&mdash;teaching how a Linux system is built.</para>
32 </listitem>
33
34 <listitem>
35 <para>There are multiple solutions for package management, each having
36 its strengths and drawbacks. Finding one solution that satisfies all audiences
37 is difficult.</para>
38 </listitem>
39 </itemizedlist>
40
41 <para>There are some hints written on the topic of package management. Visit
42 the <ulink url="&hints-root;">Hints Project</ulink> and see if one of them
43 fits your needs.</para>
44
45 <sect2 id='pkgmgmt-upgrade-issues'>
46 <title>Upgrade Issues</title>
47
48 <para>A Package Manager makes it easy to upgrade to newer versions when they
49 are released. Generally the instructions in the LFS and BLFS books can be
50 used to upgrade to the newer versions. Here are some points that you should
51 be aware of when upgrading packages, especially on a running system.</para>
52
53 <itemizedlist>
54 <listitem>
55 <para>If the Linux kernel needs to be upgraded (for example, from
56 5.10.17 to 5.10.18 or 5.11.1), nothing else needs to be rebuilt.
57 The system will keep working fine thanks to the well-defined interface
58 between the kernel and userspace. Specifically, Linux API headers
59 need not be (and should not be, see the next item) upgraded
60 along with the kernel. You will merely need to reboot your system to use the
61 upgraded kernel.</para>
62 </listitem>
63
64 <listitem>
65 <para>If the Linux API headers or Glibc need to be upgraded to a newer
66 version, (e.g., from Glibc-2.31 to Glibc-2.32), it is safer to
67 rebuild LFS. Though you <emphasis>may</emphasis> be able to rebuild
68 all the packages in their dependency order, we do not recommend
69 it. </para>
70 </listitem>
71
72 <listitem> <para>If a package containing a shared library is updated, and
73 if the name of the library changes, then any packages dynamically
74 linked to the library must be recompiled, to link against the
75 newer library. (Note that there is no correlation between the package
76 version and the name of the library.) For example, consider a package
77 foo-1.2.3 that installs a shared library with the name <filename
78 class='libraryfile'>libfoo.so.1</filename>. Suppose you upgrade the package to
79 a newer version foo-1.2.4 that installs a shared library with the name
80 <filename class='libraryfile'>libfoo.so.2</filename>. In this case, any
81 packages that are dynamically linked to <filename
82 class='libraryfile'>libfoo.so.1</filename> need to be recompiled to link
83 against <filename class='libraryfile'>libfoo.so.2</filename> in order to
84 use the new library version. You should not remove the old
85 libraries until all the dependent packages have been recompiled.</para>
86 </listitem>
87
88 <listitem><para>If a package is (directly or indirectly) linked to
89 both the old and new names of one shared library (for example, the
90 package links to both
91 <filename class='libraryfile'>libfoo.so.2</filename> and
92 <filename class='libraryfile'>libbar.so.1</filename>, while the latter
93 links to
94 <filename class='libraryfile'>libfoo.so.3</filename> in turn), the
95 package may malfunction because the different names of the shared
96 library provide incompatible functions with same symbol names. This
97 can be caused by recompiling some (but not all) packages linked to the
98 old shared library name after the package providing the shared library
99 is upgraded. To avoid the issue, it's recommended to recompile every
100 package linked to a shared library of which the name has been changed
101 during an upgrade as soon as possible, in their dependency order.
102 </para></listitem>
103
104 <listitem> <para>If a package containing a shared library is updated,
105 and the name of the library doesn't change, but the version number of the
106 library <emphasis role="bold">file</emphasis> decreases (for example,
107 the library is still named
108 <filename class='libraryfile'>libfoo.so.1</filename>,
109 but the name of the library file is changed from
110 <filename class='libraryfile'>libfoo.so.1.25</filename> to
111 <filename class='libraryfile'>libfoo.so.1.24</filename>),
112 you should remove the library file from the previously installed version
113 (<filename class='libraryfile'>libfoo.so.1.25</filename> in this case).
114 Otherwise, a <command>ldconfig</command> command (invoked by yourself from the command
115 line, or by the installation of some package) will reset the symlink
116 <filename class='libraryfile'>libfoo.so.1</filename> to point to
117 the old library file because it seems to be a <quote>newer</quote>
118 version; its version number is larger. This situation may arise if
119 you have to downgrade a package, or if the authors change the versioning
120 scheme for library files.</para> </listitem>
121
122 <listitem><para>If a package containing a shared library is updated,
123 and the name of the library doesn't change, but a severe issue
124 (especially, a security vulnerability) is fixed, all running programs
125 linked to the shared library should be restarted. The following
126 command, run as <systemitem class="username">root</systemitem> after
127 the update is complete, will list which processes are using the old versions of those libraries
128 (replace <replaceable>libfoo</replaceable> with the name of the
129 library):</para>
130
131<screen role="nodump"><userinput>grep -l -e '<replaceable>libfoo</replaceable>.*deleted' /proc/*/maps |
132 tr -cd 0-9\\n | xargs -r ps u</userinput></screen>
133
134 <para>
135 If <application>OpenSSH</application> is being used to access
136 the system and it is linked to the updated library, you must
137 restart the <command>sshd</command> service, then logout, login again,
138 and rerun the preceding ps command to confirm that nothing is still using the
139 deleted libraries.
140 </para>
141
142 <para revision='systemd'>
143 If the <command>systemd</command> daemon (running as PID 1) is
144 linked to the updated library, you can restart it without rebooting
145 by running <command>systemctl daemon-reexec</command> as the
146 <systemitem class='username'>root</systemitem> user.
147 </para></listitem>
148
149 <listitem>
150 <para>If an executable program or a shared library is overwritten, the processes
151 using the code or data in that program or library may crash. The
152 correct way to update a program or a shared library without causing
153 the process to crash is to remove it first, then install the new
154 version. The <command>install</command> command
155 provided by <application>coreutils</application> has already
156 implemented this, and most packages use that command to install binary files and
157 libraries. This means that you won't be troubled by this issue most of the time.
158 However, the install process of some packages (notably Mozilla JS
159 in BLFS) just overwrites the file if it exists; this causes a crash. So
160 it's safer to save your work and close unneeded running processes
161 before updating a package.</para> <!-- binary is an adjective, not a noun. -->
162 </listitem>
163 </itemizedlist>
164
165 </sect2>
166
167 <sect2>
168 <title>Package Management Techniques</title>
169
170 <para>The following are some common package management techniques. Before
171 making a decision on a package manager, do some research on the various
172 techniques, particularly the drawbacks of each particular scheme.</para>
173
174 <sect3>
175 <title>It is All in My Head!</title>
176
177 <para>Yes, this is a package management technique. Some folks do not
178 need a package manager because they know the packages intimately
179 and know which files are installed by each package. Some users also do not
180 need any package management because they plan on rebuilding the entire
181 system whenever a package is changed.</para>
182
183 </sect3>
184
185 <sect3>
186 <title>Install in Separate Directories</title>
187
188 <para>This is a simplistic package management technique that does not need a
189 special program to manage the packages. Each package is installed in a
190 separate directory. For example, package foo-1.1 is installed in
191 <filename class='directory'>/usr/pkg/foo-1.1</filename>
192 and a symlink is made from <filename>/usr/pkg/foo</filename> to
193 <filename class='directory'>/usr/pkg/foo-1.1</filename>. When
194 a new version foo-1.2 comes along, it is installed in
195 <filename class='directory'>/usr/pkg/foo-1.2</filename> and the previous
196 symlink is replaced by a symlink to the new version.</para>
197
198 <para>Environment variables such as <envar>PATH</envar>,
199 <envar>LD_LIBRARY_PATH</envar>, <envar>MANPATH</envar>,
200 <envar>INFOPATH</envar> and <envar>CPPFLAGS</envar> need to be expanded to
201 include <filename>/usr/pkg/foo</filename>. If you install more than a few packages,
202 this scheme becomes unmanageable.</para>
203
204 </sect3>
205
206 <sect3>
207 <title>Symlink Style Package Management</title>
208
209 <para>This is a variation of the previous package management technique.
210 Each package is installed as in the previous scheme. But instead of
211 making the symlink via a generic package name, each file is symlinked into the
212 <filename class='directory'>/usr</filename> hierarchy. This removes the
213 need to expand the environment variables. Though the symlinks can be
214 created by the user, many package managers use this approach, and
215 automate the creation of the symlinks. A few of the popular ones include Stow,
216 Epkg, Graft, and Depot.</para>
217
218 <para>The installation script needs to be fooled, so the package thinks
219 it is installed in <filename class="directory">/usr</filename> though in
220 reality it is installed in the
221 <filename class="directory">/usr/pkg</filename> hierarchy. Installing in
222 this manner is not usually a trivial task. For example, suppose you
223 are installing a package libfoo-1.1. The following instructions may
224 not install the package properly:</para>
225
226<screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
227make
228make install</userinput></screen>
229
230 <para>The installation will work, but the dependent packages may not link
231 to libfoo as you would expect. If you compile a package that links against
232 libfoo, you may notice that it is linked to
233 <filename class='libraryfile'>/usr/pkg/libfoo/1.1/lib/libfoo.so.1</filename>
234 instead of <filename class='libraryfile'>/usr/lib/libfoo.so.1</filename>
235 as you would expect. The correct approach is to use the
236 <envar>DESTDIR</envar> variable to direct the installation. This
237 approach works as follows:</para>
238
239<screen role="nodump"><userinput>./configure --prefix=/usr
240make
241make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>
242
243 <para>Most packages support this approach, but there are some which do not.
244 For the non-compliant packages, you may either need to install the
245 package manually, or you may find that it is easier to install some problematic
246 packages into <filename class='directory'>/opt</filename>.</para>
247
248 </sect3>
249
250 <sect3>
251 <title>Timestamp Based</title>
252
253 <para>In this technique, a file is timestamped before the installation of
254 the package. After the installation, a simple use of the
255 <command>find</command> command with the appropriate options can generate
256 a log of all the files installed after the timestamp file was created. A
257 package manager that uses this approach is install-log.</para>
258
259 <para>Though this scheme has the advantage of being simple, it has two
260 drawbacks. If, during installation, the files are installed with any
261 timestamp other than the current time, those files will not be tracked by
262 the package manager. Also, this scheme can only be used when packages
263 are installed one at a time. The logs are not reliable if two packages are
264 installed simultaneously from two different consoles.</para>
265
266 </sect3>
267
268 <sect3>
269 <title>Tracing Installation Scripts</title>
270
271 <para>In this approach, the commands that the installation scripts perform
272 are recorded. There are two techniques that one can use:</para>
273
274 <para>The <envar>LD_PRELOAD</envar> environment variable can be set to
275 point to a library to be preloaded before installation. During
276 installation, this library tracks the packages that are being installed by
277 attaching itself to various executables such as <command>cp</command>,
278 <command>install</command>, <command>mv</command> and tracking the system
279 calls that modify the filesystem. For this approach to work, all the
280 executables need to be dynamically linked without the suid or sgid bit.
281 Preloading the library may cause some unwanted side-effects during
282 installation. Therefore, it's a good idea to perform some tests to
283 ensure that the package manager does not break anything, and that it logs all the
284 appropriate files.</para>
285
286 <para>Another technique is to use <command>strace</command>, which
287 logs all the system calls made during the execution of the installation
288 scripts.</para>
289 </sect3>
290
291 <sect3>
292 <title>Creating Package Archives</title>
293
294 <para>In this scheme, the package installation is faked into a separate
295 tree as previously described in the symlink style package management section. After the
296 installation, a package archive is created using the installed files.
297 This archive is then used to install the package on the local
298 machine or even on other machines.</para>
299
300 <para>This approach is used by most of the package managers found in the
301 commercial distributions. Examples of package managers that follow this
302 approach are RPM (which, incidentally, is required by the <ulink
303 url="https://refspecs.linuxfoundation.org/lsb.shtml">Linux
304 Standard Base Specification</ulink>), pkg-utils, Debian's apt, and
305 Gentoo's Portage system. A hint describing how to adopt this style of
306 package management for LFS systems is located at <ulink
307 url="&hints-root;fakeroot.txt"/>.</para>
308
309 <para>The creation of package files that include dependency information is
310 complex, and beyond the scope of LFS.</para>
311
312 <para>Slackware uses a <command>tar</command>-based system for package
313 archives. This system purposely does not handle package dependencies
314 as more complex package managers do. For details of Slackware package
315 management, see <ulink
316 url="https://www.slackbook.org/html/package-management.html"/>.</para>
317 </sect3>
318
319 <sect3>
320 <title>User Based Management</title>
321
322 <para>This scheme, unique to LFS, was devised by Matthias Benkmann, and is
323 available from the <ulink url="&hints-root;">Hints Project</ulink>. In
324 this scheme, each package is installed as a separate user into the
325 standard locations. Files belonging to a package are easily identified by
326 checking the user ID. The features and shortcomings of this approach are
327 too complex to describe in this section. For the details please see the
328 hint at <ulink url="&hints-root;more_control_and_pkg_man.txt"/>.</para>
329
330 </sect3>
331
332 </sect2>
333
334 <sect2>
335 <title>Deploying LFS on Multiple Systems</title>
336
337 <para>One of the advantages of an LFS system is that there are no files that
338 depend on the position of files on a disk system. Cloning an LFS build to
339 another computer with the same architecture as the base system is as
340 simple as using <command>tar</command> on the LFS partition that contains
341 the root directory (about 900MB uncompressed for a basic LFS build), copying
342 <!-- D. Bryant created LFS 11.2 in October 2022; 900MB is (roughly) the size of his rsync archive. -->
343 that file via network transfer or CD-ROM / USB stick to the new system, and expanding
344 it. After that, a few configuration files will have to be changed.
345 Configuration files that may need to be updated include:
346 <filename>/etc/hosts</filename>,
347 <filename>/etc/fstab</filename>,
348 <filename>/etc/passwd</filename>,
349 <filename>/etc/group</filename>,
350 <phrase revision="systemd">
351 <filename>/etc/shadow</filename>, and
352 <filename>/etc/ld.so.conf</filename>.
353 </phrase>
354 <phrase revision="sysv">
355 <filename>/etc/shadow</filename>,
356 <filename>/etc/ld.so.conf</filename>,
357 <filename>/etc/sysconfig/rc.site</filename>,
358 <filename>/etc/sysconfig/network</filename>, and
359 <filename>/etc/sysconfig/ifconfig.eth0</filename>.
360 </phrase>
361 </para>
362
363 <para>A custom kernel may be needed for the new system, depending on
364 differences in system hardware and the original kernel
365 configuration.</para>
366
367 <note><para>There have been some reports of issues when copying between
368 similar but not identical architectures. For instance, the instruction set
369 for an Intel system is not identical with the AMD processor's instructions, and later
370 versions of some processors may provide instructions that are unavailable with
371 earlier versions.</para></note>
372
373 <para>Finally, the new system has to be made bootable via <xref
374 linkend="ch-bootable-grub"/>.</para>
375
376 </sect2>
377
378</sect1>
Note: See TracBrowser for help on using the repository browser.