一、操作系统安装
1.硬件配置
CPU:P3 1.4G X2个
RAM:2GB(oracle官方建议最少512兆内存)
HDD:32GB X 2个(RAID1)
2.硬盘分区
RHEL-U4按照以下基本要求分区,可根据需要适当调整容量
/boot 200MB(建议至少120兆)
SWAP 4096MB(建议至少是内存的两倍)
/oracle 4GB(oracle官方建议3.7G空间)
/tmp 1GB(建议最少400兆)
/ 5GB(RHELU4系统)
3.开始安装系统
安装时选择如下软件包:
Xwindow
Gnome
Development tools
系统安装好后关闭一些没有必要的服务:
命令行如下,也可以直接登陆xwindow通过服务管理工具来关闭
#chkconfig cups off
#chkconfig sendmail off
#chkconfig isdn off
#chkconfig smartd off
#chkconfig iptables off
#chkconfig pimcia off
4.配置xdmcp远程桌面
4.1修改/etc/X11/xdm/Xaccess文件,找到下面的语句:
#* #any host can get a login window
去掉最前面的#号,成为:
* #any host can get a login window
4.2修改/etc/X11/gdm/gdm.conf文件,找到下面的语句:
[xdmcp]
# Distributions: Ship with this off. It is never a safe thing to leave
# out on the net. Alternatively you can set up /etc/hosts.allow and
# /etc/hosts.deny to only allow say local access.
Enable=false
将其中的Enable=false 改为Enable=true
配置端口为177:
# The port. 177 is the standard port so better keep it that way
Port=177
vi /etc/X11/xdm/kdmrc修改[xdmcp]段的Enable=false为true port=177
/usr/share/config/kdm/kdmrc和
/etc/opt/kde2/share/config/kdm/kdmrc也需同样修改
4.3修改/etc/inittab文件,
将 id:3:initdefault: 改为 id:5:initdefault:;将 x:5:respawn:/etc/X11/prefdm -nodaemon 改为 x:5:respawn:/usr/bin/gdm
4.4修改/etc/X11/xdm/xdm-config的最后一行,在 displayManager.requestPort:0 前面加上一个!号
确保/etc/X11/xdm/Xservers的属性为444,/etc/X11/xdm/Xsetup_0的属性为755(这两个文件默认的属性就是444和775)
4.5修改防火墙配置/sbin/iptables -A INPUT -p udp -s 0/0 -d 0/0 --dport 177 -j ACCEPT
4.6重启 reboot
4.7在windows机器上安装xmanager2.0
4.8运行 Xbrowser,New Session Wizard -> 选XDMCP -> Method 选 Query,Host 填写ip地址,Port Number 填写 177 -> X server 设置都
用缺省 -> Session Name 填写会话名字,自己定义(我这里习惯用ip)-> 完成
二、安装oracle10g
1.首先准备安装环境
根据官方要求必须具备如下软件包:
gcc-3.2.3-34
gcc-c++-3.2.3-34
glibc-2.3.2-95.20
make-3.79.1
openmotif21-2.1.30-8
setarch-1.3-1
compat-db-4.0.14-5
compat-gcc-7.3-2.96.128
compat-gcc-c++-7.3-2.96.128
compat-libstdc++-7.3-2.96.128
compat-libstdc++-devel-7.3-2.96.128
一般情况下除了compat的一些包没有安装外,其他的包都已经安装了,可以使用这个命令进行查询;
rpm -q gcc gcc-c++ glibc make openmotif setarch compat-db compat-gcc compat-gcc-c++ compat-libstdc++ compat-libstdc++-devel
查找到没有的包,就从http://www.rpmfind.net上去下载吧,虽然这些包的说明是给fedora core 3的,用在rhel4上也没有问题。
ftp://194.199.20.114/linux/fedora/core/3/i386/os/Fedora/RPMS/compat-gcc-8-3.3.4.2.i386.rpm
ftp://194.199.20.114/linux/fedora/core/3/i386/os/Fedora/RPMS/compat-gcc-c++-8-3.3.4.2.i386.rpm
ftp://194.199.20.114/linux/fedora/core/3/i386/os/Fedora/RPMS/compat-libstdc++-8-3.3.4.2.i386.rpm
ftp://194.199.20.114/linux/fedora/core/3/i386/os/Fedora/RPMS/compat-libstdc++-devel-8-3.3.4.2.i386.rpm
2.创建用户和修改环境变量
没啥说的,照着官方文档的思路做就行了
# /usr/sbin/groupadd oinstall /创建组用户/
# /usr/sbin/groupadd dba /创建组用户/
# /usr/sbin/useradd -g oinstall -G dba oracle /创建用户,并设定用户组/
# passwd oracle /设定oracle用户的密码/
用oracle登陆进操作系统,编辑/home/oracle/.bash_profile文件,由于linux默认的shell使用的是bash,故要编辑这个文件,如果你设定的
使用csh,请编辑.login文件。
#su oracle
#vi /home/oracle/.bash_profile
我的.bash_profile添加的内容
ORACLE_BASE=/oracle/app
ORACLE_HOME=$ORACLE_BASE/product/10.1.0/db_1
ORACLE_SID=demo1
PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin
LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
export ORACLE_BASE ORACLE_HOME ORACLE_SID PATH LD_LIBRARY_PATH
创建安装目录:
按照官方文档的思路去做,就是创建ORACLE_BASE的目录,要和刚才定义的oracle用户环境变量一致。
下载oracle10g安装包并解压缩
更改安装目录权限
设定oracle为所有者和使用权限
#chown -R oracle:oinstall /oracle/app/product/10.1.0/db_1
#chmod -R 755 /oracle/
3.调整oracle使用者的环境限制
为提升oracle10g在RHEL中的效率必须调整oracle账户执行系统资源的环境限制
更改用户可使用的档案和进程数量:
# vi /etc/security/limits.conf
增加:
* soft nproc 2047
* hard nproc 16384
* soft nofile 1024
* hard npfile 65536
# vi /etc/pam.d/login
增加:
session required /lib/security/pam_limits.so
session required pam_limits.so
# vi /etc/profile
增加:
if [$USER = "oracle" ]; then
if [$SHELL = "/bin/ksh" ];then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
if
4.设定系统核心参数
按照官方文档做
在/etc/sysctl.conf中增加:
kernel.shmall = 2097152
kernel.shmmax = 1073741824
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
net.core.rmem_max=262144
net.core.wmem_default=262144
net.core.wmem_max=262144
其中,kernel.shmmax是共享内存段最大尺寸,kernel.shmmni是共享内存段最小尺寸。进入目录/proc/sys/kernel,可分别用命令:
#cat shmmax
#cat shmmni
#cat shmall
查看 kernel.shmmax 、kernel.shmmni、kernel.shmall的数值。
我在一篇文章看到kernel.shmmax的计算方法为:
kernel.shmmax = 1024*1024*RAM(M)/2 (至少)。
用命令:#cat sem可以查看kernel.sem的数值。其中, 250 是参数SEMMSL的值,32000是参数SEMMNS的值, 100是参数SEMOPM的值,而128则是参
数SEMMNI的值。然后#/sbin/sysctl -p使之生效
5.修改redhat发行标识
由于oracle10g不支持RHEL4所以要修改发行版本标识欺骗安装环境检测程序
备份/etc/redhat-release文件
cp /etc/redhat-release /etc/redhat-release.bak
将文件内容Red Hat Enterprise Linux AS release 4 (Nahant)
修改为:Red Hat Enterprise Linux AS release 3 (Taroon)
6.开始安装oracle10g
以oracle用户登陆到x系统,在xwindow下开启一个terminal
执行./runInstaller开始安装(注意大小写)往下就是图型安装界面,在安装的过程中会提示你以root用户身份运行些脚本,
响应窗口会提示你如何做,在安装时一定要记得选择支持多语言核心字符集(AL32UTF8)
82.57.10.* 于 2007-09-07 02:20:30发表:
d7a4897a7d645b6dd80acd98543b72ff http://disco-usati-firenze.yojewt.org/ http://matteo-lieto-amalfi.vozlau.org/ http://anglicismi-lingua-italiana-parlata.yavpvy.org/ http://piazza-pasolini-milano.hhidlx.org/ http://drago-barbuto.yojewt.org/ http://italianibarcellona.dlqpew.org/durata-commessa-infrannuale/ http://vacanza-albergo-jesolo-lido.vozlau.org/ http://techn-benevento.yavpvy.org/ http://dojo-sugiyama.hhidlx.org/ http://controllodeifumicaldaia.ipywer.org/contratti-d-agenzia/ ef5da0821261872f3a177fbd4ce2e9fc
190.188.37.* 于 2007-09-06 09:09:07发表:
406cd8c88fc3e8a86db12b3dab2c816d http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 d950163e2bc04fe30175aa17834ab13d
78.139.3.* 于 2007-09-05 20:15:27发表:
fc52a6411609d88ec7bb885012edb9ba http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 db62d9d137e7999ef0c8bbd27991ea41
67.85.84.* 于 2007-09-05 05:57:16发表:
1daebcb930f562b3dcf3a0d2aaef6859 http://solo-foto-gratis-donna-nuda.dfmviz.info/ http://marche-lavatrici-lavatrice.dfmviz.info/ http://fiore-bach-enteroclisma.dfmviz.info/ http://chiesa-ss-luce-trapani.dfmviz.info/ http://bioetica-rivista.dfmviz.info/ http://basetta-francesco-giuseppe.dfmviz.info/ http://d-lgs-4-dicembre-n-460.dfmviz.info/ http://wikipedia-frequenza-elettrica-regolazione.dfmviz.info/ http://alimento-albume.dfmviz.info/ http://latte-mio-nestle.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
86.215.194.* 于 2007-08-16 00:03:53发表:
3cefb58b8b16bdbcdfb54807b26af481 http://agenzia-marittima-offerta-lavoro.akrmtn.com/ http://batteria-3v-cr2-litio-ricaricabile.flroxk.com/ http://scarica-strumento-overclock-scheda-video.ddxsak.com/ http://malattia-professionale-segnalazione-modello.flroxk.com/ http://nissan-7-posto.zpvztz.com/ http://pavilion-zv5452ea-hp-compaq-portatile.akrmtn.com/ http://distinta-giocatori.akrmtn.com/ http://ci-ti-esse.akrmtn.com/ http://capodanno-2006-piazza-italiana.ddxsak.com/ http://mutuo-prima-casa-agevolazione-portatori-handicap.flroxk.com/ f79720dbd018955dfd9068d527cd2031
83.61.199.* 于 2007-07-26 01:06:55发表:
a6b0b5597c8b3a8a436918d2254293ec http://diritto-tributario-2006.cuxojo.biz/ http://sesso-iscrizione.smtpld.biz/ http://trucco-pga-tour-2005-xbox.sfupeh.biz/ http://buono-postale-730.sfupeh.biz/ http://tettona-hard-gratis.zqemjp.biz/ http://ast-orario.cuxojo.biz/ http://stock-abbigliamento-modena.cuxojo.biz/ http://batteria-nb-5l.ftgmns.biz/ http://pensione-cembra.txcbmz.biz/ http://arte-gotica-architettura.cuxojo.biz/ f0bd15bc4c04b02533089147dbde4c5b
190.38.247.* 于 2007-07-25 19:00:09发表:
52d4ef8e662d6cef756de82a7286cb10 http://gioielleria-vende-rolex.joyubb.biz/ http://medicine-in-gravidanza.ytxxxk.biz/ http://testo-mi-fido-di-te.pzgvuv.biz/ http://foto-spiagge-brasile.joyubb.biz/ http://anziani-comune-di-milano.joyubb.biz/ http://normativa-segnaletica-stradale.pzgvuv.biz/ http://affettatrice-370.ggjrfj.biz/ http://cristina-carnevali.mbgzfn.biz/ http://trucchi-ps2-smack-down.pzgvuv.biz/ http://di-restauro-dipinti.ggjrfj.biz/ bfdd7bec9230a10317341e982495b689
211.109.41.* 于 2007-07-24 22:22:24发表:
913cbec65a962ecd8ef99f0b60de2afc http://auricolare-siemens-sl55.tzlnou.biz/ http://succo-ananas.zibtye.biz/ http://rinascita-milano-livi.iuatju.biz/ http://comunicazione-web-milano.enadzh.biz/ http://vendita-casa-viterbo.ygvhik.biz/ http://amstrad-divx-usb.ppdpwx.biz/ http://camper-grecia.ygvhik.biz/ http://progetto-per-scuole.ygvhik.biz/ http://rischio-fondi.kajgdw.biz/ http://crepes-asparago.ppdpwx.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
220.72.224.* 于 2007-07-23 12:48:46发表:
0657736f243f3a1e34525351be892c62 http://guam-1kg.vywyuh.org/ http://allattamento-al-seno-vantaggio.hdpwsk.org/ http://aprilia-pegaso-cube.gbdrme.org/ http://vota-pene.jnbwct.org/ http://scambista-chat.pvaeyo.org/ http://mistic-kriya.pvaeyo.org/ http://terremoto-in-sardegna.hdpwsk.org/ http://tinture-tessuti.hdpwsk.org/ http://swarosky-cristallo.hdpwsk.org/ http://vittorio-scialoja.jnbwct.org/ eb89aa2351bfb8dd061b0dc25061dcdb
201.53.104.* 于 2007-07-20 20:35:23发表:
7ddc40bbd65fdd871bc92b4d3c9700d1 albero poesia bambino giochi pc download flash superenalotto 2005 http://elenacavallo.pykkxx.org/tappi-olio/ http://parolaccerusse.kcqdnd.org/isola-cucina-muratura/ http://cercofurgonedoppiacabina.ghoouy.org/sito-baglioni/ http://articolo633cpc.rozdha.org/ecoincentivi-rottamazione-euro-0-scooter/ imparare leggere ora http://sfondiacoloripermotorola.kcqdnd.org/roberto-marchionni/ http://farettoincassobassoconsumo.cerfmd.org/pubblicita-lovable/ b8fb7d84153cc5c69600cbe1497734b2
190.38.8.* 于 2007-07-19 11:26:31发表:
666f590ad62b21ba1cadfb523f0b9e21 http://olgiata-golf-bridge.uylqdg.com/ http://file-setup-exe-mancante.kmyeyh.com/ http://video-canzoni-sanremo.qeshtw.in/ http://importatore-peluche-panda.jnesky.in/ http://prestazione-350z.qeshtw.in/ http://santuario-pine.licoxi.in/ http://cura-infermieristiche.bkqryo.com/ http://preventivo-leasing.qeshtw.in/ http://vendita-dvd-usato-adulto.miwcjz.com/ http://chiamami-it-torino.kmyeyh.com/ b8a12f78e2ab8d9c8e5e94f78e975725
213.240.247.* 于 2007-07-17 23:20:41发表:
38a1462bf22a27e5714cc7596f6494b0 http://lalinguabatte.wfdklb.org/palmare-zire-31/ http://modellostandard.qbmkwd.org/consulenza-telecomunicazione/ http://hoteldirivaligure.nxaqjj.org/sonde-spaziali/ http://romateatrotordinona.cdvduz.org/baltimora-harbor-east/ http://scaricagratisspybotsearchdestroy.eebsig.org/quotazione-libri-antichi/ http://boxestoria.vniybd.org/asta-comunale-appartamento/ http://ginnasticapsicomotoria.wfdklb.org/avviso-sospensione-erogazione-acqua/ http://venditacasacervia.ppnxyq.org/elettricita-storia-scoperta/ paperina ir catanzaro http://silvioberlusconidatanascita.nxaqjj.org/il-buon-pane/ 8ea4fcdde1a965ef95e68187f350c6f6
201.1.130.* 于 2007-07-17 16:56:21发表:
http://3b26fc9e43957e2a7fbcfb3b5c90e360-t.xkktxb.org 3b26fc9e43957e2a7fbcfb3b5c90e360 http://3b26fc9e43957e2a7fbcfb3b5c90e360-b1.xkktxb.org 3b26fc9e43957e2a7fbcfb3b5c90e360 http://3b26fc9e43957e2a7fbcfb3b5c90e360-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
218.37.250.* 于 2007-07-16 14:26:13发表:
59c6f76f05fae0f21df8620727b1c852 http://installazione-catena-luminaria.drncar.biz/ http://gratis-casalinga-nuda.xsixxz.biz/ http://prestito-personale-generico.ywowql.com/ http://trucco-ps2-the-sims-2-pet.jmncsw.biz/ http://uni-en-12390-3-2003.xsixxz.biz/ http://buena-vista-distribuzione.jmncsw.biz/ http://don-rosario-francesco-esposito.fuypfr.biz/ http://virgilio-contratto-lavoro-igiene-ambiente.xmjviq.com/ http://hp-assistenza-tecnica.xsixxz.biz/ http://centro-trapianto-capello-torino.gvjcaf.com/ 8cff813cd5cdf93d908a9e43c4704dad
82.65.93.* 于 2007-07-15 06:34:20发表:
6e9a5110a5074e9d73215ca6e8e360b3 http://filialemilanossangyong.havjsk.org/conversione-documento-bobine/ alimento legumi letti ciliegio http://sorciopaoloit.mqyawz.org/the-oc-titoli-episodi/ http://ficoseccocioccolato.havjsk.org/paraurto-wrc-impreza/ scherzi compleanno http://escortgirlpadovatreviso.kqjhpm.org/volo-italia-brasile/ http://oopsfolliero.havjsk.org/debito-valore/ http://storiadellingotto.eqacfr.org/primo-piano-fabri-fibra/ http://hotelstelladresda.gapphu.org/poltrona-ufficio-direzionale/ a875aa102e91579b074fe29fa7a13e81
221.146.94.* 于 2007-07-13 23:23:34发表:
2a216c9bec874061291e78a2a1f835e7 http://prenotazione-esame-partenope.ubetii.org/ http://lista-stati-membro-nazioni-unite.njylwy.org/ http://produzione-vino-rosso.wuzzme.org/ http://inserzione-pubblicitaria-contratto-giurisprudenza.wxamgv.org/ http://notturni-padova.tttfhp.org/ http://franco-filippa-gambino.lvqits.org/ http://doccia-da-giardino.njylwy.org/ http://cinema-dell-aquila.hihuft.org/ http://vertigine-piede-cavo.tttfhp.org/ http://sesso-mamma-figlio-gratis.wuzzme.org/ 8c2a5fabd273020cebfaea52010ee4bb
190.39.103.* 于 2007-07-12 16:38:28发表:
36592bc401d3bdc6ee3616ae3f6fbecc http://procedure-sanitarie.egcngx.org/ news_list.php http://dormire-letto.xxfvsr.org/ http://bibbia-concordanza.qpjnvy.org/ http://castello-pietrarossa-caltanissetta.qeeuwf.org/ http://3.rakzmw.org/news/news_dettaglio.asp?idc=52 http://tema-d-esame-maturita-2006.yorcfb.org/ http://usato-moto-honda-genova.udzjxi.org/ http://sanremo-musica-scritta-carla.mtfkmx.org/ http://moto-leggere-ascoltare-musica.orjndo.org/ d8d97f68bc274489b372d34e17b3a169
190.84.231.* 于 2007-07-11 09:41:01发表:
87f01786f288d56482361f371b9c8524 http://11.ska4aj.net/pagina55.html http://16.skachaj.org/pagina78.html http://23.ska4aj.net/pagina34.html http://16.ska4aj.com/pagina18.html http://5.ska4aj.com/pagina97.html http://9.ska4aj.com/pagina36.html pagina50.html http://23.skachaj.org/pagina39.html http://5.ska4aj.com/pagina62.html http://14.ska4aj.net/pagina82.html 53f688e2d0ae01a48f96ad8f8181d4f6
82.127.249.* 于 2007-07-10 00:48:42发表:
fc481f4c988112fe80fb7cd9126cc869 http://associazione-laboratorio.uvrseh.org/ http://favole-mp3.bsvetd.org/ http://frate-luca-pacioli.dkzfpf.org/ http://divertimento-discoteca-marina-pietrasanta.uvrseh.org/ http://delsey-borse.uvrseh.org/ http://centro-formazione-professionale-barelli-levico-terme.uvrseh.org/ http://gioco-pc-scaricare-mercante-fiera.atersl.org/ http://comprare-calzature.wywplu.org/ http://cavalieri-dello-zodiaco-hentai.uvrseh.org/ http://posta-elettronica-libreria-via-falco.dkzfpf.org/ 9b45a0bdde2cb75e21785d72ae4741f7
190.73.228.* 于 2007-07-08 15:15:03发表:
adf5eb0d9485137f46241611c45aa4aa http://tutto-opera-leopardi.djrtlt.org/ http://ortopedico-gaetano-pini-milano.rjrigb.org/ http://magnesioeacqua.awcnfe.org/hotel-digghiri-maldive/ http://plasmaocristalliliquidi.ikwuex.org/offerta-appartamento-milano-viale-ungheria-affitto/ http://torquato-tasso-roma.jcddfk.org/ http://vololastminutegrecia.xheadf.org/motore-asp/ http://hotel-taljoergele-val-ridanna.mjifwc.org/ http://pannukakku-plum-cake-alla-finlandese.djrtlt.org/ http://studentessa-amatoriale-spogliarello.jcddfk.org/ gabetti pordenone cda9cd96507def8918671c23330ec82a
189.13.49.* 于 2007-07-07 09:19:02发表:
f9e64e87d9c3a1d68cad22f22df1be34 http://webpopup-hard-football-babes-it.vtjfdr.org/ http://fiatc40.eoklgx.org/dividendi-mediolanum/ http://poesia-spagnola-canto.jwwdqu.org/ http://offerte-pasqua-in-agriturismo.ylbtbt.org/ polacche puttana http://centri-epilessia.vtjfdr.org/ http://micronidi-familiari.ylbtbt.org/ http://accessoriocamperaosta.ilbeox.org/bando-concorso-acquisto-prima-casa/ cuore alfisti http://opinioni-captiva.mcgzbb.org/ 268af5f4294519a6b3a74dbb7c6fdf14
85.85.98.* 于 2007-07-02 10:42:08发表:
6b7daf2ea0af3652299336b25c8d3d4c http://la-radio-sul-tuo-sito.hhknox.org.in/ http://personaggio-cartone-animato-walt-disney.qttkja.org.in/ http://sciopero-generale-17-novembre-2006.dtifhu.org.in/ http://caserta-negozio-prodotto-tipico-sardi.pifljm.org.in/ http://dar-da-mangiare-agli-affamati.mksqkw.org.in/ http://cerca-lavoro-operaio-pistoia-provincia.qttkja.org.in/ http://voli-low-cost-roma-bucarest.oaxzml.org.in/ http://4-novembre-celebrazione-forza-armata.omulsq.org.in/ http://musica-classica-accademia-santa-cecilia.dtifhu.org.in/ http://programma-gara-nuoto-gualdo-tadino.mksqkw.org.in/ 8a848390101f52442387e8806988b168
70.80.234.* 于 2007-07-01 06:31:34发表:
27c23a462e987864e2e4cfb9860936b3 http://www.alpesiusialbergo3stella.tgydoj.org/ http://interpretazionescalawiscrpsicologia.tgydoj.org/ http://www.traduzioneletterapersonaleitalianoinglese.jfjurx.org/ http://www.nonapritequellaportait.zawphd.org/ http://www.insiemeconsalvolarosa.hrjksn.org/ http://perizomalycraparteposteriorey.jfjurx.org/ http://santuariobeatosantemombarocciopesarourbino.hrjksn.org/ http://coppiatrasgressivaovercinquantaveneto.jfjurx.org/ http://www.illeoneelalepre.gdedkb.org/ http://www.lavoronavecrocierasedetrieste.pyvila.org/ 246f5573f09449eb624440463d221fca
88.140.162.* 于 2007-06-30 03:25:50发表:
a61a166262d667719a34f447290be99b http://ccntessileartigiano.uqjhgg.org/san-giuseppe-moscati-di-avellino/ http://corso-gratis-learning-attestato-frequenza.msjbrf.org/ corso serale dei parrucchiera torino http://storiadellemancipazionefemminileitalia.uqjhgg.org/video-porno-bella-alta-bionda-hard/ http://giocareonlinegiococartepokemon.uqjhgg.org/veronica-franco-e-marco-venier/ http://baget-bozzo-dossetti-foglio-2006.arooqy.org/ http://il-rischio-clinico-in-corsia.chohld.org/ http://albergoanticarosalevicoterme.ejiufa.org/bonifico-richiesta-visto-turistico-usa/ http://traduzione-frasi-latino-all-italiano.arooqy.org/ http://scarica-gta-sant-andreas-gratis-pc.utpiii.org/ 242a24eaaf2d8b6d338dfc62711422de
88.168.26.* 于 2007-06-29 02:50:00发表:
b93936cd3ec6b6cb8e4d829e5848c6a0 http://servizi-sociali-comune-di-bologna.jmcomw.org/ http://programmazionesituazionepartenzaclassefasce.fxbzoa.org/giurisprudenza-esame-economia-politica-esempio-domanda/ http://testo-with-or-without-you-u2.meoprr.org/ http://24-dicembre-1986-n-958.meoprr.org/ http://commentosullapenadimorte.fxbzoa.org/pavimentazione-ligure-lavorazione-marmo-brugnato/ http://comune-modena-modulistica-apertura-albergo.negvzz.org/ http://prospettivaaumentodellstipendiocoopsociale.ujgyzy.org/testo-canzone-michael-buble-home/ http://ctu-verbale-sopralluogo-esecuzione-immobiliare.qkidvr.org/ http://gambero-rosso-guida-ai-bar.csirgp.org/ http://generatore-honda-eu10i-supersilenziato-nuovo.negvzz.org/ 24974b376644b5034250f73cecc2d1d6
200.44.66.* 于 2007-06-27 23:14:41发表:
0f52b11e923690620ab793c223ab492a http://diritto-inerenti-vita-privata-sociale.gdcsng.org/ http://agenzia-immobiliare-marina-di-ravenna.udzkxj.org/ http://trucchi-nba-live-2004-pc.vpvnno.org/ http://vino-abbinare-al-tartufo-bianco.plzgum.org/ http://morte-merola-numero-giocare-al-lotto.oacpyn.org/ http://nome-dei-sette-nano-inglese.nzwrmb.org/ http://puzzle-per-bambini-on-line.bewzmp.org/ http://amore-mio-ma-cosa-hai-tu.avypou.org/ http://juventus-roma-25-marzo-2006.oulmpk.org/ http://art-90-legge-289-2002.ajqecx.org/ dff758ad4d024eb641677108bbbbea97
88.9.217.* 于 2007-06-26 21:13:58发表:
46f14a03e9cbc8e1cda2c4ea51a305f2 http://albergosantamargheritadipula.wvyart.org/il-signore-degli-anelli-14/ http://autobusfiativeco470firenze.olskny.org/scuola-di-inglese-in-italia/ fondazione ferrero vado ligure via http://casa-riposo-anziano-non-autosufficienti-liguria.rjablq.org/ http://boleificiosocialebardolinob.wvyart.org/scarica-gratis-formato-divx-dvd/ http://modconcessioneassenzalegge10492.wvyart.org/gioco-rugby-ma-diverto-piu/ http://art-33-legge-104-92.ozetoz.org/ http://elenco-depositi-carburante-napoli-provincia.ynkpgu.org/ http://giochiplaystationtombraider.mjdrvf.org/grossista-abbigliamento-firmato-grossista-abbigliamento-firmato/ http://lavorare-d-estate-tunisia-settore-formazione.pidgzp.org/ ac74524788537f28ae4c90c357df5e97
88.17.54.* 于 2007-06-25 20:22:17发表:
a9533f613343f44e45ba20e44d794d39 http://esercizio-di-matematica-per-scuola-elementari.wlwpdt.org/ http://serie-calcio-giornata-17-goal.fcgpay.org/ http://tabella-a-legge-720-84.bvthee.org/ http://babydollsexynatalexxl.wyselb.org/lavoro-per-neolaureati-in-ingegneria-elettrica/ http://carica-batteria-nikon-mh-56.ddbpnz.org/ http://20112006cronacamilanoarresti.ggrflx.org/aree-di-sosta-in-italia/ http://case-in-affitto-selva-marcone.xfnqjv.org/ http://impostare-una-lettera-di-dimissioni.xfnqjv.org/ http://softwarerilevamentopresenzadipendentecomunale.wyselb.org/non-va-mica-bene-luuuuu/ http://agriturismoilmulinointoscana.wnoohz.org/dapaura-rete-imgv34-test-personalita-html/ 245153f8fc5ca6b7c7f1325ac3918a81
84.100.96.* 于 2007-06-24 18:50:38发表:
d1c426413401fbc269a1ea6c3594d5df link http sms cellulare blogspot com http://corsi-di-contabilita-a-padova.vogryu.org/ http://acquistoedirittodirecesso.shopio.org/cerco-sala-festa-capodanno-milano/ http://articolo-scoperte-medicina-grazie-ai-topo.nbjnpk.org/ http://angelidaunalasola.yiatbe.org/tutto-high-school-musical-troy/ frigorifero rex fi 22 10 va http://asilinidocomunaliaroma.savnjk.org/2-single-a-nozze-cover/ http://agenzia-immobiliare-cortina-d-ampezzo.fdkwms.org/ http://prezzodellecaseinitalia.fmyuaf.org/portafoglio-finanziario-gestione-on-line/ http://vendita-lettino-portatile-massaggio-provincia-udine.nbjnpk.org/ 452262cf741011e1ab8f1c4bc30a15a9
81.41.238.* 于 2007-06-23 18:34:23发表:
f01a349961c9c8b19d77751420c5daeb http://fieradiromacalendario2006.inpusz.org/artrosi-it-prof-g-rovetta/ http://frasiperdiretiamo.ihbepf.org/inter-ajax-in-tempo-reale/ http://emiliosalgaritramalibroultimifilibustieri.knqtun.org/clinica-ortopedica-traumatologica-universita-perugia/ http://medicopoliclinicoumbertoprimoroma.bkejls.org/torneo-minibasket-patavium-4-gennaio-2007/ bando concorso maresciallo dell aeronautica http://aggiornamento-tom-tom-navigator-5.wyhedi.org/ http://b-b-temple-bar-dublino.xprlxl.org/ http://schede-elettorali-9-10-aprile.vjsvzo.org/ http://skin-gratis-per-ogni-tipo.mjhbun.org/ http://venditoresoftwarearredamentodinterno.inpusz.org/via-s-g-bosco-brescia/ 9552dfe41baaa9f17aeb9f3e17cab334
201.210.50.* 于 2007-06-22 15:36:44发表:
7ebedfe8908a58c499c11adf101f29a4 http://borsastudiounivchieti20062007.dlzazi.org/scrivere-una-lettera-di-augurio/ http://contratto-compravendita-opzione-call-put.zivzdt.org/ http://finanziaria2007sanatoriacontributoagricoli.qurqnr.org/immagini-gratis-di-uomini-nudi-gay/ http://richiestasedecrocerossaitaliana.fvgoov.org/unione-industriale-cn-concerto-natale/ barzelletta site sanihelp msn it http://programma-x-scaricare-film-gratis.ytwviq.org/ http://comunicazionepreavvisofermoamministrativoprescrizionemulta.ibiwol.org/comune-santa-giustina-colla-padova/ http://consulenza-gratuita-cooperativa-sociale-regione-puglia.yevzni.org/ http://bustapagacalcolonettolordoirpef.ibiwol.org/quota-servizo-x-conciliazione-sede-sindacale/ http://candidatestripfromcolpogrosso.dlzazi.org/argomento-tesi-scienza-servizio-sociale/ 8d0a7cd2b17a8f039de7dab06d2ae220
65.94.190.* 于 2007-06-21 10:34:46发表:
020940b86c39f84653fd721845f54284 http://foto-donna-incinta-fanno-sesso.axbzdu.org/ http://fan-club-tre-metro-sopra-cielo.wdrksm.org/ http://coniuge-tre-figlio-quota-disponibile-legittima.tiabis.org/ http://bed-and-breakfast-firenze-centro-storico.rfnfwr.org/ http://festa-dei-giglio-nola-2006.tiabis.org/ http://nuovo-album-di-antonello-venditti.wdrksm.org/ http://auto-usata-meno-1000-euro.rfnfwr.org/ http://piani-cottura-filo-top-foster.rfnfwr.org/ http://msi-mega-player-522-bt-prezzo.tiabis.org/ http://quadro-storia-lira-1946-al-2001.cmuvxp.org/ 3281355dcdf7961a81348339c85b8f61
201.209.230.* 于 2007-06-20 08:35:21发表:
510ddef847194cda6f4b92261c759448 index.htm http://film-carica-cavalleria-italiana-russia.ehugfo.org/index.htm index.htm http://free-download-film-diavolo-veste-prada.kculvb.org/index.htm http://rivalutazione-monetaria-debiti-appalto-pubblico.kculvb.org/index.htm index.htm http://o-pate-nino-d-angelo.vwdrxg.org/index.htm http://comunicazione-inizio-lavoro-art-6.ihzaaf.org/index.htm http://valvola-pop-off-per-motore-aspirati.qgzsds.org/index.htm http://garage-olimpo-opera-teatrale-roma.vwdrxg.org/index.htm a95af8f224b8c9334b8122ef4b45f39a
69.70.206.* 于 2007-06-19 07:19:40发表:
38d7714c977d0ce3f819d689c1928c10 http://centro-commerciale-la-fattoria-rovigo.vooxwa.org/index.htm http://film-and-miglior-and-classifica.bqltxq.org/index.htm http://ascolta-album-fake-chemical-state.mboptw.org/index.htm index.htm index.htm http://obiettivo-sigma-28-1-8.csjstn.org/index.htm http://storia-dell-accademia-bella-arto-napoli.tadctp.org/index.htm http://rapporto-madre-figlio-dopo-divorzio.vooxwa.org/index.htm http://hotel-lusso-promenade-des-anglais.aunbvm.org/index.htm index.htm b8055c662679464e43a32265312932f9
190.38.242.* 于 2007-06-18 06:42:19发表:
3201deafe833c0c201429cb1a6ad03d4 http://comune-di-palazzolo-s-o.lwfhrb.org/index.htm http://legge-del-27-12-1997.lwfhrb.org/index.htm http://durante-allattamento-si-puo-fare-tinta.ogttfu.org/index.htm index.htm http://antenna-tv-ad-onda-convogliate.lwfhrb.org/index.htm index.htm http://traccia-compito-italiano-esame-stato-2003.mmaiuw.org/index.htm http://valutazione-fiesta-1-4-diesel.mmaiuw.org/index.htm index.htm index.htm b3e1aeebf15010c0e48986d09609c4eb
201.208.113.* 于 2007-06-17 05:14:23发表:
a34ba457365a855f7c44787673e7ce0f http://configurazione-internet-palmare-mate-vodafone.ixzutk.org/index.htm http://testo-iris-goo-goo-dolls.odqknd.org/index.htm http://epson-stampante-stylus-photo-r1800.rvumsf.org/index.htm http://domanda-ammissione-al-concorso-arpacal.odqknd.org/index.htm http://film-ho-voglia-di-te.odqknd.org/index.htm http://acido-acetil-salicilico-tempo-eliminazione-circolo.odqknd.org/index.htm http://moto-ricambio-pomigliano-d-arco.zfdyqr.org/index.htm http://eleonora-gonzaga-francesco-maria-de-medico.ibngkc.org/index.htm http://visita-ai-mercatino-natale-salisburgo-friuli.yssvot.org/index.htm http://age-of-mitology-trucchi-pc.ibngkc.org/index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
84.101.186.* 于 2007-06-16 03:57:43发表:
f0cff2b4590563656bb281bd3b3ec0a1 http://biografia-al-bano-romina-power.dkoomz.org/ http://testo-nuovo-album-tears-for-fears.uvosok.org/ http://testo-minuetto-di-mia-martini.kluoca.org/ http://polisportiva-calcio-gravina-web-site.asytgp.org/ http://universita-di-parma-facolta-di-farmacia.dgrbxq.org/ http://contributo-fondo-perduto-arto-grafica.kluoca.org/ http://esame-avvocato-2006-campobasso-commissione.asxhjv.org/ http://bando-gara-banca-nazionale-lavoro.qtoruw.org/ http://colesterolo-alto-bambina-5-anno.dkoomz.org/ http://fiera-padova-17-18-19-novembre.asytgp.org/ 017184126313b130655c75e326e14932
190.75.175.* 于 2007-06-15 02:23:08发表:
98cecaa8af1143b63c38fb37b934292f http://www.sjjzbe.org http://www.rndmwe.org http://www.yubecf.org http://www.uzgvit.org http://fkrbpd.org http://kgsisp.org http://www.gwwhof.org http://yubecf.org http://www.zdpnfm.org http://uzgvit.org a4d20a8afbc395002366bd667860c4d3
84.124.221.* 于 2007-06-14 01:07:28发表:
445688ab8d62bffb56eaaaca9eb922cc http://icqepi.org http://xgjrbe.org http://www.exxhfd.org http://eyfgwa.org http://www.pdhctn.org http://www.atnota.org http://www.gwxvqe.org http://hovmug.org http://kzfkps.org http://www.exxhfd.org 0f5fa03e3dca64d5b4cd330c6f860531
89.156.242.* 于 2007-06-13 01:58:42发表:
74db2715cccc6b3238f082a20000fbe7 http://pigmalione-testo-g-b-shaw.kiyytw.org/ http://trama-barone-rampante-italo-calvino.xxcgwu.org/ http://woman-wonder-elba-bio-hotmail.kiyytw.org/ http://polizia-stato-it-pds-index-html.okhyez.org/ http://colonna-sonora-di-santa-maradona.kiyytw.org/ http://trama-barone-rampante-italo-calvino.xxcgwu.org/ http://capitolo-16-dei-promessi-sposi.rivotb.org/ http://wake-up-hilary-duff-traduzione.kiyytw.org/ http://tutto-foto-dragon-ball-z-cartone.yvzcyb.org/ http://vendita-seconda-casa-madonna-campiglio.xxcgwu.org/ 416778d26f8af0e18aadb8d947bc0aec