diff --git a/chapter06/glibc-pass2-inst.xml b/chapter06/glibc-pass2-inst.xml
index 876430117..92e9a282f 100644
--- a/chapter06/glibc-pass2-inst.xml
+++ b/chapter06/glibc-pass2-inst.xml
@@ -1,3 +1,5 @@
+
+
Installation of Glibc
@@ -36,17 +38,36 @@ been warned.
Basically, compiling Glibc in any other way than the book suggests
is putting your system at very high risk.
-Install Glibc by running the following commands:
+It is recommended by the Glibc installation documentation to build
+Glibc outside of the source tree. Create the build directory:
mkdir ../glibc-build &&
-cd ../glibc-build &&
-../glibc-&glibc-version;/configure --prefix=/usr --disable-profile \
- --enable-add-ons --libexecdir=/usr/bin &&
-make &&
-make install &&
-make -C ../glibc-&glibc-version;/linuxthreads/man &&
-make -C ../glibc-&glibc-version;/linuxthreads/man install &&
-exec /bin/bash --login
+cd ../glibc-build
+
+Next, prepare Glibc to be compiled:
+
+../glibc-&glibc-version;/configure --prefix=/usr --disable-profile \
+ --enable-add-ons --libexecdir=/usr/bin
+
+Continue with compiling the package:
+
+make
+
+Begin package installation:
+
+make install
+
+Build the linuxthreads man pages:
+
+make -C ../glibc-&glibc-version;/linuxthreads/man
+
+Install the man pages:
+
+make -C ../glibc-&glibc-version;/linuxthreads/man install
+
+Complete package installation by relaunching bash:
+
+exec /bin/bash --login
diff --git a/chapter06/glibc-pass2.xml b/chapter06/glibc-pass2.xml
index e9826c957..9f06080b5 100644
--- a/chapter06/glibc-pass2.xml
+++ b/chapter06/glibc-pass2.xml
@@ -5,6 +5,8 @@
Estimated build time: &glibc-pass2-time;
Estimated required disk space: &glibc-pass2-compsize;
+&aa-glibc-shortdesc;
+&aa-glibc-dep;
&c6-glibc-pass2-inst;