source: clfs-embedded/BOOK/cleanup/remove-files.xml @ 2a0b49e

Last change on this file since 2a0b49e was 2a0b49e, checked in by Andrew Bradford <bradfa@…>, 13 years ago

Slight rewording and grammar cleanup of remove-files.xml

  • Property mode set to 100644
File size: 1.1 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-cleanup-remove-files">
9  <?dbhtml filename="remove-files.html"?>
10
11  <title>Remove Unnecessary Files</title>
12
13  <para>The system is almost finished.  It can be made smaller by removing
14  files that are not necessary.</para>
15
16  <para>Create a copy of the file system in case changes need to be made
17  to it later:</para>
18
19<screen><userinput>install -dv ${CLFS}-final
20cp -arv ${CLFS}/* ${CLFS}-final/</userinput></screen>
21
22  <para>Remove files that aren't needed:</para>
23
24<screen><userinput>rm -rfv ${CLFS}-final/cross-tools
25rm -rfv ${CLFS}-final/usr/src/*
26rm -rfv ${CLFS}-final/usr/include
27rm -rfv ${CLFS}-final/usr/man
28rm -rfv ${CLFS}-final/usr/share/man</userinput></screen>
29
30  <para>Remove the static libaries:</para>
31
32<screen><userinput>FILES="$(ls ${CLFS}-final/lib/*.a ${CLFS}-final/usr/lib/*.a)"
33for file in $FILES; do
34 rm -fv $file
35done</userinput></screen>
36
37</sect1>
Note: See TracBrowser for help on using the repository browser.