In code listing 12.2: # cp /proc/mounts /etc/mtab This gives you a zero byte file in /etc/mtab since /proc/mounts is not a regular file. This should read: cat /proc/mounts > /etc/mtab or as is found in the installation handbook: grep -v rootfs /proc/mounts > /etc/mtab Reproducible: Always Steps to Reproduce:
Done. Thanks for reporting.