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 /chapter02 | |
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 'chapter02')
-rw-r--r-- | chapter02/creatingfilesystem.xml | 12 | ||||
-rw-r--r-- | chapter02/mounting.xml | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/chapter02/creatingfilesystem.xml b/chapter02/creatingfilesystem.xml index fcea5457c..1d3a66956 100644 --- a/chapter02/creatingfilesystem.xml +++ b/chapter02/creatingfilesystem.xml @@ -17,7 +17,7 @@ url="&blfs-root;view/svn/postlfs/filesystems.html"/>.</para> <para>To create an ext2 file system on the LFS partition, run the following:</para> -<screen role="nodump"><userinput>mke2fs /dev/<replaceable>[xxx]</replaceable></userinput></screen> +<screen role="nodump"><userinput>mke2fs -v /dev/<replaceable>[xxx]</replaceable></userinput></screen> <para>Replace <replaceable>[xxx]</replaceable> with the name of the LFS partition (<filename class="devicefile">hda5</filename> in our previous example).</para> @@ -38,22 +38,22 @@ stock e2fsprogs package and use the resulting binaries to re-create the filesystem on your LFS partition:</para> <screen role="nodump"><userinput>cd /tmp -tar xjf /path/to/sources/e2fsprogs-&e2fsprogs-version;.tar.bz2 +tar -xjvf /path/to/sources/e2fsprogs-&e2fsprogs-version;.tar.bz2 cd e2fsprogs-&e2fsprogs-version; -mkdir build +mkdir -v build cd build ../configure make #note that we intentionally don't 'make install' here! -./misc/mke2fs /dev/<replaceable>[xxx]</replaceable> +./misc/mke2fs -v /dev/<replaceable>[xxx]</replaceable> cd /tmp -rm -rf e2fsprogs-&e2fsprogs-version;</userinput></screen> +rm -rfv e2fsprogs-&e2fsprogs-version;</userinput></screen> </note> <para>If a swap partition was created, it will need to be initialized for use by issuing the command below. If you are using an existing swap partition, there is no need to format it.</para> -<screen role="nodump"><userinput>mkswap /dev/<replaceable>[yyy]</replaceable></userinput></screen> +<screen role="nodump"><userinput>mkswap -v /dev/<replaceable>[yyy]</replaceable></userinput></screen> <para>Replace <replaceable>[yyy]</replaceable> with the name of the swap partition.</para> diff --git a/chapter02/mounting.xml b/chapter02/mounting.xml index e9ffd2d26..37654087a 100644 --- a/chapter02/mounting.xml +++ b/chapter02/mounting.xml @@ -22,8 +22,8 @@ environment variable by running:</para> <para>Next, create the mount point and mount the LFS file system by running:</para> -<screen role="nodump"><userinput>mkdir -p $LFS -mount /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen> +<screen role="nodump"><userinput>mkdir -pv $LFS +mount -v /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen> <para>Replace <replaceable>[xxx]</replaceable> with the designation of the LFS partition.</para> @@ -32,10 +32,10 @@ partition.</para> class="directory">/</filename> and another for <filename class="directory">/usr</filename>), mount them using:</para> -<screen role="nodump"><userinput>mkdir -p $LFS -mount /dev/<replaceable>[xxx]</replaceable> $LFS -mkdir $LFS/usr -mount /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen> +<screen role="nodump"><userinput>mkdir -pv $LFS +mount -v /dev/<replaceable>[xxx]</replaceable> $LFS +mkdir -v $LFS/usr +mount -v /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen> <para>Replace <replaceable>[xxx]</replaceable> and <replaceable>[yyy]</replaceable> with the appropriate partition |