source: chapter08/cleanup.xml@ 2590473

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

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 1.8 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 around from running tests:</para>
14
15<screen><userinput>rm -rf /tmp/*</userinput></screen>
16
17 <para>There are also several files installed in the /usr/lib and /usr/libexec
18 directories with a file name extension of .la. These are "libtool archive"
19 files. As already said, they are only useful when linking with static
20 libraries. They are unneeded, and potentially harmful, when using dynamic
21 shared libraries, specially when using also non-autotools build systems.
22 To remove them, run:</para>
23
24<screen><userinput>find /usr/lib /usr/libexec -name \*.la -delete</userinput><userinput arch="ml_32,ml_all">
25find /usr/lib32 -name \*.la -delete</userinput><userinput arch="ml_x32,ml_all">
26find /usr/libx32 -name \*.la -delete</userinput></screen>
27
28 <para>For more information about libtool archive files, see the <ulink
29 url="&blfs-book;introduction/la-files.html">BLFS section "About Libtool
30 Archive (.la) files"</ulink>.</para>
31
32 <para>The compiler built in <xref linkend="chapter-temporary-tools"/> and
33 <xref linkend="chapter-chroot-temporary-tools"/> is still partially
34 installed and not needed anymore. Remove it with:</para>
35
36<screen><userinput>find /usr -depth -name $(uname -m)-lfs-linux-gnu\* | xargs rm -rf</userinput></screen>
37
38 <para>Finally, remove the temporary 'tester' user account created at the
39 beginning of the previous chapter.</para>
40
41<screen><userinput>userdel -r tester</userinput></screen>
42</sect1>
Note: See TracBrowser for help on using the repository browser.