aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorAlex Gronenwoud <alex@linuxfromscratch.org>2004-01-31 15:07:36 +0000
committerAlex Gronenwoud <alex@linuxfromscratch.org>2004-01-31 15:07:36 +0000
commitab3b93b727dde7de9c0aea893f62e88cb0ee1c13 (patch)
treef3f9ca3c8e0f8aa24a00e7b45619f14eb1423196 /chapter06
parent90afe40d900c2c055750a4761e29b54009a7f6a7 (diff)
Writing 'file system' as two words everywhere.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3198 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/chapter06.xml2
-rw-r--r--chapter06/e2fsprogs.xml2
-rw-r--r--chapter06/grub.xml2
-rw-r--r--chapter06/makedev.xml4
-rw-r--r--chapter06/mountproc.xml4
-rw-r--r--chapter06/psmisc.xml2
-rw-r--r--chapter06/utillinux.xml2
7 files changed, 9 insertions, 9 deletions
diff --git a/chapter06/chapter06.xml b/chapter06/chapter06.xml
index 070d200d4..6364740be 100644
--- a/chapter06/chapter06.xml
+++ b/chapter06/chapter06.xml
@@ -110,7 +110,7 @@ is switched off by passing the <userinput>+h</userinput> option to
in the following chapters are run from within the chroot environment.
If you ever leave this environment for any reason (rebooting for example),
you must remember to again enter chroot and mount the proc and devpts
-filesystems (discussed later) before continuing with the installations.</para>
+file systems (discussed later) before continuing with the installations.</para>
<para>Note that the bash prompt will say "I have no name!" This is
normal, as the <filename>/etc/passwd</filename> file has not been
diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml
index b778001b3..d55d51ae7 100644
--- a/chapter06/e2fsprogs.xml
+++ b/chapter06/e2fsprogs.xml
@@ -3,7 +3,7 @@
<?dbhtml filename="e2fsprogs.html" dir="chapter06"?>
<para>The E2fsprogs package contains the utilities for handling the ext2
-filesystem. It also supports the ext3 journaling filesystem.</para>
+file system. It also supports the ext3 journaling file system.</para>
<screen>&buildtime; &e2fsprogs-time;
&diskspace; &e2fsprogs-compsize;</screen>
diff --git a/chapter06/grub.xml b/chapter06/grub.xml
index c2f018e55..a9b53ae1b 100644
--- a/chapter06/grub.xml
+++ b/chapter06/grub.xml
@@ -44,7 +44,7 @@ directory is appropriate for your hardware.</para>
<para>The <filename class="directory">i386-pc</filename> directory also
contains a number of <filename>*stage1_5</filename> files, different ones
-for different filesystems. Have a look at the ones available and copy the
+for different file systems. Have a look at the ones available and copy the
appropriate ones to the <filename class="directory">/boot/grub</filename>
directory. Most people will copy the <filename>e2fs_stage1_5</filename>
and/or <filename>reiserfs_stage1_5</filename> files.</para>
diff --git a/chapter06/makedev.xml b/chapter06/makedev.xml
index 98ee0bd6c..d98a59241 100644
--- a/chapter06/makedev.xml
+++ b/chapter06/makedev.xml
@@ -53,7 +53,7 @@ information.</para>
<filename class="directory">/dev</filename> directory. This way it is always
available for making extra device nodes.</para>
-<para>Additionally, if you were unable to mount the devpts filesystem earlier
+<para>Additionally, if you were unable to mount the devpts file system earlier
in <xref linkend="ch-system-proc"/>, now is the time to try the alternatives. If
your kernel supports the devfs file system, run the following command to mount
devfs:</para>
@@ -63,7 +63,7 @@ devfs:</para>
<para>This will mount the devfs file system over the top of the new static
<filename>/dev</filename> structure. This poses no problems, as the device nodes
created are still present, they are just hidden by the new devfs
-filesystem.</para>
+file system.</para>
<para>If this still doesn't work, the only option left is to use the MAKEDEV
script to create the ptyXX and ttyXX range of files that would otherwise not be
diff --git a/chapter06/mountproc.xml b/chapter06/mountproc.xml
index 7b0bb98e0..c0626b7f4 100644
--- a/chapter06/mountproc.xml
+++ b/chapter06/mountproc.xml
@@ -10,7 +10,7 @@ file systems are already mounted on your host system -- especially so because
they are virtual file systems.</para>
<para>The <emphasis>proc</emphasis> file system is the process information
-pseudo-filesystem that the kernel uses to provide status information about the
+pseudo file system through which the kernel provides information about the
status of the system.</para>
<para>The proc file system is mounted on
@@ -54,7 +54,7 @@ environment. We'll cover this shortly in the aforementioned
<xref linkend="ch-system-MAKEDEV"/> section.</para>
<para>Remember, if for any reason you stop working on your LFS, and start again
-later, it's important to check that these filesystems are still mounted inside
+later, it's important to check that these file systems are still mounted inside
the chroot environment, otherwise problems are likely to occur.</para>
</sect1>
diff --git a/chapter06/psmisc.xml b/chapter06/psmisc.xml
index a3183938f..3cde75179 100644
--- a/chapter06/psmisc.xml
+++ b/chapter06/psmisc.xml
@@ -27,7 +27,7 @@ processes.</para>
binaries to be installed in <filename>/bin</filename> and not in
<filename>/usr/bin</filename>. As the Psmisc programs are often used in
bootscripts, they should be available also when the <filename>/usr</filename>
-filesystem isn't mounted.</para></listitem>
+file system isn't mounted.</para></listitem>
</itemizedlist>
<para>Compile the package:</para>
diff --git a/chapter06/utillinux.xml b/chapter06/utillinux.xml
index b5a318421..f167cfb80 100644
--- a/chapter06/utillinux.xml
+++ b/chapter06/utillinux.xml
@@ -3,7 +3,7 @@
<?dbhtml filename="util-linux.html" dir="chapter06"?>
<para>The Util-linux package contains miscellaneous utility programs. Among
-them are utilities for handling filesystems, consoles, partitions, and
+them are utilities for handling file systems, consoles, partitions, and
messages.</para>
<screen>&buildtime; &util-linux-time;