source: chapter08/pkgmgt.xml@ 7aee318

11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 7aee318 was 7aee318, checked in by Xi Ruoyao <xry111@…>, 3 years ago

pkg management: add a note about kernel upgrade

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