diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2006-08-03 19:29:29 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2006-08-03 19:29:29 +0000 |
commit | c226182dc5ff37f733c895ab16483ebd37c02bcc (patch) | |
tree | 82a9abff83df5aa35fec4fd1539091cfb7920ef2 /chapter02 | |
parent | a15464dfe656aec48ced77b2ded760f0cc639ad7 (diff) |
Ported updates from 6.2 branch.
Small tags fixes.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7758 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter02')
-rw-r--r-- | chapter02/creatingfilesystem.xml | 8 | ||||
-rw-r--r-- | chapter02/mounting.xml | 9 |
2 files changed, 14 insertions, 3 deletions
diff --git a/chapter02/creatingfilesystem.xml b/chapter02/creatingfilesystem.xml index b960019f6..7dbfb49ff 100644 --- a/chapter02/creatingfilesystem.xml +++ b/chapter02/creatingfilesystem.xml @@ -41,9 +41,11 @@ <screen role="nodump"><userinput>debugfs -R feature /dev/<replaceable><xxx></replaceable></userinput></screen> - <para>If the output contains features other than: <option>dir_index</option>; - <option>filetype</option>; <option>large_file</option>; - <option>resize_inode</option> or <option>sparse_super</option> then your host + <para>If the output contains features other than + <option>has_joural</option>, <option>dir_index</option>, + <option>filetype</option>, <option>large_file</option>, + <option>resize_inode</option>, <option>sparse_super</option> or + <option>needs_recovery</option>, then your host system may have custom enhancements. In that case, to avoid later problems, you should compile the stock E2fsprogs package and use the resulting binaries to re-create the filesystem on your LFS partition:</para> diff --git a/chapter02/mounting.xml b/chapter02/mounting.xml index 3572e1861..4a26ae930 100644 --- a/chapter02/mounting.xml +++ b/chapter02/mounting.xml @@ -52,6 +52,15 @@ mount -v -t ext3 /dev/<replaceable><yyy></replaceable> $LFS/usr</userinput <option>noatime</option> are set, the partition will need to be remounted.</para> + <para>If you are using a <systemitem + class="filesystem">swap</systemitem> partition, ensure that it is enabled + using the <command>swapon</command> command:</para> + +<screen role="nodump"><userinput>/sbin/swapon -v /dev/<replaceable><zzz></replaceable></userinput></screen> + + <para>Replace <replaceable><zzz></replaceable> with the name of the + <systemitem class="filesystem">swap</systemitem> partition.</para> + <para>Now that there is an established place to work, it is time to download the packages.</para> |