source: chapter08/cleanup.xml@ a2434bd4

multilib
Last change on this file since a2434bd4 was 47c0603, checked in by Thomas Trepl <thomas@…>, 18 months ago

Automatic merge of trunk into multilib

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