source: chapter08/cleanup.xml@ 358ed3c

11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 bdubbs/gcc13 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 358ed3c was 0785a5e, checked in by David Bryant <david@…>, 18 months ago

Remove redundant verbiage; improve English idiom.

  • Property mode set to 100644
File size: 1.6 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-cleanup">
9 <?dbhtml filename="cleanup.html"?>
10
11 <title>Cleaning Up</title>
12
13 <para>Finally, clean up some extra files left over from running tests:</para>
14
15<screen><userinput>rm -rf /tmp/*</userinput></screen>
16
17 <para>There are also several files in the /usr/lib and /usr/libexec
18 directories with a file name extension of .la. These are "libtool archive"
19 files. On a modern Linux system the libtool .la files are
20 only useful for libltdl. No libraries in LFS are expected to be loaded
21 by libltdl, and it's known that some .la files can break BLFS package
22 builds. Remove those files now:</para>
23
24<screen><userinput>find /usr/lib /usr/libexec -name \*.la -delete</userinput></screen>
25
26 <para>For more information about libtool archive files, see the <ulink
27 url="&blfs-book;introduction/la-files.html">BLFS section "About Libtool
28 Archive (.la) files"</ulink>.</para>
29
30 <para>The compiler built in <xref linkend="chapter-temporary-tools"/> and
31 <xref linkend="chapter-chroot-temporary-tools"/> is still partially
32 installed and not needed anymore. Remove it with:</para>
33
34<screen><userinput>find /usr -depth -name $(uname -m)-lfs-linux-gnu\* | xargs rm -rf</userinput></screen>
35
36 <para>Finally, remove the temporary 'tester' user account created at the
37 beginning of the previous chapter.</para>
38
39<screen><userinput>userdel -r tester</userinput></screen>
40</sect1>
Note: See TracBrowser for help on using the repository browser.