早就安装了redhat的FC,起初在linux下真是感觉寸步难行,半天也安装不上一个软件。平时在windows下进行嵌入式开发,对linux下 的一些概念略知一二,加上网络上的丰富资源,没过多久也知道个大概了。用了几天,感觉在linux下,一切都变的麻烦了,而且软件运行速度也比较慢。结 果,一时热度过后,就很少进linux系统了。
前几天听说F7发布了,又来了兴趣。于是想新版是不是有提高,希望能够延续自己的兴趣。不管怎么样下了再说。花了一个晚上,终于下完了。这次轻车熟路, 安装软件都比较顺利,但系统本身的安装还是比较吗。这过程中,一种明显的体会就是,F7的效率明显提高了,默认字体漂亮了,中文输入法智能拼音也比较好 用,还有Stardict等等,总之比FC6的感觉好多了。有了一个好的系统,当然就不容易失去兴趣。开始学习在linux系统中写些程序。
1.编辑器
要写程序就需要一个好的编辑工具,要是再要有一个好的阅读工具那就如虎添翼了。在windows下有SourceInsight,集编辑阅读于一身的非常 好的一个编辑工具。Linux下不知道是否有这样的工具,FC6自带的gedit好像也不错,也有高亮显示语法。但来之波兰的同事建议使用NEdit,他 以前在linux下做过开发。gedit更偏向于一般文本的编辑,而NEdit更适合编辑代码,就用NEdit啦。至于阅读代码工具,一直没有找到。 NEdit可以在它的网站:http://www.nedit.org/下载到。Linux下阅读代码可以用SourceNavigater和SlickEdit。试了一下,SourceNavigater建工程太慢,建一个内核源码工程,竟然用了五个小时还让人觉得遥遥无期;SlickEdit用的是11.0.2,快多了,但是很容易死机,容易造成系统无法动荡只能重启。可能是我没有设置好,也可能是因为内核代码太大了,还得仔细研究研究这两工具。
2.编译器
在linux下,当然是GCC。看看版本。
# gcc --version
gcc (GCC) 4.1.1 20061011 (Red Hat 4.1.1-30)
Copyright (C) 2006 Free Software Foundation, Inc.
本程序是自由软件;请参看源代码的版权声明。本软件没有任何担保;包括没有适销性和某一专用目的下的适用性担保。
3.运行
编译生成的文件在终端中可以直接运行:#./filename
准备好了,开始我们的“Hello World!”
在用户主文件夹下建一个文件夹Tests。在终端中输入nedit打开编辑器,新建文件,并保存为Tests文件夹下的test.c文件。这样nedit就能够高亮显示C语言的语法关键词。输入一下代码:
int main(int argc,char **argv)
{
printf("Hello World!\n");
}
在VC下我们写完这样的一个小函数,只要点击编译,VC就给我们编译好了。这是因为有一个工作VC帮我们做了,那就是写makefile,VC知道我们需 要编译哪些文件,并自动产生编译用的makefile。在VC中我们也可以导出makefile,也就是.mak结尾的文件。而在linux下,就需要我 们自己编写makefile,来告诉编译器GCC编译链接文件时的规则和依赖关系。因此我们要编译生成执行文件,就要为其编写makefile文件。我先 前转载的《一起写makefile》有用了。
我们在Tests目录下,建立一个名为makefile的文件。用gedit打开编辑.
test: test.o //执行文件test依赖于文件test.o
gcc -o test -g test.o //-o 输出执行文件名为test,-g 支持源码debug
test.o: test.c //test.o依赖于test.c
gcc -c -g test.c
clean: //定义了一个命令clean,默认make从文件头开始
rm test test.o //移除文件test,test.o
保存这样的一个makefile文件,打开终端,cd到tests目录。
#make
你将看到:
gcc -c -g test.c
gcc -o test -g test.o
先后顺序变了,这就是依赖关系的体现;如果你不想看到这些信息也可以
#make -s
这样你的目录下就多了两个文件,test和test.o
如果要删除这两个文件,我们也有一个clean命令
#make clean
这两个文件已经被删除了。
看看成果,#./test
输出Hello World!啦。
到此,Hello World! 就结束了。
我们在学C语言的时候,好像在写main函数的时候可以不需要参数,而且返回类型也可以是void型。而这里却写成了 int main(int argc,char **argv)有所不同。
检验一下返回类型,改写为:
void main(int argc,char **argv)
{
printf("Hello World!\n");
}
保存->make,提示:
在函数 ‘main’ 中:
警告:‘main’ 的返回类型不是 ‘int’
由此可知这里的main函数的返回类型应该为int,否则就有warning;
再改写:
int main(int argc,char **argv)
{
printf("Hello World!\n");
printf("argc == %d\n",argc);
printf("argv[0] == %s\n",argv[0]);
printf("argv[1] == %s\n",argv[1]);
}
保存->make,通过编译了。
#./test Hello_World
结果输出:
Hello World!
argc == 2
argv[0] == ./test
argv[1] == Hello_world
结果,已经显示了main的参数的作用。这样的用法在学C的时候就很少提,如果一直在windows下写程序,可能也很少注意到这样的用法。而在编写一些DOS下运行的小工具的时候就需要这样的用法了。
carlote 于 2007-11-12 23:09:26发表:
谢
201.58.229.* 于 2007-09-07 00:52:46发表:
ba7c12d7cad57ccfcdc42a56a48034de http://art-193-codice-della-strada.vozlau.org/ http://logo-salumeria.yavpvy.org/ http://giochi-pc-con-gazzetta.odiioj.org/ http://fotolagofatamacugnaga.ukcvbo.org/dissipatore-lga775/ http://giudici-israele.oxibnl.org/ http://cercoamicaavventurosaviaggioaustralia.npxbkv.org/innesto-capello-artificiale/ http://livorno-spettacoli.vozlau.org/ http://acn-italia.hhidlx.org/ http://caserma-dei-carabiniere-sesto-fiorentino.vozlau.org/ http://snalstaranto.ipywer.org/esempio-contratto-d-appalto/ ef5da0821261872f3a177fbd4ce2e9fc
72.179.167.* 于 2007-09-06 07:55:14发表:
76ceb1ecc6ae44212150933d40423f2d http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 d950163e2bc04fe30175aa17834ab13d
24.1.40.* 于 2007-09-05 19:10:23发表:
f77c2177b95d772b2eab8f500547101d http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 db62d9d137e7999ef0c8bbd27991ea41
71.64.143.* 于 2007-09-05 04:43:37发表:
3da3ab848a88ff50ae1ee7ef4426f7fe http://utilizzare-cartongesso.dfmviz.info/ http://canaletta-portacavi.dfmviz.info/ http://gioco-eredita.dfmviz.info/ http://voli-andalo.dfmviz.info/ http://direttiva-comunitaria-2000-35.dfmviz.info/ http://farmacista-offerta-lavoro.dfmviz.info/ http://quota-successione-fratello-coniugato-prole.dfmviz.info/ http://ripetitori-telefonia-mobile-danno-salute.dfmviz.info/ http://svezzamento-bambino-naturale.dfmviz.info/ http://gradi-giorno-riscaldamento.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
82.234.188.* 于 2007-08-15 23:14:39发表:
3fa7ba83352805fe00c9ab733e2c065f http://concorso-fotografico-venezia.akrmtn.com/ http://immobiliare-2a-cerveteri.ddxsak.com/ http://calcio-mondiali-calendario.flroxk.com/ http://via-massimo-d-azeglio.zpvztz.com/ http://auto-molise-di-risio.zpvztz.com/ http://negozio-vinile.zpvztz.com/ http://immagini-costumi.flroxk.com/ http://calendario-franco-panino.flroxk.com/ http://sa-provincia.ddxsak.com/ http://video-porno-gratis-nero-asiatica.flroxk.com/ f79720dbd018955dfd9068d527cd2031
190.39.162.* 于 2007-07-25 23:51:26发表:
80692b6172b80c9d09ba16e6828bb81c http://annuncio-indirizzo-posta-o-msn-formia.fmyrxs.biz/ http://ostelli-livorno.txcbmz.biz/ http://scuola-danza-eur-roma.fmyrxs.biz/ http://francesco-rosso-mons.ftgmns.biz/ http://auto-vettura-usata-como.txcbmz.biz/ http://stipendio-medico-di-base.smtpld.biz/ http://traduzione-automatica-italiano-francese.cuxojo.biz/ http://fanny-bravo-gratis.txcbmz.biz/ http://conversione-file-wma.ftgmns.biz/ http://emancipazione-donna.ftgmns.biz/ f0bd15bc4c04b02533089147dbde4c5b
200.126.246.* 于 2007-07-25 17:47:06发表:
66abb3c0e2cf4e320ef9c6ac27ad65ce http://immagini-sexi-gratis.ggjrfj.biz/ http://camping-riva-nuova.hdywtl.biz/ http://lista-udc.pzgvuv.biz/ http://tappe-giro.pzgvuv.biz/ http://video-animali-divertenti.pzgvuv.biz/ http://villa-fulvia-riabilitazione.pzgvuv.biz/ http://grafica-editoriali-roma.ytxxxk.biz/ http://mario-torre-annunziata.joyubb.biz/ http://pannelli-solari-finanziamenti.ggjrfj.biz/ http://casse-sr.hdywtl.biz/ bfdd7bec9230a10317341e982495b689
24.232.119.* 于 2007-07-25 08:09:03发表:
e54247591df3af4133bff55ab96115f8 http://prosecco-seme-sparkling.enadzh.biz/ http://corso-formazione-operatori-socio-sanitario.ygvhik.biz/ http://bottone-astor.enadzh.biz/ http://verona-fiera-del-lusso.zibtye.biz/ http://materiale-imballaggio-pellicola-bobina-imballaggio.iuatju.biz/ http://ultima-lira.ppdpwx.biz/ http://baratto-basilicata.ygvhik.biz/ http://agriturismo-cavallo-mantova.tzlnou.biz/ http://occhiali-da-sole-in-offerta.iuatju.biz/ http://bed-and-breakfast-maiori.enadzh.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
201.209.181.* 于 2007-07-23 22:35:25发表:
9f6886af52edf4c00c1bd0651bc350ae http://bambino-fanno-oh-oh.vywyuh.org/ http://castello-buon-consiglio-trento-maternita-regalita.pvaeyo.org/ http://logo-turistico.mnkcbe.org/ http://televisore-samsung-crt-29.gbdrme.org/ http://dvx-codek.jnbwct.org/ http://trucco-fifa-2000.gbdrme.org/ http://malossi-trofeo-zip.mnkcbe.org/ http://case-prefabbricata.gbdrme.org/ http://a3-colore-stampante-ink.jnbwct.org/ http://berkshire-hathaway-quotazione.pvaeyo.org/ eb89aa2351bfb8dd061b0dc25061dcdb
201.208.247.* 于 2007-07-21 06:15:28发表:
03957b3df89f1b3245d1d2394f4573a5 http://golosoandcavallo.cerfmd.org/sondaggi-elezioni-del-9-aprile/ http://seriec1gironea.rozdha.org/san-carlo-patatina/ http://ristorantetorinese.rozdha.org/voli-roma-sicilia/ http://nonlasciarsiandaresensocolpaautoerotismo.ghoouy.org/codice-creare-banner/ http://leggereavipocketwindows5.kprskz.org/natale-polonia/ http://trovagioielli.chohqh.org/picchetto-snai/ http://santagiuliacostruzione.chohqh.org/voce-lucignolo-maurizio/ http://configurazionemmssiemensc72v.rozdha.org/morfologia-grammaticale/ http://tecnologianellascuola.kcqdnd.org/smacchiare-inchiostro/ http://ithotelitaliafiuggi.pykkxx.org/trasmettitori-temperatura-wireless/ b8fb7d84153cc5c69600cbe1497734b2
88.7.45.* 于 2007-07-19 21:13:40发表:
4ed82854d9614de607346cebf8909236 http://ingrosso-caffe.bkqryo.com/ http://mare-animali.aezqpa.com/ http://baia-azzurra-taormina.jvzulp.in/ http://aggiornamento-tom-tom-nokia.kvpzig.com/ http://marito-trav.kvpzig.com/ http://piccolo-problema-cuore-manga.kvpzig.com/ http://colonna-sonora-honey.licoxi.in/ http://scarica-video-saddam.kvpzig.com/ http://predicato-verbale-concetto.kmyeyh.com/ http://gli-angeli-lyrics.jnesky.in/ b8a12f78e2ab8d9c8e5e94f78e975725
200.69.188.* 于 2007-07-18 09:47:32发表:
7f289dca3a240a9842457b015f5ab324 http://rossellabresciasito.vniybd.org/msc-crociere-napoli-cup/ http://arpavdolomiti.cdvduz.org/commercialisti-pordenone/ http://lavoraredubai.jpwypc.org/immagine-grand-theft-auto-san-andreas/ http://raggioalfa.qbmkwd.org/concorso-enel-pubblico/ http://barbierialessandro.copdkj.org/deducibilita-iva-auto-aziendale/ http://centrobenesseremoena.eebsig.org/casa-roncalli/ http://crocieramediterraneoorientale.ppnxyq.org/movimento-thai-chuan/ http://gbbgioventubiancoblu.nxaqjj.org/consiglio-dei-ministri-n-51/ http://lamoscheadiroma.qbmkwd.org/scuoladecs-ch/ http://mappacamminodisantiago.ppnxyq.org/agenzia-territorio-pordenone/ 8ea4fcdde1a965ef95e68187f350c6f6
62.57.247.* 于 2007-07-18 07:09:56发表:
http://f139d4ec80ef6ba91444f048c044ca3c-t.xkktxb.org f139d4ec80ef6ba91444f048c044ca3c http://f139d4ec80ef6ba91444f048c044ca3c-b1.xkktxb.org f139d4ec80ef6ba91444f048c044ca3c http://f139d4ec80ef6ba91444f048c044ca3c-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
216.106.169.* 于 2007-07-17 00:39:31发表:
ac73e1f768e20bad4b2664406afb3419 http://metropolitana-parigi-mappa.drncar.biz/ http://classifica-radio-dee-jay.xmjviq.com/ http://disdire-acquisto-ingannevole.jmncsw.biz/ http://motociclo-50cc-vendita.ynpojb.biz/ http://millstatt-castello.xmjviq.com/ http://costruire-lanterna-presepe.ynpojb.biz/ http://apparecchiatura-elettromedicale-usata.xmjviq.com/ http://benedizione-site-org.mxkrxs.com/ http://storia-sviluppo-europa-200.fuypfr.biz/ http://significato-dovere-correttezza-magistrato.fuypfr.biz/ 8cff813cd5cdf93d908a9e43c4704dad
80.35.199.* 于 2007-07-15 16:23:36发表:
92e14f84427646a5ea2dc0cf717d03ec http://amstradaspirapolvere.eqacfr.org/varano-serpente-pitone/ http://filmatompegpanorama.vozulo.org/lino-da-olio/ http://onaosi.vozulo.org/body-intimi/ http://ilcastelloeditore.mqyawz.org/progetto-tutela-ambientale-marina/ http://sirosbraci.mqyawz.org/etica-hacker-libro/ http://psicologianarrativa.kqjhpm.org/invecchiare-foto/ http://hotelfamigliamarileva.mongnb.org/origine-italia/ http://corsiperchitarra.kqjhpm.org/cayenne-milano/ http://jeremysumpterdicembre2006.vozulo.org/abbonamento-messaggero-quotidiano-friuli/ http://marcomanzoni.kqjhpm.org/universita-di-infermieristica/ a875aa102e91579b074fe29fa7a13e81
84.4.25.* 于 2007-07-14 09:09:47发表:
714fbaf27d8e5ecf9f3534c9b3efda56 http://necropoli-taormina.iwfpha.org/ http://problema-goto-da2.tttfhp.org/ http://villa-dei-boschi.benlzg.org/ http://comparazione-tariffe-cellulari.lldpzx.org/ http://dichiarazione-intento-ravvedimento-operoso.gazdtl.org/ http://tutti-titolo-opera-esopo.mpxxqr.org/ http://sale-cinematografica-luci-rosse.ubetii.org/ http://srl-presidente.wuzzme.org/ http://alfabeto-degli-innamorati.wxamgv.org/ http://ordine-avvocati-campania.aoonyx.org/ 8c2a5fabd273020cebfaea52010ee4bb
88.148.24.* 于 2007-07-13 02:28:33发表:
aa5daf7ea3e96dfd2adab8fecc2da8d7 http://a-finale-di-pollina.egcngx.org/ http://5.qytpli.org/vantde.html http://petrucci-massimo-avvocato.rtistm.org/ http://affitto-casa-settimanale-capodanno.orjndo.org/ http://24-ore-di-finale.bmfcxx.org/ http://it-giovani.qpjnvy.org/ http://porcellana-royal-copenaghen.xxfvsr.org/ http://giovane-medico-lavoro.bmfcxx.org/ http://montale-leopardi-paesaggio.yorcfb.org/ http://coefficiente-attivita.egcngx.org/ d8d97f68bc274489b372d34e17b3a169
201.1.131.* 于 2007-07-11 19:39:57发表:
7c0814960e039527c4def16c8f23ea09 http://5.skachaj.org/pagina58.html http://13.ska4aj.org/pagina87.html http://20.ska4aj.net/pagina37.html http://5.ska4aj.org/pagina86.html http://16.ska4aj.org/pagina35.html http://2.ska4aj.com/pagina33.html http://12.skachaj.org/pagina93.html http://10.ska4aj.net/pagina79.html http://12.ska4aj.org/pagina26.html http://23.skachaj.org/pagina19.html 53f688e2d0ae01a48f96ad8f8181d4f6
201.231.69.* 于 2007-07-10 11:09:03发表:
ebbc187c8bffbc2532d029b9b5d42a26 http://film-porno-piu-bello.dkzfpf.org/ http://istruzione-obiettivi.wywplu.org/ http://ateneo-padova.bsvetd.org/ http://causa-esclusione-art-38.gtimmg.org/ http://grisham-innocente.atersl.org/ http://costruttore-serbatoio-carburante.wywplu.org/ http://scala-alluminio-multifunzione.uvrseh.org/ http://tavoli-da-esterno.wywplu.org/ http://schema-lampada-ioduri-metallico.dkzfpf.org/ http://storia-fascismo-dvd.gtimmg.org/ 9b45a0bdde2cb75e21785d72ae4741f7
62.82.199.* 于 2007-07-09 01:52:52发表:
39ba5b614c333287e8ec1ed3103cec19 http://stampabandieratorino.ybhujc.org/sinterizzazione-pistone-ammortizzatore/ http://dvd-majestic.jcddfk.org/ http://usato-auto-straniera-palermo.rjrigb.org/ http://mondo-giro-mazza-gioco.zgagyw.org/ http://donnameritavendettameritiamomorire.awcnfe.org/roccaraso-2006-2007/ http://stefano-bollani-concertone.djrtlt.org/ http://www-comune-trapani-it.wdhffe.org/ http://smaltimento-acqua-piovane-falda.mjifwc.org/ http://cameoricetta.xheadf.org/centrifuga-philips-comfort/ http://massaggi-riccione.mjifwc.org/ cda9cd96507def8918671c23330ec82a
125.142.179.* 于 2007-07-07 19:24:54发表:
a22f1161390efde36d320e13146c95c4 http://finanziamentoaziendafinanziamento.eoklgx.org/robot-saldatura-selettivi/ http://park-club-codogno.mcgzbb.org/ http://insegnante-danza.zikywm.org/ http://bite-rilassamento-muscolatura.vtjfdr.org/ http://concorso-disegno-naturalistico.mcgzbb.org/ http://intrattenimento-culturale.zikywm.org/ http://riproduzione-barbo-tigre.mcgzbb.org/ http://giochips2onlineonline.eduein.org/veneto-itinerario-viaggio/ http://distilleria-revel-chion-it.mcgzbb.org/ http://radiocernuscostereo.yjkdwi.org/molini-uso-zootecnico/ 268af5f4294519a6b3a74dbb7c6fdf14
83.36.228.* 于 2007-07-02 20:52:26发表:
5bc471f20162569c347cfc25b9126a2d http://architetto-antonio-marino-ente-parco.hhknox.org.in/ http://dio-stesso-gratuita-comunione-interpersonale.innltr.org.in/ http://hotel-ciasa-tama-la-villa.ooqqld.org.in/ http://giochi-di-corse-gratis-online.oaxzml.org.in/ http://io-canto-canzone-cantata-laura-pausini.pifljm.org.in/ http://uomo-ghe-fanno-sesso-cane.oaxzml.org.in/ http://ristorante-il-cortile-a-roma.qttkja.org.in/ http://conservazione-bene-culturale-indirizzo-archivistico.pifljm.org.in/ http://scuola-primaria-animale-vertebrati-ed-invertebrato.hhknox.org.in/ http://comignolo-dei-camino-problema-fumo-fumo.pifljm.org.in/ 8a848390101f52442387e8806988b168
201.208.247.* 于 2007-07-01 16:42:36发表:
20dbf05a0677bfe8f123972f49b858cd http://www.legge30031981n119.pyvila.org/ http://assunzionepostaitalianainterinalereggio.pkjtsb.org/ http://www.oliomotoregolftdi140cv.zawphd.org/ http://www.universitadinapolifedericosecondo.opojum.org/ http://circolazioneartoinferioridiabeteriabilitazionefisioterapia.jfjurx.org/ http://www.perizomalycraparteposteriorey.jfjurx.org/ http://www.venditapannellomdf.qrxvou.org/ http://www.tubazioniretedariaimpiantocivile.tgydoj.org/ http://olivettistampantejobjetm100.jfjurx.org/ http://tubazioniretedariaimpiantocivile.tgydoj.org/ 246f5573f09449eb624440463d221fca
88.1.194.* 于 2007-06-30 14:20:04发表:
288e3e32a8eed9a547d7d1a0dc4486d3 http://20dicembre1975n79.zcsdiw.org/caspar-friedrich-viandante-mare-nebbia/ http://case-vendesi-torre-del-greco.xflxat.org/ http://vespa-piaggio-banca-popolare-italiana.chohld.org/ http://barcamotoremassimomt7.ojbsss.org/testo-canzone-ma-si-ven-stasera/ http://lowcostperilbrasile.ejiufa.org/i-n-p-s-it/ http://salsa-corso-video-americano-latino-pasitos.oensnx.org/ http://manuale-gratis-riparare-freno-scuter.chohld.org/ http://icoloridellostuccoveneziano.ejiufa.org/analisi-dei-carico-solaio-legno-lamellare/ http://ssiciliafuoristrada4x4club.ejiufa.org/comune-di-bacoli-ufficio-tecnico/ http://cittadeuropatemperaturapiualte.ejiufa.org/condizionatore-9000-btu-classe-c/ 242a24eaaf2d8b6d338dfc62711422de
190.46.60.* 于 2007-06-29 13:31:55发表:
50b00b7c7c58abfac1c07cfcbc8e3143 http://art13411noleggioauto.hwdwav.org/foglio-calcolo-excel-gestione-campionato-calcio/ http://norma-principali-autonomia-finanziaria-ente-locale.gpzeve.org/ http://venditaimmobiliaretribunalecuneoit.ujgyzy.org/scarica-dizionario-lingua-italiana-gratis/ http://deadoraliveextreme2trucco.aklifa.org/art-186-c-d-s/ http://immagine-ragazza-si-leccano-piede.negvzz.org/ http://rimuovere-password-accesso-personal-computer.yigqdu.org/ http://ilgiuramentoantiromanodiannibale.bcpmpo.org/sci-salomon-equipe-model-2006/ http://traduzione-testo-canzone-my-chemical-romance.yigqdu.org/ http://downloadtemaxcellularesonyericsson.aklifa.org/ristorante-godega-di-sant-urbano/ http://appartamento-affitto-x-capodanno-milano-marittima.yigqdu.org/ 24974b376644b5034250f73cecc2d1d6
201.226.17.* 于 2007-06-28 10:13:48发表:
5ba849800ce8703c8c992c7ec65811ad http://case-vacanze-marina-di-ragusa.aifeuw.org/ http://gigi-d-alessio-il-nuovo-cd.vfkyqi.org/ http://nulla-osta-audi-omologazione-cerchio-18.jhjtvf.org/ http://croma-fiat-115-cavallo-prova-strada.nzwrmb.org/ http://trucchi-the-settlers-l-eredita.awdhmg.org/ http://tablatura-batteria-fade-to-black-metallica.gmgjeu.org/ http://problema-memoria-non-poteva-essere-written.tkanof.org/ http://video-personaggio-tv-saltano-fuori-tetta.oacpyn.org/ http://chiavetta-usb-sitecom-compatibile-psp.zqlmym.org/ http://windows-xp-dimensione-processo-explorer-aumenta.awdhmg.org/ dff758ad4d024eb641677108bbbbea97
190.17.104.* 于 2007-06-27 07:30:38发表:
66135c1aa2526262af3a7f4c86cdfa93 http://bicchiere-mezzo-vuoto-o-pieno.pidgzp.org/ http://harrypotterilsettimolibro.mutsoq.org/seconda-categoria-comitato-provinciale-vibo-valentia/ http://scrivereletterapresentazioneaddatorelavoro.swmvze.org/biblioteca-comunale-palazzo-sormani-milano/ http://cittapiuriccheditalia.wvyart.org/il-libro-della-giungla-dvd/ http://ragazze-di-cartoni-animati-nude.rjablq.org/ http://sitewwwbirramorettiitbirramoretti.swmvze.org/penna-bic-4-colore-prodotto/ http://comune-di-san-dona-di-piave.euhlah.org/ http://ruotadamulinoadacqua.olskny.org/d-lgs-17-1-2003-n/ http://lesioneisolatadeilegamentiginocchio.swmvze.org/deduzione-imposta-figlio-carico-maggiorenni/ http://contratto-collettivo-nazionale-dei-metalmeccanico.taryvn.org/ ac74524788537f28ae4c90c357df5e97
200.125.21.* 于 2007-06-26 07:13:59发表:
33b73e641a8035f1782dc3a5084a24d2 http://dottssacrisalavororomamail.gydeyj.org/pannelli-in-fibra-di-legno/ http://softwarerilevamentopresenzadipendentecomunale.wyselb.org/modello-divano-3-posto-nicoletti/ http://inquinamentoacusticolegge44795.wyselb.org/svolgimento-seconda-prova-abilitazione-geometra-2006/ http://per-scaricare-film-da-internet.wlwpdt.org/ http://codice-sblocco-toca-driver-2.ddbpnz.org/ http://albergo-figline-val-d-arno.abpato.org/ http://concessionariacamperprovinciavaresecomomilano.wnoohz.org/comune-rimini-listino-prezzo-mercato-ortofrutticolo/ http://volilowcostdamalpensa.gydeyj.org/terze-giornata-formativeper-infermiera-endocrinologia/ http://incentivolegge10994ccnlsanita.ggrflx.org/inps-it-servizio-on-line/ http://mutuo-regionali-prima-casa-regione-sardegna.bvthee.org/ 245153f8fc5ca6b7c7f1325ac3918a81
88.148.61.* 于 2007-06-21 19:05:15发表:
http://4ec7cf8b617baad3722f9c97627432b7-t.xlbmro.org 4ec7cf8b617baad3722f9c97627432b7 http://4ec7cf8b617baad3722f9c97627432b7-b1.xlbmro.org 4ec7cf8b617baad3722f9c97627432b7 http://4ec7cf8b617baad3722f9c97627432b7-b3.xlbmro.org 02564f07df4f7f30c664742ee44edb7d