diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-08 21:54:14 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-08 21:54:14 +0000 |
commit | 44c2fd8fabfe36ee9f8464a04e4f2db42d956ab0 (patch) | |
tree | f0b7999af8b8df672ef8b32eead12396e7e11022 /chapter06/mtablink.xml | |
parent | cb33ea82fe0338e3854a50bb252cbdc818679b36 (diff) |
Applied Alex\'s grammar patch
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2082 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06/mtablink.xml')
-rw-r--r-- | chapter06/mtablink.xml | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/chapter06/mtablink.xml b/chapter06/mtablink.xml index a573bd62b..e40e9bc10 100644 --- a/chapter06/mtablink.xml +++ b/chapter06/mtablink.xml @@ -1,24 +1,25 @@ <sect1 id="ch06-mtablink"> -<title>Creating the /etc/mtab symlink</title> +<title>Creating the mtab symlink</title> <?dbhtml filename="mtablink.html" dir="chapter06"?> <para>The next thing to do is to create a symlink pointing from -/etc/mtab to /proc/mounts. This is done using the following -command:</para> +<filename>/etc/mtab</filename> to <filename>/proc/mounts</filename>. +This is done using the following command:</para> <para><screen><userinput>ln -s /proc/mounts /etc/mtab</userinput></screen></para> -<para>Creating this symlink avoids problems which can occur if / is -mounted read-only and the information in /etc/mtab is stale (i.e. out of -date). By creating the symlink to /proc/mounts, we ensure that -/etc/mtab will always be up-to-date.</para> +<para>Creating this symlink avoids problems which can occur if +<filename class="directory">/</filename> is mounted read-only and the +information in <filename>/etc/mtab</filename> is stale (i.e. out of date). +By creating the symlink to <filename>/proc/mounts</filename>, we ensure that +the information on currently mounted devices is always up-to-date.</para> -<para>Note that using this symlink requires that you have /proc -filesystem support compiled into your kernel. This is included by -default and should not be removed unless you <emphasis>really</emphasis> -know what you are doing as many more things than just the /etc/mtab -symlink depend on /proc being present. In summary, make sure you have -/proc filesystem support in your kernel.</para> +<para>Note that using this symlink requires that you have support for the +proc filesystem compiled into your kernel. This support is included by +default, and should not be removed unless you <emphasis>really</emphasis> +know what you are doing, as some more things besides the +<filename>/etc/mtab</filename> symlink depend on proc being present. +In short, make sure you have proc filesystem support in your kernel.</para> </sect1> |