diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-10-19 21:06:01 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2005-10-19 21:06:01 +0000 |
commit | e727ee5f339e291ae20b54ecd2f14297f450414e (patch) | |
tree | d77e0a137f6bbd8cc8358f9e67bd1ac822ff8502 /chapter04 | |
parent | 8ac07b8d1b06db8fd6abc7db5480248a317acf3a (diff) |
Added -v switches.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.1.1/BOOK@7059 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter04')
-rw-r--r-- | chapter04/addinguser.xml | 4 | ||||
-rw-r--r-- | chapter04/creatingtoolsdir.xml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chapter04/addinguser.xml b/chapter04/addinguser.xml index bd096936b..7cb703824 100644 --- a/chapter04/addinguser.xml +++ b/chapter04/addinguser.xml @@ -68,12 +68,12 @@ password), give <emphasis>lfs</emphasis> a password:</para> <filename class="directory">$LFS/tools</filename> by making <emphasis>lfs</emphasis> the directory owner:</para> -<screen><userinput>chown lfs $LFS/tools</userinput></screen> +<screen><userinput>chown -v lfs $LFS/tools</userinput></screen> <para>If a separate working directory was created as suggested, give user <emphasis>lfs</emphasis> ownership of this directory:</para> -<screen><userinput>chown lfs $LFS/sources</userinput></screen> +<screen><userinput>chown -v lfs $LFS/sources</userinput></screen> <para>Next, login as user <emphasis>lfs</emphasis>. This can be done via a virtual console, through a display manager, or with the 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 |