source: chapter08/revisedchroot.xml@ 716db1f

multilib
Last change on this file since 716db1f was 716db1f, checked in by Thomas Trepl (Moody) <thomas@…>, 3 years ago

Merge upstream

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[673b0d8]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" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[3f3931b0]7
[673b0d8]8<sect1 id="ch-system-revisedchroot">
[3f3931b0]9 <?dbhtml filename="revisedchroot.html"?>
10
11 <title>Cleaning Up</title>
[673b0d8]12
[7557ca6]13 <para>Finally, clean up some extra files left around from running tests:</para>
14
[cb23c1a]15<screen><userinput>rm -rf /tmp/*</userinput></screen>
[7557ca6]16
[658dcab]17 <para>Now log out and reenter the chroot environment with an updated
[d672ab7]18 chroot command. From now on, use this updated chroot command any time
[658dcab]19 you need to reenter the chroot environment after exiting:</para>
[673b0d8]20
[658dcab]21<screen role="nodump"><userinput>logout
22
23chroot "$LFS" /usr/bin/env -i \
[55e25a9]24 HOME=/root TERM="$TERM" \
25 PS1='(lfs chroot) \u:\w\$ ' \
[d7a9421]26 PATH=/usr/bin:/usr/sbin \
[673b0d8]27 /bin/bash --login</userinput></screen>
28
[6dfcfecc]29 <para>Here the <parameter>+h</parameter> option is not used anymore, since
30 all the previous programs have been replaced: hashing is therefore
31 possible.</para>
[81fd230]32
[4dea006]33 <para>If the virtual kernel file systems have been unmounted, either manually
34 or through a reboot, ensure that the virtual kernel file systems are mounted
35 when reentering the chroot. This process was explained in <xref
[6dfcfecc]36 linkend="ch-tools-bindmount"/> and <xref
37 linkend="ch-tools-kernfsmount"/>.</para>
[ec6f5f3]38
[5cc2395]39 <para>There are also several files installed in the /usr/lib and /usr/libexec
[d7e0db5]40 directories with a file name extension of .la. These are "libtool archive"
[e37764e]41 files. As already said, they are only useful when linking with static
42 libraries. They are unneeded, and potentially harmful, when using dynamic
43 shared libraries, specially when using also non-autotools build systems.
44 To remove them, run:</para>
[92c9489]45
[6dfcfecc]46<screen><userinput>find /usr/lib /usr/libexec -name \*.la -delete</userinput><userinput arch="ml_32,ml_all">
[0ebda11]47find /usr/lib32 -name \*.la -delete</userinput><userinput arch="ml_x32,ml_all">
48find /usr/libx32 -name \*.la -delete</userinput></screen>
[92c9489]49
[64a2cd5]50 <para>For more information about libtool archive files, see the <ulink
[92c9489]51 url="&blfs-book;/introduction/la-files.html">BLFS section "About Libtool
[64a2cd5]52 Archive (.la) files"</ulink>.</para>
[92c9489]53
[51b58ad]54 <para>The compiler built in <xref linkend="chapter-temporary-tools"/> and
55 <xref linkend="chapter-chroot-temporary-tools"/> is still partially
[d7e0db5]56 installed and not needed anymore. Remove it with:</para>
[51b58ad]57
58<screen><userinput>find /usr -depth -name $(uname -m)-lfs-linux-gnu\* | xargs rm -rf</userinput></screen>
59
[d672ab7]60 <para>Finally, remove the temporary 'tester' user account created at the
[6dfcfecc]61 beginning of the previous chapter.</para>
[8d4f212]62
[6dfcfecc]63<screen><userinput>userdel -r tester</userinput></screen>
[673b0d8]64</sect1>
Note: See TracBrowser for help on using the repository browser.