作者:boean
(1)安装linux ,所由服务都不选择,只是选择安装开发工具,不要安装防火墙,不然有的端口没打开会提示
连接超时.
(2)打开终端,执行如下命令,检查安装包,没有的都要安装(一般在dis2 和dis3上)
rpm -q make gcc glibc compat-db compat-gcc compat-gcc-c++ compat-libstdc++ compat-libstdc++
-devel openmotif21 setarch libaio
(3)创建 Oracle 组和用户帐户
例如:
# /usr/sbin/groupadd oinstall
# /usr/sbin/groupadd dba
# /usr/sbin/useradd -m -g oinstall -G dba oracle
# id oracle
uid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)
设置 oracle 帐户的口令:
passwd oracle
(4)创建目录
例如:
# mkdir -p /oracle
# chown -R oracle:oinstall /oracle
# chmod -R 775 /oracle
(5)配置 Linux 内核参数,修改后不用重启动更新: /sbin/sysctl -p
第一种:打开/etc/sysctl.conf 复制如下内容
kernel.shmall = 2097152
kernel.shmmax = 2147483648
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.wmem_default=262144
net.core.rmem_max=262144
net.core.wmem_max=262144
6。检查需要安装一下包
make-3.79.1
gcc-3.2.3-34
glibc-2.3.2-95.20
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
openmotif21-2.1.30-8
setarch-1.3-1
# rpm -qa | grep make gcc glibc compat openmotif21 setarch
硬件需求
内存和交换空间
Available RAM Swap Space Required
Between 1024 MB and 2048 MB 1.5 times the size of RAM
Between 2049 MB and 8192 MB Equal to the size of RAM
More than 8192 MB 0.75 times the size of RAM
磁盘空间
1。5G (不包括数据库)
检查硬件
内存
# grep MemTotal /proc/meminfo
交换空间
# grep SwapTotal /proc/meminfo
磁盘空间
# df -ah
(7)oracle 用户的环境变量
以 oracle 身份登录,并通过在 .bash_profile 或 .profile(bash 或 ksh)中添加以下行,将
ORACLE_BASE 添加到登录配置文件(直接gedit /home/oracle/.bash_profile)
增加下列内容:
export ORACLE_BASE=/oracle
export ORACLE_HOME=$ORACLE_BASE/10.2.0/db_1
export ORACLE_SID=orcl
export PATH=$PATH:$ORACLE_HOME/bin
执行
source /home/oracle/.bash_profile
如果远程安装,需要启动cygwin
执行
# startx
然后在打开的窗口里输入
# xhost +
然后在oracle安装的机器上运行
# export DISPLAY=192.168.1.170:0.0
(8)解压缩oracle 10g安装盘,然后新建终端,运行 /runInstaller (注意大小写)
复制到/work/目录,并解压
# unzip 10201_database_linux32.zip
# cd database
# ./runInstaller
安装过程中,
选择高级安装
在选择安装类型中,选择定制
安装过程中需要以root身份运行
/oracle/oraInventory/orainstRoot.sh
/oracle/10.2.0/db_1/root.sh
安装完毕后。
需要运行dbca来创建数据库
# dbca
创建数据库
(9)创建实例,起动数据库
(10)让oracle 跟随linux 一起启动.
root 登录,在 /etc/rc.d/init.d 下创建名为dbora,编辑增加以下内容
=================================================
#!/bin/bash
#参考http://staff.in2.hr/denis/oracle/10g1install_fedora3_en.html#n4_4
# chkconfig: 0356 95 1
# description: init script to start/stop oracle database 10g, TNS listener, EMS
#
#
# match these values to your environment:
export ORACLE_BASE=/oracle
export ORACLE_HOME=$ORACLE_BASE/10.2.0/db_1
export ORACLE_SID=orcl
export PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_USER=oracle
# see how we are called:
case $1 in
start)
su - "$ORACLE_USER" -c "$ORACLE_HOME/bin/dbstart"
su - "$ORACLE_USER" -c "$ORACLE_HOME/bin/emctl start dbconsole"
;;
stop)
su - $ORACLE_USER -c "$ORACLE_HOME/bin/lsnrctl stop"
su - $ORACLE_USER -c "$ORACLE_HOME/bin/dbshut"
su - $ORACLE_USER -c "$ORACLE_HOME/bin/emctl stop dbconsole"
;;
*)
echo "Usage: $0 {start|stop}"
;;
esac
==========================
打开终端执行:
chown oracle.oinstall /etc/rc.d/init.d/dbora
chmod 755 /etc/rc.d/init.d/dbora
使用chkconfig 设置运行权限
chkconfig dbora reset
检查
chkconfig --list dbora
结果如下:
ora10 0:off 1:off 2:off 3:on 4:off 5:on 6:off
注意:当系统不在 runlevels 3 and 5时,使用
service dbora start 启动服务.
service dbora stop 停止服务.
(11)修改$ORACLE_HOME/bin/dbstart
# Set this to bring up Oracle Net Listener
ORACLE_HOME_LISTNER=$ORACLE_HOME
如果没有ASM(自动存储),就把那一节内容删除,ASM要在加载实例前,先加载.
(12)重新启动计算机 ,就可以了,启动会比较慢,因为要自动启动em,database,listener,agent
常用手动控制数据库命令
打开em
emctl start dbconsole
关闭em
emctl stop dbconsole
启动listener
lsnrctl start <监听名>(默认是LISTENER,可省略)
关闭
lsnrctl stop
启动emagent
emctl start agent
关闭
emctl stop agent
启动实例
sqlplus /nolog
conn / as sysdba
startup
关闭
shutdown immediate
测试数据库是否通
tnsping <本地服务名>
========================================
常见问题:
网页界面上的按钮出现“口口”的乱码
解决方案:
1.停止服务,emctl stop dbconsole;
2.把相关目录(RHEL4里面是/etc/java/)下的font.properties用
font.properties.zh_CN.Redhat8.0替换(或font.properties.zh,只要是中文简体就可以。);
3.删除
$ORACLE_HOME/oc4j/j2ee/oc4j_applications/applications/em/em/cabo/images/cache/zhs中的gif文件
;
4.重起服务(最好是重启服务器) emctl start dbconsole;
/etc/oratab的内容
orcl:/oracle/10.2.0/db_1:Y
=====================================================
以下的 J2EE 应用程序已经配置, 并且可用下面列出的 URL 来访问。
iSQL*Plus URL:
http://database:5560/isqlplus
iSQL*Plus DBA URL:
http://database:5560/isqlplus/dba
Enterprise Manager 10g Database Control URL:
http://database:1158/em
\==========================================
常用linux命令
df -h
ps -A
top
free
cat /proc/meminfo
uname
grep MemTotal /proc/meminfo
grep SwapTotal /proc/meminfo
hostname
76.22.116.* 于 2007-09-07 02:34:00发表:
6efac5a3f5e8f3039a394c2621b1d049 http://perle-collane.yojewt.org/ http://itr-abbigliamento.ufftiy.org/ http://mca-materasso-milano.yojewt.org/ http://tirocinioleonardopugliesi.yufywt.org/manchi-glitterato/ http://fondazione-cassa-risparmio-imola.odiioj.org/ http://domenica-avvento-2006-disegno-bambino.oxibnl.org/ http://ultimisuccessodance.yufywt.org/video-augurio-natale-animato/ http://soluzione-pokemon-verde-foglia-gratis.hhidlx.org/ http://it-verona.odiioj.org/ http://sito-web-udine.yojewt.org/ ef5da0821261872f3a177fbd4ce2e9fc
68.37.217.* 于 2007-09-06 09:19:14发表:
0cef6b0a6aeb249d4d11ae62f3a29a28 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 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://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 d950163e2bc04fe30175aa17834ab13d
67.84.174.* 于 2007-09-05 20:25:37发表:
5c48cf43565ef14fc82bd4c811d72817 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 db62d9d137e7999ef0c8bbd27991ea41
24.190.200.* 于 2007-09-05 06:11:31发表:
http://emeraldring.fora.pl/
http://emeraldring.fora.pl/
http://emeraldring.fora.pl/ - emerald cut wedding ring
24.10.99.* 于 2007-09-05 06:10:40发表:
940e6fdd9ae467875f16ed6aa25a5f94 http://vendita-armadio-bologna.dfmviz.info/ http://condoglianze-madre-parroco.dfmviz.info/ http://cassa-previdenza-consulenti.dfmviz.info/ http://cabina-armadio-snaidero.dfmviz.info/ http://volley-abruzzo.dfmviz.info/ http://colpo-tosse.dfmviz.info/ http://haker-terminologia.dfmviz.info/ http://viaggio-avventura-cile.dfmviz.info/ http://senso-erotici.dfmviz.info/ http://via-san-martino-della-battaglia-roma.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
221.232.159.* 于 2007-09-03 22:25:12发表:
child defense fund
child defense fund
child defense fund - http://fund.freewebpages.org/child-defense-fund/index.html
free fund raising idea
free fund raising idea
free fund raising idea - http://fund.freewebpages.org/free-fund-raising-idea/index.html
fund raising company
fund raising company
fund raising company - http://fund.freewebpages.org/fund-raising-company/index.html
61.241.146.* 于 2007-08-31 12:30:38发表:
Hi, nice very nice page..!
fund
fund raising counselor organization - http://fund.freewebpages.org/memorial-scholarship-fund/index.html
state insurance fund
mutual fund company - http://fund.freewebpages.org/abb-fund/index.html
state insurance fund
Good luck !
PS: do you listen Linkin Park ?
194.104.99.* 于 2007-08-30 05:37:15发表:
Hi, nice very nice page..!
fund novel raising - http://fund.freewebpages.org/fund-raising-event/index.html
hedge funds
candy fund raising
growth fund of america
fund raising company
Good luck !
PS: do you listen Linkin Park ?
0.0.0.* 于 2007-08-29 01:09:31发表:
Hi, nice very nice page..!
money market mutual funds - http://www.volny.cz/moneyrate/money-market-rate/
money market
money market interest rate
money market fund - http://volny.cz/highestmoney/cnn-money-market-stock/
money market funds
Good luck !
PS: do you listen Linkin Park ?
0.0.0.* 于 2007-08-27 09:51:04发表:
Hi, nice very nice page..!
money market fund
money market account rate
money market interest rate
money market rate - http://volny.cz/highestmoney/highest-money-market-rate/
high yield money market
Good luck !
PS: do you listen Linkin Park ?
221.232.159.* 于 2007-08-25 12:49:11发表:
Hi, nice very nice page..!
money market mutual funds
high yield money market
vanguard money market funds - http://www.volny.cz/moneymarket1/money-market/
best money market account - http://www.volny.cz/moneymarket/money-market-interest-rate
best money market account
Good luck !
PS: do you listen Linkin Park ?
58.251.50.* 于 2007-08-23 22:22:32发表:
Hi, nice very nice page..!
money banking and financial market
high yield money market account
ford money market - http://www.volny.cz/bestmoney/make-money-in-stock-market/
high yield money market account
money market fund
Good luck !
PS: do you listen Linkin Park ?
190.72.123.* 于 2007-08-16 02:44:00发表:
d1874147d4aeb302663fedff6743793f http://perla-vetro-lavorate-lume.akrmtn.com/ http://angels-of-love-negozio.flroxk.com/ http://aereo-usa-1947.akrmtn.com/ http://san-pietro-montorio.akrmtn.com/ http://versione-latino-tradotta-valerio-massimo.ddxsak.com/ http://cesenainbolgia-it.ddxsak.com/ http://video-suono-divertente.zpvztz.com/ http://kamarina-boat.flroxk.com/ http://servizio-stewart-fiera-verona.flroxk.com/ http://troppo-buoni.zpvztz.com/ f79720dbd018955dfd9068d527cd2031
219.141.223.* 于 2007-08-14 08:39:46发表:
good work !
chandelier lamp shades
chandelier lamp shades
chandelier lamp shades - www.desklamp1.fora.pl
buy viagra online
buy viagra online
buy viagra online - www.buyviagraonlinex.fora.pl
.
norwegian pearl
norwegian pearl
norwegian pearl - http://volny.cz/norwegianpearl
blackberry pearl white
blackberry pearl white
blackberry pearl white - http://volny.cz/blackberrypearlwhite
pink pearls
pink pearls
pink pearls - http://volny.cz/pinkpearls
blackberry pearl review
blackberry pearl review
blackberry pearl review - http://volny.cz/blackberrypearlrev
pearl white
pearl white
pearl white - http://volny.cz/pearlwhite
good luck
218.22.112.* 于 2007-08-09 06:31:35发表:
Hi, nice very nice page..!
buy pearl earring buy pearl earring buy pearl earring - http://volny.cz/buypearlearring
356 porsche sale 356 porsche sale 356 porsche sale - www.volny.cz/porsche356
lexus is250 review lexus is250 review lexus is250 review - www.volny.cz/lexus250/
944 porsche 944 porsche 944 porsche - www.volny.cz/porsche944
buy a pearl necklacebuy a pearl necklace buy a pearl necklace - http://volny.cz/buypearlnecklace
Good luck !
PS: do you listen Linkin Park ?
124.128.14.* 于 2007-08-07 08:50:53发表:
desk lamp
desk lamp - www.halogendesklamp.freehostia.com/desk-lamp/
lamp shades
lamp shades - www.halogendesklamp.freehostia.com/lamp-shades/
office desk lamp
office desk lamp - www.halogendesklamp.freehostia.com/office-desk-lamp/
217.141.105.* 于 2007-08-05 08:58:00发表:
nice site... look on my site
http://www.desklamp.fora.pl - desk lamp
http://www.lampshades.fora.pl - lamp shades
217.141.249.* 于 2007-08-03 15:04:50发表:
thnx... nice site
and i wan't see my:
http://www.tablelamp.fora.pl/
http://www.tablelamp.fora.pl/
http://www.tablelamp.fora.pl/ - table lamp
122.196.219.* 于 2007-08-02 01:44:52发表:
extreme sex comics http://cartoonfox.150m.com/extreme_sex_comics.html extreme sex comics extreme sex comics
extreme bdsm toons http://cartoonfox.150m.com/extreme_bdsm_toons.html extreme bdsm toons extreme bdsm toons
extreme sex comics drawing planet http://cartoonfox.150m.com/extreme_sex_comics_drawing_planet.html extreme sex comics drawing planet extreme sex comics drawing planet
extreme fuck comics http://cartoonfox.150m.com/extreme_fuck_comics.html extreme fuck comics extreme fuck comics
bdsm extreme comic http://cartoonfox.150m.com/bdsm_extreme_comic.html bdsm extreme comic bdsm extreme comic
209.213.199.* 于 2007-07-31 09:02:44发表:
gmc trucks here www.gmctruck.fora.pl
gmc from america www.gmctruck.fora.pl
real gmc www.gmctruck.fora.pl
and www.emeraldring.fora.pl rings
189.7.97.* 于 2007-07-30 12:53:24发表:
emerald rings and gold rings www.emeraldring.fora.pl
201.242.204.* 于 2007-07-26 01:19:26发表:
f2570f8fb9139abc2bbf89056b7fac48 http://notte-bianca-gallarate.zqemjp.biz/ http://lambrusco-nivola.ftgmns.biz/ http://186-quater-c-p-c.ftgmns.biz/ http://ville-per-matrimoni-in-lombardia.zqemjp.biz/ http://dottor-and-salotto.fmyrxs.biz/ http://abilitazioni-didattica-musica-strumento.txcbmz.biz/ http://dizionario-lingua-elfica.cuxojo.biz/ http://meteo-neve-pescasseroli.cuxojo.biz/ http://villa-lusso-italia.fmyrxs.biz/ http://biennale-architettura-venezia.fmyrxs.biz/ f0bd15bc4c04b02533089147dbde4c5b
78.112.51.* 于 2007-07-25 19:12:40发表:
a5d4ea462de45f21fd00f4495c30635e http://tiziano-madonna-addolorata.ytxxxk.biz/ http://estetica-natura-paolo-d-angelo.gohktw.biz/ http://qualita-processo-saldatura.pzgvuv.biz/ http://riflessioni-sulla-mafia.joyubb.biz/ http://neve-montagna-hotel.mbgzfn.biz/ http://temi-per-telefoni.pzgvuv.biz/ http://racconto-tran.ytxxxk.biz/ http://vitamina-alimento-occhio.mbgzfn.biz/ http://como-cantieri-nautici.joyubb.biz/ http://s-maria-poliambulatorio-medico-vobarno-brescia.joyubb.biz/ bfdd7bec9230a10317341e982495b689
190.36.200.* 于 2007-07-24 17:52:17发表:
d60c8eb869b42dc8a3d7bac44d777a1b http://clerici-caglio.tzlnou.biz/ http://luciano-dialoghi-dei-morti.kajgdw.biz/ http://negrita-rotolando.ygvhik.biz/ http://alimento-bio-gatto.enadzh.biz/ http://sicurezza-malato.enadzh.biz/ http://concorsi-per-le-ferrovie-dello-stato.ppdpwx.biz/ http://risultato-calcio-terza-categoria-lombardia.ygvhik.biz/ http://testo-consigliati-preparazione-concorso-carriera-diplomatica.kajgdw.biz/ http://s-paolo-banco-napoli-it.ppdpwx.biz/ http://tutto-c-sapere-coniglio.enadzh.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
201.81.128.* 于 2007-07-23 08:23:44发表:
3fcf7f88dbc9afa44e6addca54aae1a9 http://parco-agricolo.jnbwct.org/ http://chiappa-tanga.gbdrme.org/ http://sesso-hard-censura.cqhnnx.org/ http://i-giochi-piu-divertenti-del-mondo.gbdrme.org/ http://mete-a-confronto.gbdrme.org/ http://migliori-notebook.cqhnnx.org/ http://laboratorio-di-ricevimento.vywyuh.org/ http://janet-janet-catalogo-scarpa-borsa.hdpwsk.org/ http://crema-gelato.gbdrme.org/ http://laica-vt-3105.jnbwct.org/ eb89aa2351bfb8dd061b0dc25061dcdb
61.82.205.* 于 2007-07-20 16:20:40发表:
ffa8fb105eb58e20a2d88822e327a87b http://fotodanzamoderna.pykkxx.org/gatto-turco-van/ http://centrostudicinematografici.cerfmd.org/organizzazione-ed-economia-spettacolo/ http://geraniotrapianto.kprskz.org/vendita-acquisto-casa/ http://videoadaltadefinizione.qemqrg.org/dipinto-nascita-gesu-bambino/ http://europagefabricaarticoloreligioso.kcqdnd.org/corsi-di-inglese-gratuiti-in-internet/ http://dvdshrinkscaricaregratis.pykkxx.org/paperino-folla/ http://parolaccerusse.kcqdnd.org/baby-sitter-bologna/ immagini toro http://volobarimalpensa.pehabe.org/installare-tomtom-6/ http://anticipareilciclomestruale.chohqh.org/attivita-cernusco-naviglio/ b8fb7d84153cc5c69600cbe1497734b2
90.225.74.* 于 2007-07-19 16:50:15发表:
star war porn cartoon http://adultcomics19jul.tripod.com/star_war_porn_cartoon.html star war porn cartoon star war porn cartoon
drawn cartoon porn http://adultcomics19jul.tripod.com/drawn_cartoon_porn.html drawn cartoon porn drawn cartoon porn
dragonball z cartoon porn http://adultcomics19jul.tripod.com/dragonball_z_cartoon_porn.html dragonball z cartoon porn dragonball z cartoon porn
cartoon violent porn http://adultcomics19jul.tripod.com/cartoon_violent_porn.html cartoon violent porn cartoon violent porn
cartoon porn video http://adultcomics19jul.tripod.com/cartoon_porn_video.html cartoon porn video cartoon porn video
80.35.199.* 于 2007-07-19 06:52:32发表:
ea7e931fca6a542aa7a617c9d69d8e08 http://vendita-prodotto-alimentare-tutto-mondo-milano.bkqryo.com/ http://fiere-sora.miwcjz.com/ http://centro-impiego-trasferimento-it.kmyeyh.com/ http://eide-atapi-lettore-cd-rom-samsung.uylqdg.com/ http://rimuovere-protezione-file-word.jnesky.in/ http://unione-artigiani-pordenone.aezqpa.com/ http://concorso-sanita-cosenza.iznvge.in/ http://pacchetti-vacanze-ibiza.kvpzig.com/ http://usato-ricambio-bresolin.qeshtw.in/ http://silouette-uomo-bagno.qeshtw.in/ b8a12f78e2ab8d9c8e5e94f78e975725
83.97.193.* 于 2007-07-17 18:55:57发表:
ebc6816c4970b99e01f6b01372647827 http://crocieramediterraneoorientale.ppnxyq.org/stefania-spot-tim/ apertura di un asilo nido http://hotelplazamadonnacampiglio.lgyeas.org/potatore-attila/ http://bustafacpagasimile.jpwypc.org/schema-eletrico-autovettura/ http://frameworkeuropeo.nxaqjj.org/toscana-b-b/ http://ortopediapisa.qbmkwd.org/manolo-de-giorgi/ http://weekendnapoli.eebsig.org/ristorante-caserta-e-provincia/ valtur isola capo rizzuto canzone cartone animato pinocchio http://hotelplazamadonnacampiglio.lgyeas.org/gioco-scaricabile-pc-gratis/ 8ea4fcdde1a965ef95e68187f350c6f6
190.53.23.* 于 2007-07-17 11:02:25发表:
http://aeb617ecf44fda30bff344d9a07ce7d7-t.xkktxb.org aeb617ecf44fda30bff344d9a07ce7d7 http://aeb617ecf44fda30bff344d9a07ce7d7-b1.xkktxb.org aeb617ecf44fda30bff344d9a07ce7d7 http://aeb617ecf44fda30bff344d9a07ce7d7-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
201.139.152.* 于 2007-07-16 10:03:39发表:
aa35e45a9eabe8db6a0c904b7aede2c5 http://borghetto-ristorante.ywowql.com/ http://gradevole-lesbica-schizzata-figa.ywowql.com/ http://auto-moto-autoricambio.xsixxz.biz/ http://cellar-bari.knhtou.com/ http://270bis-cara-amica.fuypfr.biz/ http://stradella-pavia.xxmndb.biz/ http://annuncio-incontro-ticino-ch.fuypfr.biz/ http://programmi-per-foto.mxkrxs.com/ http://diabetici-milano.xsixxz.biz/ http://foto-donna-mentre-fanno-sesso-gratis.xxmndb.biz/ 8cff813cd5cdf93d908a9e43c4704dad
0.0.0.* 于 2007-07-16 09:53:05发表:
violent comics http://adultcomics8jul.tripod.com/violent_comics.html violent comics violent comics
brutal comics http://adultcomics8jul.tripod.com/brutal_comics.html brutal comics brutal comics
uncensored comics http://adultcomics8jul.tripod.com/uncensored_comics.html uncensored comics uncensored comics
bondage comics http://adultcomics8jul.tripod.com/bondage_comics.html bondage comics bondage comics
spanking comics http://adultcomics8jul.tripod.com/spanking_comics.html spanking comics spanking comics
84.126.78.* 于 2007-07-15 02:15:33发表:
df960a8991b96988f50467004a493e33 http://puliziastrada.gapphu.org/finanziamento-puglia-adottare-asino/ http://idro2000espositocarlo.gapphu.org/chocolat-copione/ http://dispensaattoamministrativo.mongnb.org/verona-locale-divertimento-giovane/ galleria vento mauri arnaldo http://sbloccocar400.eqacfr.org/illuminatore-infrarosso-esterno/ http://idro2000espositocarlo.gapphu.org/composizione-atmosfera/ http://psicologiasalute.seklde.org/ascolta-canzone-laura-pausini/ http://clubsoftair.jlmwbv.org/acquisto-immobile-lecco/ http://istruzioneprimariadisecondogrado.kqjhpm.org/last-minute-roma-capodanno/ a875aa102e91579b074fe29fa7a13e81
220.129.15.* 于 2007-07-13 19:03:35发表:
c38d2aae9744b66592a2abd6a70ab854 http://cane-bassotto-peluche.ubetii.org/ http://piano-autocontrollo-haccp.benlzg.org/ http://supporto-soffitto-tv-plasma.lldpzx.org/ http://video-porno-gratis-al-100.iwfpha.org/ http://video-3gp-download-ethel-booba.ubetii.org/ http://prevx-sys32exploer-dll.njylwy.org/ http://primi-tempi.iwfpha.org/ http://tatuaggio-slipknot.lldpzx.org/ http://i-malavoglia-ristorante.benlzg.org/ http://foto-giardino-naxos.njylwy.org/ 8c2a5fabd273020cebfaea52010ee4bb
124.54.154.* 于 2007-07-12 12:18:49发表:
b67cbcf45bee28d83549342121a7a563 http://ischia-hotel-viaggio.gbymyg.org/ http://ecografie-ostetrica.rtistm.org/ http://matura-vogliosa-com.uwlbfm.org/ http://tac-tomografia.rtistm.org/ http://bologna-scambio-coppia.mtfkmx.org/ http://eva-henger-peccati-gola.qeeuwf.org/ http://ferruccio-costa-fastweb-net-it.qpjnvy.org/ dynamic http://litri-di-saliva.mtfkmx.org/ http://2.tijrje.org/prodotti.asp?IDCat=15&solocat=1&pagina=&IDArt=&flag_viscarrello=1 d8d97f68bc274489b372d34e17b3a169
84.121.170.* 于 2007-07-11 05:05:49发表:
fec94ca714196ac49a214de40f458e1d http://1.ska4aj.org/pagina48.html http://11.ska4aj.net/pagina88.html http://19.ska4aj.org/pagina10.html http://24.ska4aj.com/pagina23.html http://18.ska4aj.org/pagina07.html http://7.skachaj.org/pagina10.html http://9.ska4aj.com/pagina16.html http://10.ska4aj.com/pagina42.html pagina75.html http://13.ska4aj.org/pagina32.html 53f688e2d0ae01a48f96ad8f8181d4f6
83.41.52.* 于 2007-07-09 20:17:42发表:
945a65fc815de45f79dff7383d8be769 http://fornitura-palestra.wywplu.org/ http://arturo-bianco-dirigente-tempo-indeterminato.bsvetd.org/ http://abbigliamento-moda-italy.uvrseh.org/ http://scanner-diapositiva-6x6.atersl.org/ http://sandro-marucci.dkzfpf.org/ http://bagno-uomini.bsvetd.org/ http://salone-di-maggio.atersl.org/ http://corsi-ricostruzione-unghia-sardegna.bsvetd.org/ http://batteria-power-book.gtimmg.org/ http://film-porno-la-classifica.fyicly.org/ 9b45a0bdde2cb75e21785d72ae4741f7
200.125.22.* 于 2007-07-08 10:41:27发表:
8a4c596edb34581810c103a554d4799c http://osso-bacino.djrtlt.org/ http://laboratorioceramicaartistica.ikwuex.org/cre-250/ http://madonna-di-campiglio-previsioni.djrtlt.org/ http://trucco-pesca-bolognese.jcddfk.org/ http://vendita-paul-frank-bari.jcddfk.org/ http://laboratorioceramicaartistica.ikwuex.org/mail-finemiro/ http://taglie-forti-on-line.mjifwc.org/ trucchi black xbox canzoni download sbirciare sotto cda9cd96507def8918671c23330ec82a
62.42.16.* 于 2007-07-07 04:36:25发表:
d257a966f5e9dd3d8e03e6789b96aee5 http://winni-the-pooh-roma.vtjfdr.org/ http://bilancioferrettigruppo2006.eoklgx.org/programma-per-traduzione/ http://coniugazioneverbotedeschionline.eduein.org/web-cam-san-pellegrino/ http://trucco-the-punisher.jwwdqu.org/ http://cerco-musa-roma.jwwdqu.org/ cartella documento http://fossachiarificatrice.eoklgx.org/laurea-disciplina-arto-musica-spettacolo/ http://animale-cane-regalo-pastore-de-caucaso.zikywm.org/ http://harddiskesterni300.eoklgx.org/gatto-foresta-norvegesi/ aragosta alla catalana 268af5f4294519a6b3a74dbb7c6fdf14
201.208.247.* 于 2007-07-03 11:34:46发表:
3167d996dec14d075327572c3144797e http://site-www-mangiarebene-com-celiachia.vfwana.org/ http://letto-materasso-vendita-on-line.urkgqk.org/ http://modello-scheda-video-pctv.vfwana.org/ http://foto-discoteca-charlie.appkbj.org/ http://molina-di-malo.appkbj.org/ http://cartucce-xerox.ktxvwk.org/ directory condivisa setup exe http://comune-di-mestrino.urkgqk.org/ codice humax http://foto-discoteca-charlie.appkbj.org/ 859eef08b4e5aeb7d2285ed40d693c72