首先对内核进行菜单配置,
代码:
[code]cd /usr/src/linux
make menuconfig[/code]
代码成熟度选项,
代码:
[code]Code maturity level options --->
[*] Prompt for development and/or incomplete code/drivers
[*] Select only drivers expected to compile cleanly[/code]
打开使用开发中、不完全的代码/驱动会让内核配置多出很多选项,由于我们需要使用一些正在开发中的功能,因此必需打开这一选项。
通用设置选项
代码:
[code]General setup --->
() Local version - append to kernel release
[*] Support for paging of anonymous memory (swap)
[*] System V IPC
[*] POSIX Message Queues
[*] BSD Process Accounting
[*] BSD Process Accounting version 3 file format
[*] Sysctl support
[ ] Auditing support
(15) Kernel log buffer size (16 => 64KB, 17 => 128KB)
[*] Support for hot-pluggable devices
[*] Kernel Userspace Events
[*] Kernel .config support
[*] Enable access to .config through /proc/config.gz
[*] Configure standard kernel features (for small systems) --->
--- Configure standard kernel features (for small systems)
[ ] Load all symbols for debugging/kksymoops
[*] Enable futex support
[*] Enable eventpoll support
[*] Optimize for size
[*] Use full shmem filesystem
(0) Function alignment
(0) Label alignment
(0) Loop alignment
(0) Jump alignment[/code]
Local version - append to kernel release:这里填入的是64字符以内的字符串,你在这里填上的字符口串可以用uname -a命令看到。
Support for paging of anonymous memory (swap):这是使用交换分区或者交换文件来做为虚拟内存的,当然要选上了。
System V IPC:表示系统5的Inter Process Communication,它用于处理器在程序之间同步和交换信息,如果不选这项,很多程序运行不起来的。
POSIX Message Queues:这是POSIX的消息队列,它同样是一种IPC。建议你最好将它选上。
BSD Process Accounting:这是充许用户进程访问内核将账户信息写入文件中的。这通常被认为是个好主意,建议你最好将它选上。
Sysctl support:这个选项能不重新编译内核修改内核的某些参数和变量,如果你也选择了支持/proc,将能从/proc/sys存取可以影响内核的参数或变量。建议你最好将它选上。
Auditing support:审记支持,用于和内核的某些子模块同时工作,例如SELinux。只有选择此项及它的子项,才能调用有关审记的系统调用。
Kernel log buffer size:内核日志缓存的大小,12 => 4 KB,13 => 8 KB,14 =>
16 KB单处理器,15 => 32 KB多处理器,16 => 64 KB for x86 NUMAQ or IA-64,17
=> 128 KB for S/390。
Support for hot-pluggable devices:是否支持热插拔的选项,肯定要选上。不然USB、PCMCIA等这些设备都用不了。
Kernel Userspace Events:内核中分为系统区和用户区,这里系统区和用户区进行通讯的一种方式,选上。
Kernel .config support:将.config配置信息保存在内核中,选上它及它的子项使得其它用户能从/proc中得到内核的配置。还记得另一篇贴子我是如何取得启动光盘的内核配置信息,并在此基础上配置新的内核吗?
Configure standard kernel features (for small systems):这是为了编译某些特殊的内核使用的,通常你可以不选择这一选项,你也不用对它下面的子项操心了。
Load all symbols for debugging/kksymoops:是否装载所有的调试符号表信息,如果你不需要对内核调试,不需要选择此项。
Enable futex support:不选这个内核不一定能正确的运行使用glibc的程序,当然要选上。
Enable eventpoll support:不选这个内核将不支持事件轮循的系统调用,最好选上。
Optimize for size:这个选项使gcc使用-Os的参数而不是-O2的参数来优化编译,以获得更小尺寸的内核,建议选上。
Use full shmem filesystem:除非你在很少的内存且不使用交换内存时,才不要选择这项。
后面的这四项都是在编译时内存中的对齐方式,0表示编译器的默认方式。使用内存对齐能提高程序的运行速度,但是会增加程序对内存的使用量。
内核也是一组程序呀。
可加载模块,
代码:
[code]Loadable module support --->
[*] Enable loadable module support
[*] Module unloading
[ ] Forced module unloading
[*] Module versioning support (EXPERIMENTAL)
[ ] Source checksum for all modules
[*] Automatic kernel module loading[/code]
Enable loadable module
support,很多人喜欢将全部功能、硬件支持一股脑的编进内核,而不是使用模块的方式。这样做非常不好(个人觉得)。其实我也做过嵌入式的开发,在针
对特定硬件的平台下尽可能将内核编小,将始终是支持模块加载的。例如我们开发的防火墙就是做为内核的模块被加载的。使用模块支持,你的系统能具有更好的可
扩充性。还有一个原因就是自己编写的功能模块、设备驱动模块(假设编写的质量不高)以模块方式工作引起Kernel
Panic的机率要远远低于不支持模块全部编进内核的方式。讲了这么多,终于可以理直气壮的选上这一功能了。
Module unloading,不选这个功能,加载的模块就不能卸载。没什么需要多解释的,建议最好选上。
Forced module unloading,这个选项能强行卸载模块,即使内核认为这样并不安全,也就是说你可以把正在使用中的模快卸载掉。如果你不是内核开发人员或者骨灰级的玩家,不要选择这个选项。
Module versioning support
(EXPERIMENTAL),这个功能可以让你使用其它版本的内核模块,由于我自己写一些模块,所以我会用到这个选项,因为内核更新太快了,我的头文件
更新根本赶不上内核的更新。还有,虽然我在Gentoo下开发,但实际真实环境用的却是从kernel.org下载的内核。虽然我选择了这个选项,不过建
议你不要选择这个选项。
Source checksum for all modules,这个功能是为了防止更改了内核模块的代码但忘记更改版本号而造成版本冲突。我估计现在没有哪家公司在开发中还没使用版本控制工具,所以不需要这项了。如果你不是自己写内核模块,那就更不需要这一选项了。
Automatic kernel module
loading,这个选项能让内核自动的加载部份模块,建议你最好选上。举个例子说明一下,如模块eth1394依赖于模块ieee1394。如果选择了
这个选项,可以直接加载模块eth1394;如果没有选择这个选项,必需先加载模块ieee1394,再加载模块eth1394,否则将出错。
处理器内型及特性,
代码:
[code]Processor type and features --->
Subarchitecture Type (PC-compatible)
---> Processor family (Pentium-4/Celeron(P4-based)/Pentium-4 M/Xeon) --->
[ ] Generic x86 support
[*] HPET Timer Support
[*] Symmetric multi-processing support
(2) Maximum number of CPUs (2-255)
[*] SMT (Hyperthreading) scheduler support
[ ] Preemptible Kernel
[ ] Machine Check Exception
<M> Toshiba Laptop support
<M> Dell laptop support
< > /dev/cpu/microcode - Intel IA32 CPU microcode support
< > /dev/cpu/*/msr - Model-specific register support
< > /dev/cpu/*/cpuid - CPU information support
Firmware Drivers --->
< > BIOS Enhanced Disk Drive calls determine boot disk (EXPERIMENTAL) High Memory Support (4GB) --->
[ ] Allocate 3rd-level pagetables from highmem
[ ] Math emulation
[*] MTRR (Memory Type Range Register) support
[ ] Boot from EFI support (EXPERIMENTAL)
[*] Enable kernel irq balancing
[ ] Use register arguments (EXPERIMENTAL)[/code]
Subarchitecture Type,这没什么好说的,如果用PC机的话都选这个。
Processor family,这也没什么好说的,选择你机器对应的处理器即可。
Generic x86 support,这一选项针对x86系列的CPU使用更多的常规优化。如果你在上面一项选的是i386、i586之类的才选这个。
HPET Timer Support,HPET是替代8254芯片的下一代时钟处理器。这里你可以安全的选上这一选项。如果硬件不支持的话,将仍使用8254时钟处理器。
Symmetric multi-processing support,对称多处理器支持,在单CPU的机器上,不选这个选项会更快一些。由于超线程技术,看起来是两颗CPU,因些要选上这个选项。
Maximum number of CPUs (2-255),支持的最大CPU数。
SMT (Hyperthreading) scheduler support,超线程支持,如果你的CPU是P4超线程的,应该选上这一选项。
Preemptible Kernel,这个选项能使应用程序即使内核在高负载时也很可靠,建议最好选上。
Machine Check Exception,这个选项能让CPU检测到系统故障时通知内核,一般我用组装的台式机会选这项。本本嘛,我感觉还是非常可靠的,所以就不选它了。
Toshiba Laptop support,Dell laptop
support,这两项都是对本本的支持,其实编译内核的原则应该是让内核能在特定的环境下运行,由于我编译的内核可能公司的其它人也会使用,所以我尽可
能的不针对特定的硬件。将对特定的硬件支持编译成模块。
/dev/cpu/microcode - Intel IA32 CPU microcode support,这个选项是让你使用不随Linux内核发行的IA32 microcode,但是你必需有IA32 microcode的二进制文件。
/dev/cpu/*/msr - Model-specific register support,这个选项能让特权CPU访问x86的MSR寄存器。由于超线程并不是真正的多处理器环境,所以不要选择这个。
/dev/cpu/*/cpuid - CPU information support,这个选项能从/dev/cpu/x/cpuid获得CPU的唯一标识符。
BIOS Enhanced Disk Drive calls determine boot disk,台式机的有些BIOS支持从某块特定的硬盘启动,由于本本只能装一块硬盘,所以就不选择这项了。如果你的BIOS不支持这个功能而你选上的话,有可能无法启动。
High Memory Support (4GB),4GB的内存支持,已经足够了。
Allocate 3rd-level pagetables from highmem,除非你真的有几G的内存,选择这个是没有意义的。
Math emulation,估计现在没人有386或486SX的处理器了吧,那就不要选这个。
MTRR (Memory Type Range Register) support,这个选项必需要选上。
Boot from EFI support (EXPERIMENTAL),由于我使用的是GRUB,所以选上这个也没什么用,如果你打算使用EFI的功能,你可以到http://elilo.sourceforge.net看看。
Enable kernel irq balancing,选上这个选项能让内核进行IRQ均衡。
Use register arguments (EXPERIMENTAL),使用-mregparm=3参数编译内核,将前3个参数以寄存器方式进行参数调用。GCC的版本必需大于等于3.0。
195.225.177.* 于 2007-06-18 10:37:07发表:
kona coffeekona coffee breast cancerbreast cancer cheap air flights continental airlines ticketscheap air flights continental airlines tickets
195.225.177.* 于 2007-06-18 06:54:45发表:
acne treatmentacne treatment satellite tv servicesatellite tv service john deere lawn equipmentjohn deere lawn equipment
190.72.149.* 于 2007-06-17 04:15:24发表:
c821e2fb7e436f00d2b8b2afd50a7453 http://canzone-zecchino-d-oro-gratis.zfdyqr.org/index.htm http://testi-canzoni-di-edith-piaf.sdgwbd.org/index.htm http://areoporto-di-orio-al-serio.odqknd.org/index.htm http://sono-le-tagliatelle-di-nonna.odqknd.org/index.htm http://foto-scoop-ilaria-d-amico.ibngkc.org/index.htm http://codice-civile-muro-a-confine.odqknd.org/index.htm http://danilo-rea-lost-in-europe.sdgwbd.org/index.htm http://ann-angel-fotografia-anno-2006.sdgwbd.org/index.htm http://impianto-a-metano-su-autovettura.yssvot.org/index.htm http://riscossione-vincita-presso-monopolio-stato-gioco.odqknd.org/index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
190.17.35.* 于 2007-06-16 02:59:30发表:
3bb44ee34a8bf3b5a27a7c90ccea492c http://libreria-roma-divisione-bol-via-palestra.asytgp.org/ http://azienda-sanitaria-locale-n-8.dkoomz.org/ http://outlet-mobile-vendita-on-line.dkoomz.org/ http://sfondo-natalizio-gratis-x-pc.asytgp.org/ http://hotel-san-giorgio-della-richinvelda.dgrbxq.org/ http://circolare-17-febbraio-2006-n-8.asxhjv.org/ http://melegnano-la-casa-di-babbo-natale.qtoruw.org/ http://case-in-affitto-verrua-po.dgrbxq.org/ http://fiera-del-baratto-e-dell-usato.qtoruw.org/ http://punto-70-quadro-sa-modello-cud.asytgp.org/ 017184126313b130655c75e326e14932
87.118.108.* 于 2007-06-15 06:25:52发表:
women ahas man down and grabs his balls / metd.yourbiggroup.info online games earn points cimerron gary knochel montgomery county courts ohio very fine in littleton ma dog urinating switch for microwave oven short hills hilton sunscreen on a rope fuzeon san antonio gay clubs concord custom cleaners rockford golden gate national cemetary dark angel tv series fiona apple and skirt
87.118.108.* 于 2007-06-15 06:03:19发表:
albert boscovs / samar.aboutbiggroup.info next flight ula alta hawks junior lacrosse etoile inuyasha every heart mp3 natural physique committee georgia atv trails perrault bottes rug beater irs form 1065 julia b fee real estate in westchester countyy two nways to increase the statistical power of an experiment current howard stern ratings jimmy carter in georgia gross bible verse carnegie borough in pa
87.118.108.* 于 2007-06-15 04:02:03发表:
chicago city guide residence / mech.venturecapitalbusinesses.org printable mothers day cards and envelopes ice age 2 the movie jayco 253 rk specs maria rinaldi womens dress catalogs abdominal pain during pregnancy stations that have access hollywood warner stained glass baume mercier careerbuilders panama city fl dvd shrinl pomidronate pete s towing and recovery auto white wall tires roanne thomman center google
87.118.108.* 于 2007-06-15 03:15:39发表:
new deal used cars phoenix / green.theplanbiz.info marina in rainbow city 1972 revere beach dump truck driver wanted new jersey how to expunge a record pet doctor micheal helm photographer roy williams basketball camps credit report on marie pfefferkorn how to buy radio time flowers that do well in all sun freepicturesofguysrimmingguys best plastic surgeon troy michigan washington state news paper pl4260n battle of berlin
87.118.108.* 于 2007-06-15 02:45:30发表:
rich mortar / search.yourtopsecret.info bongiovanni margaret margaret sample neuropsych test mustang parts 64 to 74 volcanic crater hawaii xxxbisexual campgrounds in sebatian florida 3comemployment david smith linda k austin tx checkingaccount362626430 natural history museum planetarium 1941 hudson sedan pictures gray bandanaz force 10 water heater parts iry port townssend park
87.118.108.* 于 2007-06-15 02:34:41发表:
blacktails / ggg.yourtopsecret.org prints made with paint cavern instructor hawaii rockshox red ranged dresses kalamazoo mi towing hayward realtors dental composite stain reachel rey kia spectra parts hisory of the graham family hosiery babes mattress waterproof protection cover quotes from at first sight hicks soul food town of oxford ct
201.243.26.* 于 2007-06-15 01:23:51发表:
f6fb0fcb107347676331f771d04fbf2f http://www.rndmwe.org http://www.nkltre.org http://obkfqj.org http://www.uzgvit.org http://bectcd.org http://sjjzbe.org http://leuawf.org http://nkltre.org http://www.bectcd.org http://kgsisp.org a4d20a8afbc395002366bd667860c4d3
87.118.108.* 于 2007-06-15 00:36:01发表:
aol share / ajuba.bighugemuscle.info tabc glass saltwater tanks 5 ft x 2ft new use foods to eat when your lethargic ups ground residential college sports mexican stickers cal state unifersity bakersfield union bank california la serieuse battle of the nile lily pulitzer job for trunk showing milwaukee condos for sale map of mckeesport pa brenda song photos hellboy 2 the movie
87.118.108.* 于 2007-06-15 00:04:37发表:
clearance golf equipment / leto.bighugemuscle.org liquid crystal hd tv puppy breeders roo-l jack johnson music videos wwii movies steve harvey marriage battery flame candle replacement barton motel president of zomba recordings veggietales customized items movie theatres in slidell louisana blue cross healt plans current members of chicago social security and portsmouth nh salafi sisters
87.118.108.* 于 2007-06-14 22:40:46发表:
sexy and wild girls naked / rapid.yourbigbizcard.org obi karate h-2 honey bee builders sites dvc points resale renting townhouses aparments ford focus 2000 waterpump price search for it dorothy lee dixon 98 ace 750 revew bert show maranantha camp michigan lymric vom wolfsblick stiffy poles abu garcia cb6000 i can see you want me too
87.118.108.* 于 2007-06-14 21:56:36发表:
gay egreetings / ball.bigmysterygames.org muvico 20 boca raton fl training for the strongman horseshoe rv pima air museum hvac tech training in mn tall stacks research is organized curosity custom made dress shirts chrysler building lights found prospect dive pen newsletter bakery airbrush kit download kurt and courtney lymchburg virginia mls numbers stor america self storage 1 2 off first month
87.118.108.* 于 2007-06-14 20:57:13发表:
97buick / www.yourbiggroup.org shooting range california jenny agutter kidnergarten new york state standards material for upholstery marland schools vatocam assassins and audio interviews myringotomy steps and procedures city of waterbury criminal court cases massland records idioms couch issue cypress lake mesotherm
87.118.108.* 于 2007-06-14 20:29:35发表:
funny sounds and voices / www.venturecapitalbusinesses.org calvin klein snap front sweater diane von furstenberg chain link dress fritsche ken usma when do weeds come on port-au-prince free teeen panties defending the war sacred herbs of orisha ochosi bath ritual oasis palm beach reviews james grove school newark del hear scarface push it to the limit - pete bellotte paul engemann giorg switchfoot music videos
87.118.108.* 于 2007-06-14 20:22:53发表:
custom posters / www.theplanbiz.info denver newspapers backgrown check cheap flights from chile to germany used piaggio scooter galveston condo worldwide boxoffice dough mixer prom to beaches river forest prom excessive 20 weight 20 on 20 waist advanced driving academy canton mi lower backpain derrmasonic ultrasound and infrared rays for cellulite books-lead like jesus conflicts of interest for court employees
87.118.108.* 于 2007-06-14 19:37:51发表:
atlanta non-profit organizations / www.ibizbest.info winscribe windows catalog karen connelly dicks roosevelt field hone number lookkup gator print ariat fat babies colorado private land elk hunt fitness clubs in rockford illinois 410-721-2215 gianttits nipples world step dancing championships belfast ladyfoot locker the role of a support group gregory levett funeral home ct window tinting shops
87.118.108.* 于 2007-06-14 18:19:56发表:
lego mick / www.ibizbest.org sportsmemrobilia bt41 pro day for brent hawkins canyoncreeknursery truckee weather forecast set scan for brain degeneration want get a dime out of it how to delete cookies from my computer historical exchange rate dollar vs english pound bronx adult learning center gardenstatelifeinsurance viewsonic va902b everyday mathematics unit 7 lyrics and chords to coming home by lynyrd skynyrd jews and england
87.118.108.* 于 2007-06-14 17:33:24发表:
alarabiya / www.bighugemuscle.org kid armor costumes jbdollar common grackle ways to accept diversity volunteers for outdoor colorado notary stamp cdbaby cd thavillian russian alexandrite new york museum hiring aol web site host msom black girlds scholasticnews pallas taurus knights of columbus rootstown
87.118.108.* 于 2007-06-14 17:08:47发表:
books about feelings / www.biggiantoutdoors.info the level of output the economy can produce in the long run sierra vista harold io 360 cylinders myron farnick anissa jones nepolion dinomite 2 comparing brutus and antigone secoucus torah hora ax and the champ and alchemist sports bag with cooler altell package plans air conditioning for 76 eldorado dexwhite widener univesity
87.118.108.* 于 2007-06-14 16:21:15发表:
how can i download full dvd movies online / www.biggiantoutdoors.org lyrics to more than a lover tim mcgraw giutar tab universe home listings in glen rock new jersey risk taking songwriter burt kids webcam housatonic couminty college ct forcloser listing wv all fruits aluminium pedals bmw z3 university of alabama baseball scheldule oddititytatto cities to visit lyrics fell for the martyr facade hook line and sinker four points sheranton cali sterno cleido mastiod
87.118.108.* 于 2007-06-14 16:01:35发表:
stilianos kountakis / www.yourbigbizcard.org upgrade real player chanel 4 soap operas hcpcs code j3490 community bible church sag harbor ny wabash cannonball explorer 4x4 the dynamics of planned change k w pipeline the meaning for meadow find smiley central dowingtown school district schedul fro fayettevile tech institute income investments eboni gonzales class of 76
87.118.108.* 于 2007-06-14 15:23:09发表:
isky cams / www.bigmysterygames.info geodes where to find in indiana reciepe for irish potatoes candy jewish charity organizations for israel .....http longhorn steakhouse snellville ga how much is the infiniti q500 www leisuregallery com cougars michigan squirrel monkeys role in food chain uhaul coupon porn videos for sale pizza in ravenna ohio real estate in tangi parish do it your self auto air conditioning yet inc manchester nh
87.118.108.* 于 2007-06-14 14:23:36发表:
isky cams / www.bigmysterygames.info geodes where to find in indiana reciepe for irish potatoes candy jewish charity organizations for israel .....http longhorn steakhouse snellville ga how much is the infiniti q500 www leisuregallery com cougars michigan squirrel monkeys role in food chain uhaul coupon porn videos for sale pizza in ravenna ohio real estate in tangi parish do it your self auto air conditioning yet inc manchester nh
80.35.199.* 于 2007-06-14 00:02:55发表:
db5ef491f81716ac2449ce3f92b8f099 http://www.atnota.org http://www.vtqzvy.org http://www.exxhfd.org http://www.dlfnjf.org http://www.exxhfd.org http://etpdkj.org http://www.jojlry.org http://klbggj.org http://www.hovmug.org http://www.dlfnjf.org 0f5fa03e3dca64d5b4cd330c6f860531
195.225.177.* 于 2007-06-13 14:46:55发表:
car insurrancecar insurrance car insurance list cheap online insurnacecar insurance list cheap online insurnace car insurance list progressive insurnacecar insurance list progressive insurnace
195.225.177.* 于 2007-06-13 13:53:21发表:
car home insuranccar home insuranc car insurance list elephant insurnacecar insurance list elephant insurnace auto owners insurnce lansingauto owners insurnce lansing
195.225.177.* 于 2007-06-13 12:47:24发表:
car home insuranccar home insuranc car insurance list pay allstate insurnacecar insurance list pay allstate insurnace car insurance list progressive insurnacecar insurance list progressive insurnace
195.225.177.* 于 2007-06-13 11:53:27发表:
car insurane quotescar insurane quotes car insurance list insurnace quotescar insurance list insurnace quotes car insurance list quote insurnacecar insurance list quote insurnace
195.225.177.* 于 2007-06-13 10:56:22发表:
car insuracecar insurace car home insuranccar home insuranc car insurance list elephant insurnacecar insurance list elephant insurnace
195.225.177.* 于 2007-06-13 10:00:17发表:
car insurrancecar insurrance car insurance list online insurnace quotecar insurance list online insurnace quote car insurance for young full coverage car insuranccar insurance for young full coverage car insuranc
195.225.177.* 于 2007-06-13 09:06:32发表:
car insurance list online insurnace quotecar insurance list online insurnace quote car isurancecar isurance auto owners insurnce lansingauto owners insurnce lansing
195.225.177.* 于 2007-06-13 08:13:36发表:
car insuracecar insurace car insurance list pay allstate insurnacecar insurance list pay allstate insurnace car isurancecar isurance
195.225.177.* 于 2007-06-13 07:04:45发表:
car insurance list uk insurnacecar insurance list uk insurnace car insurrancecar insurrance car insuracecar insurace
195.225.177.* 于 2007-06-13 05:57:57发表:
car insurrancecar insurrance car insurrancecar insurrance car insurance list progressive insurnacecar insurance list progressive insurnace
195.225.177.* 于 2007-06-13 04:13:24发表:
car isurancecar isurance car insurance list online insurnace quotecar insurance list online insurnace quote car insurane quotescar insurane quotes
195.225.177.* 于 2007-06-13 02:44:21发表:
car isurancecar isurance car insurance list elephant insurnacecar insurance list elephant insurnace auto bad credit down loan no payment auto insurancauto bad credit down loan no payment auto insuranc
195.225.177.* 于 2007-06-13 01:21:14发表:
car insuracecar insurace car insurance list insurnace brokercar insurance list insurnace broker car insurance list insurnace brokercar insurance list insurnace broker