source: chapter06/revisedchroot.xml@ 68c0a30

Last change on this file since 68c0a30 was 68c0a30, checked in by Douglas R. Reno <renodr@…>, 8 years ago

Added DJ Lucas to the list of authors.
Updated dependencies for Gawk. Merged from trunk r11036
Updated to linux-4.4.4. Merged from trunk r11034
Updated to mpfr-3.1.4. Merged from trunk r11034.
Updated to pkg-config-0.29.1. Merged from trunk r11034.
Updated to tcl-core-8.6.5. Merged from trunk r11034.
Removed pcprofiledump and libpcprofile.so from the installed files list on the Glibc page. Merged from trunk r11034.
Added the creation of /var/log/faillog. Merged from trunk r11034.
Removed the --disable-profile and --enable-obsolete-rpc options from glibc. Merged from trunk r11034.
Cleaned up patches file.
Cleaned up whatsnew file.
Cleaned up changelog of former changes.
Merged various spelling changes from r11030 and r11031.
Disable static libraries in texinfo and document installation of XSParagraph.so. Merged from trunk r11032.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd@11041 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" PS1='\u:\w\$ ' \
22 PATH=/bin:/usr/bin:/sbin:/usr/sbin \
23 /bin/bash --login</userinput></screen>
24
25 <para>The reason for this is that the programs in <filename
26 class="directory">/tools</filename> are no longer needed. Since they are no
27 longer needed you can delete the <filename class="directory">/tools</filename>
28 directory if so desired.</para>
29
30 <note>
31 <para>Removing <filename class="directory">/tools</filename> will also
32 remove the temporary copies of Tcl, Expect, and DejaGNU which were used
33 for running the toolchain tests. If you need these programs later on,
34 they will need to be recompiled and re-installed. The BLFS book has
35 instructions for this (see <ulink url="&blfs-root;"/>).</para>
36 </note>
37
38 <para>If the virtual kernel file systems have been unmounted, either manually
39 or through a reboot, ensure that the virtual kernel file systems are mounted
40 when reentering the chroot. This process was explained in <xref
41 linkend="ch-system-bindmount"/> and <xref
42 linkend="ch-system-kernfsmount"/>.</para>
43
44 <para>Finally, there were several static libraries that were not suppressed earlier
45 in the chapter in order to satisfy the regression tests in several packages. These
46 libraries are from binutils, bzip2, e2fsprogs, flex, libtool, and zlib. If desired,
47 remove them now:</para>
48
49<screen><userinput>rm -f /usr/lib/lib{bfd,opcodes}.a
50rm -f /usr/lib/libbz2.a
51rm -f /usr/lib/lib{com_err,e2p,ext2fs,ss}.a
52rm -f /usr/lib/libltdl.a
53rm -f /usr/lib/libfl.a
54rm -f /usr/lib/libfl_pic.a
55rm -f /usr/lib/libz.a</userinput></screen>
56
57</sect1>
Note: See TracBrowser for help on using the repository browser.