diff options
Diffstat (limited to 'chapter08')
-rw-r--r-- | chapter08/grub.xml | 4 | ||||
-rw-r--r-- | chapter08/kernel.xml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chapter08/grub.xml b/chapter08/grub.xml index d9e7325f1..862abd41b 100644 --- a/chapter08/grub.xml +++ b/chapter08/grub.xml @@ -129,8 +129,8 @@ information regarding GRUB is located on its website at: <filename class="symlink">/etc/grub/menu.lst</filename>. To satisfy this requirement, issue the following command:</para> -<screen><userinput>mkdir /etc/grub && -ln -s /boot/grub/menu.lst /etc/grub</userinput></screen> +<screen><userinput>mkdir -v /etc/grub && +ln -sv /boot/grub/menu.lst /etc/grub</userinput></screen> </sect1> diff --git a/chapter08/kernel.xml b/chapter08/kernel.xml index ef242991e..468ab95d5 100644 --- a/chapter08/kernel.xml +++ b/chapter08/kernel.xml @@ -113,14 +113,14 @@ the <filename class="directory">/boot</filename> directory.</para> <para>The path to the kernel image may vary depending on the platform being used. The following command assumes an x86 architecture:</para> -<screen><userinput>cp arch/i386/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen> +<screen><userinput>cp -v arch/i386/boot/bzImage /boot/lfskernel-&linux-version;</userinput></screen> <para><filename>System.map</filename> is a symbol file for the kernel. It maps the function entry points of every function in the kernel API, as well as the addresses of the kernel data structures for the running kernel. Issue the following command to install the map file:</para> -<screen><userinput>cp System.map /boot/System.map-&linux-version;</userinput></screen> +<screen><userinput>cp -v System.map /boot/System.map-&linux-version;</userinput></screen> <para>The kernel configuration file <filename>.config</filename> produced by the <command>make menuconfig</command> step @@ -128,7 +128,7 @@ above contains all the configuration selections for the kernel that was just compiled. It is a good idea to keep this file for future reference:</para> -<screen><userinput>cp .config /boot/config-&linux-version;</userinput></screen> +<screen><userinput>cp -v .config /boot/config-&linux-version;</userinput></screen> <para>It is important to note that the files in the kernel source directory are not owned by <emphasis>root</emphasis>. Whenever a |