diff options
author | Frans Pop <elendil@planet.nl> | 2006-12-31 03:03:35 +0000 |
---|---|---|
committer | Frans Pop <elendil@planet.nl> | 2006-12-31 03:03:35 +0000 |
commit | 7420a30685122aa6ef6b44768d95b8f05a32c0f8 (patch) | |
tree | 25b8e2fe9a01be7229231971c3ef40e3460a0b16 /en | |
parent | 4a4e15797e825d72ed9bec1dd8f331634da534c3 (diff) | |
download | installation-guide-7420a30685122aa6ef6b44768d95b8f05a32c0f8.zip |
The kernel-img.conf created during installation of a kernel package is incomplete; provide an example and some additional info
Diffstat (limited to 'en')
-rw-r--r-- | en/appendix/chroot-install.xml | 56 |
1 files changed, 46 insertions, 10 deletions
diff --git a/en/appendix/chroot-install.xml b/en/appendix/chroot-install.xml index 14b749980..d4a637da2 100644 --- a/en/appendix/chroot-install.xml +++ b/en/appendix/chroot-install.xml @@ -441,22 +441,58 @@ and a boot loader. Identify available pre-packaged kernels with: # apt-cache search linux-image </screen></informalexample> -Then install your choice using its package name. +</para><para> + +If you intend to use a pre-packaged kernel, you may want to create the +configuration file <filename>/etc/kernel-img.conf</filename> before you +do so. Here's an example file: <informalexample><screen> -# aptitude install linux-image-<replaceable>&kernelversion;-arch-etc</replaceable> +# Kernel image management overrides +# See kernel-img.conf(5) for details +do_symlinks = yes +relative_links = yes +do_bootloader = yes +do_bootfloppy = no +do_initrd = yes +link_in_boot = no </screen></informalexample> -</para> -<note><para> +</para><para> -The configuration file <filename>/etc/kernel-img.conf</filename> influences -the installation and upgrade of pre-packaged Debian kernels. A default file -will be created when you first install a Debian kernel image. For additional -information about this file, consult its man page which will be available -after installing the <classname>kernel-package</classname> package. +For detailed information about this file and the various options, consult +its man page which will be available after installing the +<classname>kernel-package</classname> package. We recommend that you check +that the values are appropirate for your system. -</para></note> +</para><para arch="x86"> + +If you intend to use <classname>grub</classname> as your bootloader, you +can set the <literal>do_bootloader</literal> option to <quote>no</quote>. +To automatically update your <filename>/boot/grub/menu.lst</filename> on +installation or removal of Debian kernels, add the following lines: + +<informalexample><screen> +postinst_hook = update-grub +postrm_hook = update-grub +</screen></informalexample> + +For the <classname>lilo</classname> bootloader, the value of +<literal>do_bootloader</literal> needs to be <quote>yes</quote>. + +</para><para> + +Then install the kernel package of your choice using its package name. + +<informalexample><screen> +# aptitude install linux-image-<replaceable>&kernelversion;-arch-etc</replaceable> +</screen></informalexample> + +If you did not create a <filename>/etc/kernel-img.conf</filename> before +installing a pre-packaged kernel, you may be asked some questions during +its installation that refer to it. + +</para> </sect2> <sect2> |