source: chapter06/revisedchroot.xml@ 55e25a9

10.0 10.0-rc1 10.1 10.1-rc1 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 8.2 8.3 8.4 9.0 9.1 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 55e25a9 was 55e25a9, checked in by Bruce Dubbs <bdubbs@…>, 7 years ago

Update to bash-4.4.12.
Update to meson-0.43.0.
Update to python3-3.6.3.
Update to linux-4.13.7.
Update to binutils-2.29.1.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11309 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.3 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-revisedchroot">
9 <?dbhtml filename="revisedchroot.html"?>
10
11 <title>Cleaning Up</title>
12
13 <para>Finally, clean up some extra files left around from running tests:</para>
14
15<screen><userinput>rm -rf /tmp/*</userinput></screen>
16
17 <para>From now on, when reentering the chroot environment after
18 exiting, use the following modified chroot command:</para>
19
20<screen role="nodump"><userinput>chroot "$LFS" /usr/bin/env -i \
21 HOME=/root TERM="$TERM" \
22 PS1='(lfs chroot) \u:\w\$ ' \
23 PATH=/bin:/usr/bin:/sbin:/usr/sbin \
24 /bin/bash --login</userinput></screen>
25
26 <para>The reason for this is that the programs in <filename
27 class="directory">/tools</filename> are no longer needed. Since they are no
28 longer needed you can delete the <filename class="directory">/tools</filename>
29 directory if so desired.</para>
30
31 <note>
32 <para>Removing <filename class="directory">/tools</filename> will also
33 remove the temporary copies of Tcl, Expect, and DejaGNU which were used
34 for running the toolchain tests. If you need these programs later on,
35 they will need to be recompiled and re-installed. The BLFS book has
36 instructions for this (see <ulink url="&blfs-root;"/>).</para>
37 </note>
38
39 <para>If the virtual kernel file systems have been unmounted, either manually
40 or through a reboot, ensure that the virtual kernel file systems are mounted
41 when reentering the chroot. This process was explained in <xref
42 linkend="ch-system-bindmount"/> and <xref
43 linkend="ch-system-kernfsmount"/>.</para>
44
45 <para>Finally, there were several static libraries that were not suppressed earlier
46 in the chapter in order to satisfy the regression tests in several packages. These
47 libraries are from binutils, bzip2, e2fsprogs, flex, libtool, and zlib. If desired,
48 remove them now:</para>
49
50<screen><userinput>rm -f /usr/lib/lib{bfd,opcodes}.a
51rm -f /usr/lib/libbz2.a
52rm -f /usr/lib/lib{com_err,e2p,ext2fs,ss}.a
53rm -f /usr/lib/libltdl.a
54rm -f /usr/lib/libfl.a
55rm -f /usr/lib/libfl_pic.a
56rm -f /usr/lib/libz.a</userinput></screen>
57
58</sect1>
Note: See TracBrowser for help on using the repository browser.