From 59988921ebad528d4b2ea1a78be81f5feee490d5 Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Thu, 29 Sep 2005 20:55:40 +0000 Subject: Add -v to commands that accept it git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6913 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter02/creatingfilesystem.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'chapter02/creatingfilesystem.xml') 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"/>. To create an ext2 file system on the LFS partition, run the following: -mke2fs /dev/[xxx] +mke2fs -v /dev/[xxx] Replace [xxx] with the name of the LFS partition (hda5 in our previous example). @@ -38,22 +38,22 @@ stock e2fsprogs package and use the resulting binaries to re-create the filesystem on your LFS partition: 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/[xxx] +./misc/mke2fs -v /dev/[xxx] cd /tmp -rm -rf e2fsprogs-&e2fsprogs-version; +rm -rfv e2fsprogs-&e2fsprogs-version; 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. -mkswap /dev/[yyy] +mkswap -v /dev/[yyy] Replace [yyy] with the name of the swap partition. -- cgit v1.2.3-54-g00ecf