diff --git a/chapter06/utillinux-exp.xml b/chapter06/utillinux-exp.xml
index f394a265f..93986ef89 100644
--- a/chapter06/utillinux-exp.xml
+++ b/chapter06/utillinux-exp.xml
@@ -6,10 +6,5 @@
it already was installed by Glibc.
-
-/var/lib/hwclock/adjtime: The adjtime file is placed in
-/var/lib/hwclock as dictates the Filesystem Hierarchy Standard (FHS).
-
-
diff --git a/chapter06/utillinux-inst.xml b/chapter06/utillinux-inst.xml
index 905380146..247058eec 100644
--- a/chapter06/utillinux-inst.xml
+++ b/chapter06/utillinux-inst.xml
@@ -1,3 +1,22 @@
+
+FHS compliance notes
+
+
+The FHS recommends that we use /var/lib/hwclock as the location of the adjtime
+file, instead of the usual /etc. To make hwclock, which is part of the
+util-linux package, FHS-compliant, run the following prior to compiling:
+
+
+
+ sed "s|etc/adjtime\"\$|var/lib/hwclock/adjtime\"|" \
+
+ hwclock/hwclock.c > hwclock~
+ &&
+ mv hwclock~ hwclock/hwclock.c &&
+ mkdir /var/lib/hwclock
+
+
+
Installation of Util-Linux
@@ -10,15 +29,9 @@ Install Util-Linux by running the following commands:
MCONFIG > MCONFIG~
&&
mv MCONFIG~ MCONFIG &&
- sed "s|etc/adjtime\"\$|var/lib/hwclock/adjtime\"|" \
-
- hwclock/hwclock.c > hwclock~
- &&
- mv hwclock~ hwclock/hwclock.c &&
./configure &&
make &&
- make install &&
- mkdir /var/lib/hwclock
+ make install