the default if you hit enter is the capital letter between [] like [Y/n] would imply yes. If you see a ? between brackets, it means that you can type ? to get some explanations (often esoteric )
- install with synaptic kernel-package (to compile a .deb-package of your kernel)
- download matching kernel source and Ingo Molnars realtime patch, you'll find them from kernel.org
- unpack the kernel source, for example your /home-directory will be fine - no need to be root
- copy your working kernel configuration to the kernel source directory:
- patch the kernel source to include realtime capabilities in the kernel source directory:
bzcat /path/to/patch.bz2 | patch -p1
- configure:
make menuconfig
- remember to activate the realtime stuff at "Processor Type and Features"! And for audio work alsa support - including alsa-oss compatibility. Save and exit.
- compile:
make all
- compile a .deb-package like this:
make-kpkg --clean kernel_image kernel_headers
- when the previous command has finished, you should have a .deb-package of your newly compiled kernel in the parent directory of your kernel source directory. You can install it as root:
- check your GRUB configuration in /boot/grub/menu.lst and reboot
- you should now have rt-kernel provided everything went fine. Compiling and installing kernel headers is included in case you wish to compile the latest alsa source too.. but that's another story.
Good Luck!
Remember: matching numbers patch and source!