Hey John, > You think that optimizing it is easy? Yes, i do. :) 1. Patching the kernel is simple (as long as you are using the right patch with the right version). Most of the time it is as simple as putting the patch in the kernel's directory and running: patch -p1 < "whatever the patch is called" Then it will show you if it patched correctly, if it didn't hit a linux forum and ask for help. It isn't rocket science... 2. To strip away all modules that you don't require, you only need to run a simple command from a terminal before you compile: "make localmodconfig". Then you can use "make menuconfig or mkae xconfig", and look through the configuration, then disable features that you don't need or want. Alot of the time it is common sense, as some things will be obvious to most people, that they are features your hardware/setup doesn't require. other times, google will be your bestfriend. 3. After that, you can hit the gentoo documentation and/or the GCC documentation, and read about CFLAGS...once, you figure out what you may like to use, and what isn't dangerous (too harsh of optimizations can break things). Then, you can run the necessary commands when you go to compile. my example (these are for my machine, and i use strict optimizations, so don't assume you should use them!) 'make CFLAGS="-O3 -march=native -pipe -fomit-frame-pointer -DPIC -fPIC -s" LDFLAGS="-z combreloc" rpm' (in my case this will make my optimized kernel into RPMs to use with Fedora) 4. Let it compile, if that goes okay, install it. then, depending on your distro/method used by the distro, you may have to use "dracut" or some other tool that make your initrd and you might manually have to edit grub. After this is all completed reboot! if there are any problems booting into your new kernel, google the error message and fix the problem. if you need help hit a forum. I don't think that is difficult. I taught myself how to do this, and im not a genius! (it's like 5 terminal commands, some reading and following instructions, easily found on the interweb) jordan -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html