source: chapter07/cleanup.xml@ f3b2f16

multilib
Last change on this file since f3b2f16 was c093e6b, checked in by Thomas Trepl (Moody) <thomas@…>, 23 months ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 7.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-tools-cleanup">
9 <?dbhtml filename="cleanup.html"?>
10
11 <title>Cleaning up and Saving the Temporary System</title>
12
13 <sect2>
14 <title>Cleaning</title>
15
16 <para>First, remove the currently installed documentation to prevent them
17 from ending up in the final system, and to save about 35 MB:</para>
18
19<screen><userinput>rm -rf /usr/share/{info,man,doc}/*</userinput></screen>
20
21 <para>Second, on a modern Linux system, the libtool .la files are only
22 useful for libltdl. No libraries in LFS are expected to be loaded by
23 libltdl, and it's known that some .la files can cause BLFS packages
24 fail to build. Remove those files now:</para>
25
26<screen><userinput>find /usr/{lib,libexec} -name \*.la -delete</userinput><userinput arch="ml_32">
27find /usr/lib32 -name \*.la -delete</userinput><userinput arch="ml_x32">
28find /usr/libx32 -name \*.la -delete</userinput><userinput arch="ml_all">
29find /usr/lib{,x}32 -name \*.la -delete</userinput></screen>
30
31 <para>
32 The current system size is now about 3 GB, however
33 the /tools directory is no longer needed. It uses about
34 1 GB of disk space. Delete it now:
35 </para>
36
37<screen><userinput>rm -rf /tools</userinput></screen>
38 </sect2>
39
40 <sect2>
41 <title>Backup</title>
42
43 <para>
44 At this point the essential programs and libraries have been created
45 and your current LFS system is in a good state. Your system can now be
46 backed up for later reuse. In case of fatal failures in the subsequent
47 chapters, it often turns out that removing everything and starting over
48 (more carefully) is the best option to recover. Unfortunately, all the
49 temporary files will be removed, too. To avoid spending extra time to
50 redo something which has been built successfully, creating a backup of
51 the current LFS system may prove useful.
52 </para>
53
54 <note><para>
55 All the remaining steps in this section are optional. Nevertheless,
56 as soon as you begin installing packages in <xref
57 linkend="chapter-building-system"/>, the temporary files will be
58 overwritten. So it may be a good idea to do a backup of the current
59 system as described below.
60 </para></note>
61
62 <para>
63 The following steps are performed from outside the chroot
64 environment. That means, you have to leave the chroot environment
65 first before continuing. The reason for that is to
66 get access to file system locations outside of the chroot
67 environment to store/read the backup archive which should
68 not be placed within the
69 <filename class="directory">$LFS</filename> hierarchy for
70 safety reasons.
71 </para>
72
73 <para>
74 If you have decided to make a backup, leave the chroot environment:
75 </para>
76
77<screen role="nodump"><userinput>exit</userinput></screen>
78
79 <important>
80 <para>
81 All of the following instructions are executed by
82 <systemitem class="username">root</systemitem> on your host system.
83 Take extra care about the commands you're going to run as mistakes
84 here can modify your host system. Be aware that the
85 environment variable <envar>LFS</envar>
86 is set for user <systemitem class="username">lfs</systemitem> by default
87 but may <emphasis>not</emphasis> be set for
88 <systemitem class="username">root</systemitem>.
89 </para>
90 <para>
91 Whenever commands are to be executed by <systemitem class="username">root</systemitem>,
92 make sure you have set <envar>LFS</envar>.
93 </para>
94 <para>
95 This has been discussed in <xref linkend='ch-partitioning-aboutlfs'/>.
96 </para>
97 </important>
98
99 <para>Before making a backup, unmount the virtual file systems:</para>
100
101<screen role="nodump"><userinput>mountpoint -q $LFS/dev/shm &amp;&amp; umount $LFS/dev/shm
102umount $LFS/dev/pts
103umount $LFS/{sys,proc,run,dev}</userinput></screen>
104
105 <para>
106 Make sure you have at least 1 GB free disk space (the source tarballs
107 will be included in the backup archive) on the filesystem containing
108 directory where you create the backup archive.
109 </para>
110
111 <para>
112 Note that the instructions below specify the home directory of the host
113 system's <systemitem class="username">root</systemitem> user, which is
114 typically found on the root filesystem.
115 </para>
116
117 <para>
118 Replace <envar>$HOME</envar> by a directory of your choice if you
119 do not want to have the backup stored in <systemitem
120 class="username">root</systemitem>'s home directory.
121 </para>
122
123 <para>
124 Create the backup archive by running the following command:
125 </para>
126
127 <note>
128 <para>
129 Because the backup archive is compressed, it takes a relatively
130 long time (over 10 minutes) even on a reasonably fast system.
131 </para>
132 </note>
133
134<screen role="nodump"><userinput>cd $LFS
135tar -cJpf $HOME/lfs-temp-tools-&version;.tar.xz .</userinput></screen>
136
137 <note>
138 <para>
139 If continuing to chapter 8, don't forget to reenter the chroot
140 environment as explained in the <quote>Important</quote> box below.
141 </para>
142 </note>
143
144 </sect2>
145
146 <sect2>
147 <title>Restore</title>
148
149 <para>
150 In case some mistakes have been made and you need to start over, you can
151 use this backup to restore the system and save some recovery time.
152 Since the sources are located under
153 <filename class="directory">$LFS</filename>, they are included in the
154 backup archive as well, so they do not need to be downloaded again. After
155 checking that <envar>$LFS</envar> is set properly,
156 restore the backup by executing the following commands:
157 </para>
158
159<!-- Make the following look different so users don't blindly run the
160 restore when they don't need to. -->
161
162 <warning><para>The following commands are extremely dangerous. If
163 you run <command>rm -rf ./*</command> as the &root; user and you
164 do not change to the $LFS directory or the <envar>LFS</envar>
165 environment variable is not set for the &root; user, it will destroy
166 your entire host system. YOU ARE WARNED.</para></warning>
167
168<screen role="nodump"><computeroutput>cd $LFS
169rm -rf ./*
170tar -xpf $HOME/lfs-temp-tools-&version;.tar.xz</computeroutput></screen>
171
172 <para>
173 Again, double check that the environment has been setup properly
174 and continue building the rest of the system.
175 </para>
176
177 <important>
178 <para>
179 If you left the chroot environment to create a backup or restart
180 building using a restore, remember to check that the virtual
181 filesystems are still mounted (<command>findmnt | grep
182 $LFS</command>). If they are not mounted, remount them now as
183 described in <xref linkend='ch-tools-kernfs'/> and re-enter the chroot
184 environment (see <xref linkend='ch-tools-chroot'/>) before continuing.
185 </para>
186 </important>
187
188 </sect2>
189
190</sect1>
Note: See TracBrowser for help on using the repository browser.