i want to compile a custom linux kernel for myself. because i dont know every option of kernel therefore i am looking for a good default config for start.
views:
107answers:
4
A:
I haven't done this in a while but aren't there sane defaults in the config dialogs?
Noufal Ibrahim
2010-01-19 17:15:27
no default config dosnt seem so good. some debug modes are enable and other things.
chezgi
2010-01-19 17:24:58
The default config should be pretty darn close to good, unless you need something specific?
Dean J
2010-01-19 17:30:05
+4
A:
You should check out KernelCheck. It's basically an app that will help you figure out what kernel options are worth tweaking for your particular system. It will also automatically download, compile and install the selected kernel for you.
loginx
2010-01-19 17:15:57
+2
A:
If you have a good running kernel that has builtin support for stored configuration (i.e. /proc/config.gz
exists), then you could copy that kernel configuration and use it as a starting point:
zcat /proc/config.gz > /path/to/kernel/source/.config
Kaleb Pederson
2010-01-19 17:26:08
+1
A:
Look in the repository of the Linux distribution you are using, they often have a generic or a huge kernel .config
, those are the "best choices".
Anders
2010-01-19 17:37:27