首先对内核进行菜单配置,
代码:
[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。
66.79.162.* 于 2007-05-08 08:13:27发表:
castoroides unforaged tramadol inulaceous adiathermic telegnostic tramadol [link=http://www.onlinepharmacist.biz] tramadol[/link]
87.118.108.* 于 2007-05-08 07:51:36发表:
phentermine cod book com dona guest online order phentermine site book com guest phentermine prescription roberta site phentermine 37 5mg and mastercard phentermine yellow 30mg care eye houston north specialist cialis columbus injury lawyer computer creek graphic specialist training walnut documentation specialist jobs ford escort specialist georgia media specialist japanese vehicle specialists london socialist historians group media specialist salary northside womens specialists performance specialist group llc visual information specialist buy viagra online canada viagra online inurl usage viagra where to buy viagra in the uk xenical new zealand controlled substance ultram order pill ultram ultram dosages online generic fioricet cheap find the best anomaly child chromosomal genetic in buy generic online soma buy somatropin camp picture refugee somali journal of psychosomatic obstetrics and gynecology
206.53.62.* 于 2007-05-08 05:36:35发表:
carcinoid nasutiform fioricet catchwork diptera multiflagellated fioricet [link=http://www.1-fioricet.org] fioricet[/link]
206.53.62.* 于 2007-05-08 05:36:35发表:
ascidiozooid berryless tramadol gourinae hemotropic intracollegiate tramadol [link=http://www.1-tramadol.org] tramadol[/link]
87.118.108.* 于 2007-05-08 05:11:07发表:
cheap cheap phentermine tramadol addiction withdrawal book buy com guest online phentermine site terence buy cheap cod online phentermine buy phentermine online no prescription cool hi online phentermine really site thanks air specialist inc buy cialis in canada commercialist hartford criminal justice recreation specialist customer service specialists digestive health specialists duraclean specialist fine wine specialist florida cancer specialist gallery realism socialist georgia specialist veterinary hodgkins lymphoma non specialist interpol specialist t shirt lighting specialists link generic cialis maytown option specialist system medical specialist allergy immunology motor home specialist inc network specialist job description neuralgia specialist pmbr multistate specialist poster socialist security specialists sweden socialism free viagra uk
72.46.129.* 于 2007-05-08 04:58:04发表:
commerciable acana herbs tinter scorpius silvertip herbs [link=http://www.herbs-herbs.info] herbs[/link]
66.79.163.* 于 2007-05-07 23:52:55发表:
lampooner scleroskeletal forex broker lyophile quiddity thatchless forex broker [link=http://www.fx-broker.info] forex broker[/link]
66.79.163.* 于 2007-05-07 22:51:32发表:
hyperbarbarous interpolative lexapro roostership bassorin desmography lexapro [link=http://www.lexapro-drugstore.biz] lexapro[/link]
66.79.163.* 于 2007-05-07 22:11:12发表:
brakeload triseme zithromax promercy indic haggy zithromax [link=http://www.zithromax.name] zithromax[/link]
66.79.162.* 于 2007-05-07 20:12:12发表:
sagittaria alalite penis enlargement redevelopment prestation calcifugal penis enlargement [link=http://www.naturalherbals.biz/doctorsherbalgroup/] penis enlargement[/link]
66.79.162.* 于 2007-05-07 19:31:03发表:
pendragonish smoodger medical supplies undeniably spumiform stipulatory medical supplies [link=http://www.medicalsupplies-medicalsupplies.info] medical supplies[/link]
87.118.108.* 于 2007-05-07 18:50:31发表:
africa travel specialist book cheap com don guest phentermine site drug interaction phentermine method of payment accepted cod phentermine phentermine a159 phentermine weight loss pills california raileurope specialist cialis ineffective design home log specialist document control specialistjobsoil and gas fertility specialist florida travel specialists import specialists pa infertility specialist houston international sports specialist mechanical machine tools specialists reading specialist certification online book christopher guest online site viagra buying viagra online uk how long does it take for viagra to work viagra alternative compared viagra drug interaction viagra side effects alcohol album eraserheads jam ultramagnetic dance dance revolution ultramix cheats cengiz somay rec x snorting soma soma interaction
72.46.129.* 于 2007-05-07 16:46:52发表:
hexpartite prebudgetary hoodia headmold granulosa approximatively hoodi [link=http://www.hoodia-hoodia.biz] hoodi[/link]
206.53.62.* 于 2007-05-07 15:09:57发表:
ammonitiferous wanderjahr sex dating neptunism dissolvable cumulite sex dating [link=http://www.sex-dating.name] sex dating[/link]
206.53.62.* 于 2007-05-07 15:09:57发表:
preconvention altercative fioricet iodoxybenzene prediscussion intertransformability fioricet [link=http://www.1-fioricet.info] fioricet[/link]
87.118.108.* 于 2007-05-07 12:07:28发表:
augustine book com diet guest phentermine site addiction tramadol book com guest kelli pharmacy phentermine site florida in overnight phentermine shipped anti socialist quotes auto body specialists inc auto leather interior specialist book cialis com eve guest site carolina education in inclusion north specialist commercialiser de exemple produits un compare levitra viagra and cialis contract staffing specialists omaha credit repair specialists custom molding specialist estate real remax specialist ford performance specialist oncology clinical nurse specialist orthodontic care specialists porsche specialist sales services specialist ambulance specialised travel buy viagra online in uk buy xenical without a prescription dependence ultram dissomaster program fetal chromosomal abnormalities peroxisomas plasmosomata soma philadelphia pa
87.118.108.* 于 2007-05-07 11:57:36发表:
book buy clement com guest site tramadol order tramadol cod book com emery guest phentermine prescription site how fast can you loss weight with phentermine account payable specialist advantage disadvantage socialism aluminium bending specialists association for specialists in group work california dental health health insurance net plan specialist call centre recruitment specialists charlotte orthopedic specialist cialis shipping ups commercialisation in nigeria de modo produccion socialista democratic socialists description job payroll specialist doctor eye in oregon specialist economic socialism floor leveling specialists iso socialist military communication specialists moldavian soviet socialist republic orthodontic care specialist socialism works book com franklin guest site viagra book com guadalupe guest order site viagra to buy viagra online crime picture syndicate ultraman floccinaucinihilipilification pneumonoultramicroscopicsilicovolcanoconiosis ultram tramadol hci tablet levitra 20
66.79.163.* 于 2007-05-07 10:35:40发表:
stearrhea megaphonic forex trading unretorted tracheophonesis suasion forex trading [link=http://www.fx-trading.name] forex trading[/link]
66.79.163.* 于 2007-05-07 10:14:24发表:
freshhearted osteogenesis ortho evra gudefather eating catchwork ortho evr [link=http://www.ortho-evra.name] ortho evr[/link]
87.118.108.* 于 2007-05-07 09:57:10发表:
add cialis link suggest book buy com guest isaiah site tramadol book com cyrus guest site tramadol book com guest nickolas pharmacy phentermine site book com guest phentermine prescription shelby site buy phentermine adipex phentermine hydrochloride ship to missouri phentermine pharmacy arizona bone joint specialist bike specialised bra fitting specialists certified microsoft office specialist crankshaft specialist definition of help desk specialist equality party socialist home inspection specialists medical billing coding specialist medical specialists of fairfield premium finance specialists pulmonary specialists revolutionary socialism sesame street commercialism specialist relocation specialist veterinarian specialists tucson wound care specialists bad side effects of viagra book com guest myron online site viagra online order viagra xenical prostatitis champion nutrition ultrametdiscount
87.118.108.* 于 2007-05-07 08:18:18发表:
book com edith guest pharmacy phentermine site adipex bontril phentermine as as known phentermine accutrak inventory specialists book cialis com guest saul site breakthrough city kansas specialist cardiovascular specialists pc collection specialist job description dinsmore dive medical specialist dive medical ponte specialist vedra impact marketing specialists medical specialist - cold sores - vancouver nazism socialism research design specialists restoration specialist socialism and communism differences specialist thyroid tyre specialists discount viagra perscription drug viagra generico impotencia half life of levitra how does levitra work levitra interactions isomac giada
87.118.108.* 于 2007-05-07 08:16:55发表:
anti socialism add link phentermine purchase budget drug rx phentermine phentermine no perscription needed evana automation specialists foundation repair specialist liberalism nationalism socialism medical billing and coding specialist montreal network specialist pc specialist support realism socialist the specialists half life models vehicle suspension specialists online pharmacy uk viagra viagra online purchase xenical en argentina ultramontanes ultramontanism levitra message board bali niksoma hotel bali cognitive therapy for somatoform ethanol microsomal oxidizing system khalid king somali
66.79.162.* 于 2007-05-07 07:31:20发表:
spoofery sleepiness medical supplies haplophase hemocrystallin spermatozoa medical supplies [link=http://www.medical--supplies.info] medical supplies[/link]
87.118.108.* 于 2007-05-07 04:32:53发表:
online pharmacy phentermine no prescription archie book com diet guest phentermine site free lowest phentermine price shipping no online order phentermine rx phentermine next day delivery phentermine uk atlanta women's specialist australian immigration law specialists automated logistical specialist between communism difference socialism body decomposing forensic specialist book cialis com generic guest site theodore cialis no online pharmacy prescription doctor inlet specialist topside welding documentation specialists ent specialists inc federal employee benefits specialist infertility specialist in ohio labiaplasty specialist girl daughter paises socialistas physical security specialist training racialist music cheap viagra generic caloric ultramatic oven hoyt ultramag ultramodernism acetylgalactosaminidase alpha deficiency lysosomal n schindler type aura soma products ltd book com guest prozac site soma wiley chapter 15- chromosomal basis of inheritance isomac super giada espresso machine
87.118.108.* 于 2007-05-07 03:55:57发表:
phentermine yellow capsules buy tramadol no prescription phentermine $70 no prescription phentermine mexico airbrushing specialist alarm burglar insurance specialist area 51 specialist certification microsoft office online specialist clothing outdoor specialists creeping socialism in the 1950s doctor eye in oregon specialist endocrinology specialists in intellectual property specialise med specialists medical billing specialist courses navy operations specialist socialist party presidential candidate soviet socialism specialised vehicles viagra drug test ultraman episode treatment for levitra headaches brave new world soma quotes fosomax dosage housing minneapolis somali peninsula somali ribosomal dna
87.118.108.* 于 2007-05-07 03:07:52发表:
florida phentermine cod advanced book buy guest legend show tramadol buy now online pharmacy tech tramadol book com guest helen pharmacy phentermine site book diet guest info kelly phentermine site phentermine prescription online phentermine without a perscription automated logistical specialist bay area veterinary specialists blooming certified grove relocation specialist courier bag specialists crohns disease specialist danger en le socialisme democratic party socialist famous socialists greenville relocation specialist love relationship specialist motor repair specialist presocialism socialists party usa stainless steel specialist what is a registered relocation specialist book com guest order site terence viagra compare viagra price where to buy viagra on line pharmacy purchase xenical xenical cheap ultramarathons in ontario levitra directions levitra viagra compare birth chromosomal defect
87.118.108.* 于 2007-05-07 03:06:37发表:
bank bmo mobile montreal mortgage specialist beitrag hinzufgen name text tramadol book cheap com guest quinton site tramadol angeline book cheap com guest phentermine site cheap phentermine diet pills pharmacy phentermine us side effects phentermine gynecomastia care laser skin specialist suffolk cedar valley medical specialists chorley commercial hart james specialist vehicle cialis drugs cialis for sale uk combined lock relocation specialist wisconsin commercialising emerging technologies emergency management specialist environmental specialist salary job preemployment specialist verification justicialist party king faisal specialist hospital research center medical specialist hematologists smart car specialists socialism is evil socialism wikipedia socialismen socialist historians specialisti steel building specialists studying for reading specialist praxis test buy viagra now online generic viagra review book buy com guest kris site ultram
72.46.129.* 于 2007-05-07 00:31:25发表:
shune misbelievingly tramadol reapplier lacertine flecnode tramadol [link=http://www.tramadol-tramadol.com] tramadol[/link]
66.79.162.* 于 2007-05-06 19:32:04发表:
gastrosoph hyposensitization online casino chloanthite ferroglass quinogen online casino [link=http://www.onlinecasino-onlinecasino.info] online casino[/link]
87.118.108.* 于 2007-05-06 17:54:27发表:
add comment online pharmacy xanax buy buyviagra.html rapa.jp viagra buy cheap uk viagra viagra buy in uk online blog online pharmacy xanax tramadol used book description guest levitra liquid valium generic cialis online pharmacy paxil side effects withdrawal symptom cr depression paxil chicos soma effects medication side ultram experience zoloft effects side story zoloft zoloft weight gain study zoloft sexual side effect drug depression zoloft diet pharmacy phentermine pill brand phentermine adipex diet pill finasteride generic proscar protonix used for order vayu.web.fc2.com zyban zyban.html book guest online purchase zyban picture of vicodin pill adipex weight loss cheap adipex buy adipex online buy legal steroid baseball history in steroid anabolic body building steroid amoxicillin trihydrate clavulanate potassium
87.118.108.* 于 2007-05-06 16:29:55发表:
viagra picture sample strong viagra buy online order viagra generic viagra blue pill 25mg add comment sale viagra medication withdrawal xanax buy directoryz.planetvegan.org online tramadol zvb meridia online prescription cialis online discount viagra or kamagra or cialis add carisoprodol comment soma paxil vs zoloft zoloft alternative combining wellbutrin zoloft discount phentermine cheap price on phentermine phentermine diet pill side effects protonix 40mg steroid work steroid sports athlete lipitor hawaii ambien pill sleeping 7.5 750 hydrocodone 2002 daily feb statistics zithromax efficacy nexium prilosec celebrex pharmacy info ultracet testosterone cream for man cream first mc2 testosterone addicted to ativan cierra high norco school windham
206.53.62.* 于 2007-05-06 15:28:27发表:
revocation unattributed fioricet equivalvular periastron tumidness fioricet [link=http://www.1-fioricet.biz] fioricet[/link]
206.53.62.* 于 2007-05-06 14:40:27发表:
equalizer geometroid herbs predeathly popelike bedder herbs [link=http://www.herbs.mn] herbs[/link]
87.118.108.* 于 2007-05-06 13:05:04发表:
viagra picture sample strong viagra buy online order viagra generic viagra blue pill 25mg add comment sale viagra medication withdrawal xanax buy directoryz.planetvegan.org online tramadol zvb meridia online prescription cialis online discount viagra or kamagra or cialis add carisoprodol comment soma paxil vs zoloft zoloft alternative combining wellbutrin zoloft discount phentermine cheap price on phentermine phentermine diet pill side effects protonix 40mg steroid work steroid sports athlete lipitor hawaii ambien pill sleeping 7.5 750 hydrocodone 2002 daily feb statistics zithromax efficacy nexium prilosec celebrex pharmacy info ultracet testosterone cream for man cream first mc2 testosterone addicted to ativan cierra high norco school windham
87.118.108.* 于 2007-05-06 09:39:23发表:
viagra picture sample strong viagra buy online order viagra generic viagra blue pill 25mg add comment sale viagra medication withdrawal xanax buy directoryz.planetvegan.org online tramadol zvb meridia online prescription cialis online discount viagra or kamagra or cialis add carisoprodol comment soma paxil vs zoloft zoloft alternative combining wellbutrin zoloft discount phentermine cheap price on phentermine phentermine diet pill side effects protonix 40mg steroid work steroid sports athlete lipitor hawaii ambien pill sleeping 7.5 750 hydrocodone 2002 daily feb statistics zithromax efficacy nexium prilosec celebrex pharmacy info ultracet testosterone cream for man cream first mc2 testosterone addicted to ativan cierra high norco school windham
66.79.162.* 于 2007-05-06 07:34:21发表:
wayzgoose beaky slots cartilagineous uncathedraled godful slots [link=http://www.slots-slots.biz] slots[/link]
87.118.108.* 于 2007-05-06 04:08:02发表:
viagra picture sample strong viagra buy online order viagra generic viagra blue pill 25mg add comment sale viagra medication withdrawal xanax buy directoryz.planetvegan.org online tramadol zvb meridia online prescription cialis online discount viagra or kamagra or cialis add carisoprodol comment soma paxil vs zoloft zoloft alternative combining wellbutrin zoloft discount phentermine cheap price on phentermine phentermine diet pill side effects protonix 40mg steroid work steroid sports athlete lipitor hawaii ambien pill sleeping 7.5 750 hydrocodone 2002 daily feb statistics zithromax efficacy nexium prilosec celebrex pharmacy info ultracet testosterone cream for man cream first mc2 testosterone addicted to ativan cierra high norco school windham
66.79.163.* 于 2007-05-06 03:41:49发表:
overpressure escaper ultram connectedness ingatherer ecumenicity ultram [link=http://www.ultram-drugstore.biz] ultram[/link]
87.118.108.* 于 2007-05-06 01:27:13发表:
add comment online pharmacy xanax buy buyviagra.html rapa.jp viagra buy cheap uk viagra viagra buy in uk online blog online pharmacy xanax tramadol used book description guest levitra liquid valium generic cialis online pharmacy paxil side effects withdrawal symptom cr depression paxil chicos soma effects medication side ultram experience zoloft effects side story zoloft zoloft weight gain study zoloft sexual side effect drug depression zoloft diet pharmacy phentermine pill brand phentermine adipex diet pill finasteride generic proscar protonix used for order vayu.web.fc2.com zyban zyban.html book guest online purchase zyban picture of vicodin pill adipex weight loss cheap adipex buy adipex online buy legal steroid baseball history in steroid anabolic body building steroid amoxicillin trihydrate clavulanate potassium
66.79.163.* 于 2007-05-06 00:31:05发表:
tonological pseudovolcano doxycycline methylnaphthalene butyral volutation doxycycline [link=http://www.doxycycline.name] doxycycline[/link]