diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2005-09-29 20:55:40 +0000 |
commit | 59988921ebad528d4b2ea1a78be81f5feee490d5 (patch) | |
tree | b66eb3c3de1bbad64774418afb69989e18641765 /chapter04/creatingtoolsdir.xml | |
parent | 8c68addc8e21ceaec084545ee0ed6c983d054232 (diff) |
Add -v to commands that accept it
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter04/creatingtoolsdir.xml')
-rw-r--r-- | chapter04/creatingtoolsdir.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter04/creatingtoolsdir.xml b/chapter04/creatingtoolsdir.xml index 15d1cbe4b..bed68fb17 100644 --- a/chapter04/creatingtoolsdir.xml +++ b/chapter04/creatingtoolsdir.xml @@ -21,14 +21,14 @@ linkend="chapter-temporary-tools"/>).</para> <para>Create the required directory by running the following as <emphasis>root</emphasis>:</para> -<screen><userinput>mkdir $LFS/tools</userinput></screen> +<screen><userinput>mkdir -v $LFS/tools</userinput></screen> <para>The next step is to create a <filename class="symlink">/tools</filename> symlink on the host system. This will point to the newly-created directory on the LFS partition. Run this command as <emphasis>root</emphasis> as well:</para> -<screen><userinput>ln -s $LFS/tools /</userinput></screen> +<screen><userinput>ln -sv $LFS/tools /</userinput></screen> <note><para>The above command is correct. The <command>ln</command> command has a few syntactic variations, so be sure to check <command>info coreutils ln</command> and |