首先对内核进行菜单配置,
代码:
[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。
84.19.178.* 于 2006-12-28 14:59:41发表:
mature gay porn
blues lesson piano
desktop fall free image wallpaper
shopping clothing woman
out of your mouth
indian online forex broker
dance in living naked room
disney princess game online
cheap hotel fare in las vegas
interior design idea home office
hair straightener product
global investment services
sample dispute letter to credit bureau
alone eat lunch never
song from the ameriquest mortgage
preferred stock definition
seattle independent escort
computer notebook refurbished used
modular storage cabinet
how to make nativity set
free jessica alba nude video
blog.myspace.com girl hot myspace site
airline coupon discount
antique online shop
apply for free government grants
sacramento shopping center mall
veterinary medical equipment
nude super model pic
amateur cum hand job shot
diddy last lyric night
power acoustic dvd player
internet mall portal shopping
84.19.178.* 于 2006-12-28 10:15:05发表:
dating free online personals service
modular home prices florida
time life world war 2
prudential real estate nh
art fine nude photo woman
refinance home equity mortgage
customs mexico us
download free point power program
face face off off
elmos rock star guitar
cancer info skin
naked in hot tub
direction driving get
ipod made who
disability insurance lawyer orillia
arabic song warda
beginner education forex in trading
buy sell marin real estate
paxil and wellbutrin
britney nude posing spear
adult finder friend member personals site
art creativity desk easel
3 champion dancing season star
train travel in russia
yahoo airline industry news
84.19.178.* 于 2006-12-28 08:46:30发表:
harley davidson motorcycle patch
sample personal admission college essay
picture of long layer of hair
bad credit loan online
food lion online
2007 game raw smackdown video vs wwe
display trade show illinois
working at home opportunity
daddy like lil stunting video wayne
britney spear uncensored upskirt
play free poker game
check flight schedule american airline
artificial christmas covered snow tree
ncaa college logo
back listen remix top
travel nursing lpn job
santana the game of love lyric
home in louisiana mobile used
current interest mortgage rate va
ask employer interview question
california home loan ontario va
go gotta moes
com world sex
hindi free indian song download
gay stud hardcore
84.19.178.* 于 2006-12-28 03:43:16发表:
make online payment
106 go jamaica.com power
company direct equipment largest mail musical
broker investment property uk
man pubic hair removal
cheat game pokemon shark version without yellow
news bbc co uk
bad credit new car loan
susana spears picture
block checker messenger msn
business grant loan small woman
western union san francisco
advance cash instant las need quickly vegas
yahoo news photo slide show
dont go let love
equity home loan virginia
downloading live messenger window
anal fuck movie rough
loading gif image
what color should i dye my hair
84.19.178.* 于 2006-12-27 22:15:24发表:
pro tv program
emergency medical office services
cash fill get paid survey
who want to be a millionaire online game
logo software
black picture pussy woman
florida home orlando sun vacation
car florida in location max
cellular phone without plan
credit application form sample
auto car financing loan new
cartoon layout space
hotel make reservation
84.19.178.* 于 2006-12-27 06:11:57发表:
video cassa problema scheda video
calgary informazione generali
de en gratis sexo video vivo
traffic cop
elias funzione dell etichetta
gonna al vento
ricerca indirizzo posta elettronica
prenotazione albergo san severo
84.19.178.* 于 2006-12-27 06:05:13发表:
universit bocconi olimpiadi matematica
forza lupi
programma cataloga dvd
jingle bells rock
il quotidiano di basilicata
versioni greco aristotele
lavoro eseguiti cartongesso
negro amaro
84.19.178.* 于 2006-12-27 04:39:49发表:
produzione leghe dure utensile legno
falling into celine
televisione digitale
chatrine zeta jones
bollenti spirito graduatoria
dondup verona
ragazza grossa
chloe sevigny
84.19.178.* 于 2006-12-26 06:55:45发表:
buy amoxicillin online
cheap diet pill bontril
buy viagra com
tramadol side effects
book effects guest levitra side
buy norco online
buy hydrocodone overnight
buy vicodin online no prescription
lamisil af
xanax prescription online
adipex buy cheap diet pill
84.19.178.* 于 2006-12-26 04:05:21发表:
buy soma
84.19.178.* 于 2006-12-26 03:34:01发表:
online prescription propecia
503 hydrocodone watson
celebrex drug interaction
book guest online pharmacy tramadol
hydrocodone compound syrup
prozac withdrawal effects
paxil for social anxiety
lexapro make me gain weight
diazepam valium
buy ultram
84.19.178.* 于 2006-12-25 10:42:03发表:
south bend soccer holister store in garden state mall where do i apply for a personal grant mass fishing licenses colored poker cloth for sale carousel slide projector form 8800 center for the study of traumatic stres connecticut widebody club supra skylight curtains pralines by vlahos dedicated to what cosmeticsurgery palm springs bath house bvbbbb00 virginia slims redemption catalogue
84.19.178.* 于 2006-12-25 10:18:35发表:
c21curabba canteen corp in las vegas na national diversified training institute in naugatuck ct okeechobee city map us 441 best sub sandwiches san diego hardy and disease resistant roses xenia oh harley daveidson motorcycles albuquerque new mexico von bergfels sin control train times felt characters in the book where the wild things are by maurice senda barberry srubs fiddler feast fannie mae no trespassing form usajobgov
84.19.178.* 于 2006-12-25 09:44:26发表:
nutritional value raisins 4th july recipes uaw local 1005 sarasota bay club quizzes t put on ur mysapce las vegas mountaintop church .mydish.red lobster.com pennsylvania phone book westmoreland county adam plus kids clothing telecheck coffin bass case wwwroller coaster games risks of living on golf course crystal york island extreme cheer batten boards
84.19.178.* 于 2006-12-25 08:47:30发表:
20t 20maxx 20parts glucosamine chrondroitin attache flexible vinyl mosquito screens with velcro rape and murder- texas a jellyfish brain colbalt harley davidson montgomery county police dept employment malibu ca homes to rent weekly denise auston online diet woodlands tx dogs aspirin joint pain fantasy golf season 2 torque spec for robot base china place settings old talbot tavern bardstown ky ostroff
84.19.178.* 于 2006-12-25 01:37:59发表:
zoiza causes for cervical cancer what are the standards for american canina association california highway patroal flaming ember compilation razor state park osprey links orlando honeymoon suite charleston wb 7 passanger vehicles 2006 ocean front hotels in wildwood nj easy flower plant clone aim auto coasters false accusations chlortrimiton sound wav
84.19.178.* 于 2006-12-25 01:34:40发表:
ecord in ohio marriagehttp rodda paint outlet hartsville pike church of christ download java for free mononucleosis and cancer patients oklahoma city yellow pages white house porn kustomcreations cuban festival sears for window fans justin hambey kennedy panasonic lumex wand news alone dance mix barrio fino by daddy yankee - giant music store washington county department of social services
84.19.178.* 于 2006-12-25 00:12:53发表:
kid playing soccer angels and airwaves lyrics to take the stairs videotapefetish richard simmons diet zaprin blurry vision and headache wheelofourt florida criminal procedure latin god maywood studio cure for tetnus university of iowa emt class taglio asus fansel free xxx interracial sex real time ultrasound
84.19.178.* 于 2006-12-22 03:12:44发表:
buy tramadol online tramadol cheap tramadol phentermine buy phentermine online phentermine cheap phentermine discount phentermine cialis buy cialis online cialis cheap cialis discount cialis viagra buy viagra online viagra
84.19.178.* 于 2006-12-22 02:43:17发表:
cheap paxil discount paxil tenuate discount tenuate celexa buy celexa online celexa cheap celexa discount celexa buy lipitor online lipitor cheap lipitor ambien buy ambien online ambien cheap ambien
84.19.178.* 于 2006-12-21 22:47:40发表:
cheap fioricet discount fioricet soma buy soma online soma cheap soma discount soma carisoprodol buy carisoprodol online carisoprodol cheap carisoprodol discount carisoprodol meridia buy meridia cheap meridia discount meridia
84.19.178.* 于 2006-12-21 11:24:13发表:
buy tramadol online tramadol cheap tramadol online phentermine cheap phentermine discount phentermine cialis buy cialis online cialis cheap cialis discount cialis viagra buy viagra online viagra cheap viagra discount viagra
84.19.178.* 于 2006-12-21 09:15:32发表:
online diflucan cheap diflucan discount diflucan zoloft buy zoloft online zoloft cheap zoloft discount zoloft buy valium online valium cheap valium discount valium zyrtec buy zyrtec online zyrtec cheap zyrtec
84.19.178.* 于 2006-12-21 07:52:49发表:
online valtrex cheap valtrex discount valtrex paxil buy paxil cheap paxil discount paxil tenuate buy tenuate online tenuate cheap tenuate discount tenuate celexa buy celexa online celexa cheap celexa
84.19.178.* 于 2006-12-21 05:33:59发表:
discount fioricet levitra buy levitra online levitra cheap levitra discount levitra soma buy soma online soma cheap soma discount soma discount carisoprodol meridia buy meridia online meridia cheap meridia
89.178.42.* 于 2006-12-20 16:19:07发表:
Good work eminem crank yankers doll where does eminem live eminem stan music video eminem white america video eminem divorce eminem just lose it mp3 christmas eminem song 50 cent eminem eminem download music video eminem crank yankers doll where does eminem live eminem stan music video eminem white america video eminem divorce eminem just lose it mp3 christmas eminem song 50 cent eminem eminem download music video http://eminem.qualitymp3.info/index.php?p=812 http://eminem.qualitymp3.info/index.php?p=3 http://eminem.qualitymp3.info/index.php?p=268 http://eminem.qualitymp3.info/index.php?p=194 http://eminem.qualitymp3.info/index.php?p=784 http://eminem.qualitymp3.info/index.php?p=633 http://eminem.qualitymp3.info/index.php?p=1061 http://eminem.qualitymp3.info/index.php?p=1320 http://eminem.qualitymp3.info/index.php?p=777
84.19.178.* 于 2006-12-19 14:42:30发表:
tramadol buy tramadol online tramadol cheap tramadol discount tramadol buy phentermine online phentermine cheap phentermine discount phentermine buy cialis online cialis cheap viagra discount viagra xenical buy xenical online xenical
84.19.178.* 于 2006-12-19 13:44:59发表:
tenuate buy tenuate online tenuate cheap tenuate discount tenuate celexa buy celexa online celexa cheap celexa discount celexa lipitor buy lipitor online lipitor cheap lipitor
84.19.178.* 于 2006-12-19 11:27:07发表:
cheap phentermine discount phentermine cialis buy cialis online cialis cheap cialis discount cialis viagra buy viagra online viagra cheap viagra discount viagra xenical buy xenical discount lipitor ambien
84.19.178.* 于 2006-12-19 10:15:50发表:
discount valtrex paxil buy paxil online paxil cheap paxil discount paxil tenuate buy tenuate cheap tenuate discount tenuate celexa buy celexa online celexa cheap celexa
84.19.178.* 于 2006-12-19 09:28:41发表:
discount xenical ultram buy ultram online ultram cheap ultram discount ultram fioricet cheap fioricet discount fioricet buy levitra online levitra online carisoprodol cheap carisoprodol discount carisoprodol
84.19.178.* 于 2006-12-19 08:57:37发表:
buy meridia online meridia cheap meridia buy propecia online propecia cheap propecia discount propecia buy zyban online zyban cheap zyban discount zyban valtrex buy valtrex online valtrex
84.19.178.* 于 2006-12-19 08:45:37发表:
discount levitra tramadol buy tramadol online tramadol cheap tramadol online phentermine cheap phentermine discount phentermine buy cialis cheap cialis discount cialis buy viagra online viagra cheap viagra online ultram cheap ultram
89.178.59.* 于 2006-12-19 07:47:24发表:
Nice site, congratulations! pottery barn kid kitchen painting kid bedroom kid bedroom design idea kid bedroom comforter bedding disney kid designer kids easter dresses kid white bedroom furniture cheap kid bed in a bag baby bed in wall kid furniture loft bed pottery barn kid kitchen painting kid bedroom kid bedroom design idea kid bedroom comforter bedding disney kid designer kids easter dresses kid white bedroom furniture cheap kid bed in a bag baby bed in wall kid furniture loft bed http://kidsbed.trns2.com/pottery-barn-kid-kitchen.html http://kidsbed.trns2.com/painting-kid-bedroom.html http://kidsbed.trns2.com/kid-bedroom-design-idea.html http://kidsbed.trns2.com/kid-bedroom-comforter.html http://kidsbed.trns2.com/bedding-disney-kid.html http://kidsbed.trns2.com/designer-kids-easter-dresses.html http://kidsbed.trns2.com/kid-white-bedroom-furniture.html http://kidsbed.trns2.com/cheap-kid-bed-in-a-bag.html http://kidsbed.trns2.com/baby-bed-in-wall.html http://kidsbed.trns2.com/kid-furniture-loft-bed.html
84.19.178.* 于 2006-12-19 06:49:34发表:
discount soma buy carisoprodol online carisoprodol cheap carisoprodol discount carisoprodol meridia buy meridia online meridia cheap meridia discount meridia propecia buy propecia online propecia cheap propecia discount propecia zyban
84.19.178.* 于 2006-12-19 03:02:52发表:
cheap xenical discount xenical buy ultram online ultram cheap ultram discount ultram fioricet buy fioricet online fioricet cheap fioricet discount fioricet levitra buy levitra online levitra
84.19.178.* 于 2006-12-18 23:16:45发表:
tramadol buy tramadol online tramadol cheap tramadol discount tramadol phentermine online phentermine cheap phentermine cialis buy cialis online cialis cheap cialis discount cialis buy xenical
84.19.178.* 于 2006-12-18 22:46:15发表:
lipitor buy lipitor online lipitor cheap lipitor discount lipitor ambien buy ambien online ambien cheap ambien discount ambien
84.19.178.* 于 2006-12-18 21:46:40发表:
tramadol buy tramadol online tramadol cheap tramadol discount tramadol phentermine buy phentermine cheap phentermine buy cialis cheap cialis discount cialis viagra buy viagra tramadol
84.19.178.* 于 2006-12-18 21:00:13发表:
discount meridia propecia buy propecia discount propecia zyban buy zyban online zyban cheap zyban discount zyban buy valtrex online valtrex discount valtrex paxil buy paxil