diff --git a/chapter06/linux-libc-headers.xml b/chapter06/linux-libc-headers.xml
index 44985d74f..eb0802c58 100644
--- a/chapter06/linux-libc-headers.xml
+++ b/chapter06/linux-libc-headers.xml
@@ -43,17 +43,17 @@ headers.
Install the header files:
-cp -R include/asm-i386 /usr/include/asm
-cp -R include/linux /usr/include
+cp -Rv include/asm-i386 /usr/include/asm
+cp -Rv include/linux /usr/include
Ensure that all the headers are owned by root:
-chown -R root:root /usr/include/{asm,linux}
+chown -Rv root:root /usr/include/{asm,linux}
Make sure the users can read the headers:
-find /usr/include/{asm,linux} -type d -exec chmod 755 {} \;
-find /usr/include/{asm,linux} -type f -exec chmod 644 {} \;
+find /usr/include/{asm,linux} -type d -exec chmod -v 755 {} \;
+find /usr/include/{asm,linux} -type f -exec chmod -v 644 {} \;