Changeset e727ee5 for chapter02


Ignore:
Timestamp:
10/19/2005 09:06:01 PM (19 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
6.1.1
Children:
1d09f12
Parents:
8ac07b8d
Message:

Added -v switches.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/6.1.1/BOOK@7059 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter02
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter02/creatingfilesystem.xml

    r8ac07b8d re727ee5  
    1919<para>To create an ext2 file system on the LFS partition, run the following:</para>
    2020
    21 <screen role="nodump"><userinput>mke2fs /dev/<replaceable>[xxx]</replaceable></userinput></screen>
     21<screen role="nodump"><userinput>mke2fs -v /dev/<replaceable>[xxx]</replaceable></userinput></screen>
    2222
    2323<para>Replace <replaceable>[xxx]</replaceable> with the name of the LFS
     
    4040
    4141<screen role="nodump"><userinput>cd /tmp
    42 tar xjf /path/to/sources/e2fsprogs-&e2fsprogs-version;.tar.bz2
     42tar -xjvf /path/to/sources/e2fsprogs-&e2fsprogs-version;.tar.bz2
    4343cd e2fsprogs-&e2fsprogs-version;
    44 mkdir build
     44mkdir -v build
    4545cd build
    4646../configure
    4747make #note that we intentionally don't 'make install' here!
    48 ./misc/mke2fs /dev/<replaceable>[xxx]</replaceable>
     48./misc/mke2fs -v /dev/<replaceable>[xxx]</replaceable>
    4949cd /tmp
    50 rm -rf e2fsprogs-&e2fsprogs-version;</userinput></screen>
     50rm -rfv e2fsprogs-&e2fsprogs-version;</userinput></screen>
    5151</note>
    5252
     
    5555no need to format it.</para>
    5656
    57 <screen role="nodump"><userinput>mkswap /dev/<replaceable>[yyy]</replaceable></userinput></screen>
     57<screen role="nodump"><userinput>mkswap -v /dev/<replaceable>[yyy]</replaceable></userinput></screen>
    5858
    5959<para>Replace <replaceable>[yyy]</replaceable> with the name of the swap
  • chapter02/mounting.xml

    r8ac07b8d re727ee5  
    2323running:</para>
    2424
    25 <screen role="nodump"><userinput>mkdir -p $LFS
    26 mount /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen>
     25<screen role="nodump"><userinput>mkdir -pv $LFS
     26mount -v /dev/<replaceable>[xxx]</replaceable> $LFS</userinput></screen>
    2727
    2828<para>Replace <replaceable>[xxx]</replaceable> with the designation of the LFS
     
    3333class="directory">/usr</filename>), mount them using:</para>
    3434
    35 <screen role="nodump"><userinput>mkdir -p $LFS
    36 mount /dev/<replaceable>[xxx]</replaceable> $LFS
    37 mkdir $LFS/usr
    38 mount /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen>
     35<screen role="nodump"><userinput>mkdir -pv $LFS
     36mount -v /dev/<replaceable>[xxx]</replaceable> $LFS
     37mkdir -v $LFS/usr
     38mount -v /dev/<replaceable>[yyy]</replaceable> $LFS/usr</userinput></screen>
    3939
    4040<para>Replace <replaceable>[xxx]</replaceable> and
Note: See TracChangeset for help on using the changeset viewer.