diff options
Diffstat (limited to 'chapter09/reboot.xml')
-rw-r--r-- | chapter09/reboot.xml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chapter09/reboot.xml b/chapter09/reboot.xml index e6a5e63eb..88b2fbcdb 100644 --- a/chapter09/reboot.xml +++ b/chapter09/reboot.xml @@ -30,11 +30,11 @@ installation for the first time! First exit from the chroot environment:</para> <para>Stop the <command>udevd</command> daemon that Udev started earlier, then unmount the virtual files systems:</para> <screen><userinput>pkill udevd -umount $LFS/dev/pts -umount $LFS/dev/shm -umount $LFS/dev -umount $LFS/proc -umount $LFS/sys</userinput></screen> +umount -v $LFS/dev/pts +umount -v $LFS/dev/shm +umount -v $LFS/dev +umount -v $LFS/proc +umount -v $LFS/sys</userinput></screen> <para>Unmount the LFS file system itself:</para> @@ -43,9 +43,9 @@ umount $LFS/sys</userinput></screen> <para>If multiple partitions were created, unmount the other partitions before unmounting the main one, like this:</para> -<screen role="nodump"><userinput>umount $LFS/usr -umount $LFS/home -umount $LFS</userinput></screen> +<screen role="nodump"><userinput>umount -v $LFS/usr +umount -v $LFS/home +umount -v $LFS</userinput></screen> <para>Now, reboot the system with:</para> |