锘??xml version="1.0" encoding="utf-8" standalone="yes"?>99精品伊人久久久大香线蕉,色欲久久久天天天综合网精品,久久永久免费人妻精品下载http://www.shnenglu.com/byc/category/17578.html瀛︿範璧勬枡璁板綍zh-cnMon, 29 Oct 2012 16:55:56 GMTMon, 29 Oct 2012 16:55:56 GMT60縐婚櫎bzImage鏂囦歡涓?1f8b08'涔嬪墠鍐呭錛屽瓨涓篻z鏂囦歡http://www.shnenglu.com/byc/archive/2012/10/29/194021.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Mon, 29 Oct 2012 08:02:00 GMThttp://www.shnenglu.com/byc/archive/2012/10/29/194021.htmlhttp://www.shnenglu.com/byc/comments/194021.htmlhttp://www.shnenglu.com/byc/archive/2012/10/29/194021.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/194021.htmlhttp://www.shnenglu.com/byc/services/trackbacks/194021.html 

#include <stdlib.h>
#include 
<stdio.h>

int _tmain(int argc, _TCHAR* argv[])
{
    FILE
* r=fopen("linux26","rb");
    FILE
* w=fopen("linux26.gz","wb");
    
int s=0;
    
for(;;)
    
{
        unsigned 
char c;
        
int l=fread(&c,1,1,r);
        
if(l>=1)
        
{
            
if(s==3)
            
{
                fwrite(
&c,1,1,w);
            }

            
else if(s==2)
            
{
                
if(c==0x08)
                
{
                    c
=0x1f;
                    fwrite(
&c,1,1,w);
                    c
=0x8b;
                    fwrite(
&c,1,1,w);
                    c
=0x08;
                    fwrite(
&c,1,1,w);
                    
++s;
                }

                
else
                
{
                    s
=0;
                }

            }

            
else if(s==1)
            
{
                
if(c==0x8b)
                
{
                    
++s;
                }

                
else
                
{
                    s
=0;
                }

            }

            
else if(s==0)
            
{
                
if(c==0x1f)
                
{
                    
++s;
                }

            }

        }

        
else
        
{
            
break;
        }

    }

    fclose(w);
    fclose(r);
    
return 0;
}

 



]]>
centos 6.2 鎵嬪姩緙栬瘧 apche php 緙栬瘧http://www.shnenglu.com/byc/archive/2012/01/11/163982.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Wed, 11 Jan 2012 03:14:00 GMThttp://www.shnenglu.com/byc/archive/2012/01/11/163982.htmlhttp://www.shnenglu.com/byc/comments/163982.htmlhttp://www.shnenglu.com/byc/archive/2012/01/11/163982.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/163982.htmlhttp://www.shnenglu.com/byc/services/trackbacks/163982.htmlwget http://apache.etoak.com//httpd/httpd-2.2.21.tar.gz
tar xzvf httpd-2.2.21.tar.gz
cd httpd-2.2.21
./configure --enable-so --enable-mods-shared=most
make
make install

vi /usr/local/apache2/conf/httpd.conf #緙栬緫閰嶇疆鏂囦歡
鎵懼埌錛?ServerName www.example.com:80
淇敼涓猴細ServerName localhost:80
鎵懼埌錛欴irectoryIndex index.html
淇敼涓猴細DirectoryIndex index.html index.php
鎵懼埌錛歄ptions Indexes FollowSymLinks
淇敼涓猴細Options FollowSymLinks #涓嶆樉紺虹洰褰曠粨鏋?br />澧炲姞
<FilesMatch \.php$>
    SetHandler application/x-httpd-php
</FilesMatch>

cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd 
vi /etc/init.d/httpd
 鍦ㄦ枃浠舵渶鍓嶉潰鎻掑叆涓嬮潰鐨勮錛屼嬌鍏舵敮鎸乧hkconfig鍛戒護錛?nbsp;
#!/bin/sh
# chkconfig: 2345 85 15
# description: Apache is a World Wide Web server.
錛堟敞錛氬湪榪愯綰?/3/4/5涓姞鍏ユ湇鍔★紝鍚姩欏哄簭85錛屽仠姝㈤『搴?5錛?br />
chkconfig --add httpd
service htpd start


yum install mysql-devel
yum install libpng-devel
yum install libjpeg-devel
yum install libxml2-devel

wget http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz/download
tar xzvf libmcrypt-2.5.8.tar.gz
cd libmcrypt-2.5.8
./configure
make
make install


//wget http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
//tar xzvf libiconv-1.14.tar.gz
//cd libiconv-1.14 
//./configure
//make
//make install



wget http://museum.php.net/php5/php-5.1.6.tar.gz
tar xzvf php-5.1.6.tar.gz
cd php-5.1.6
./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-gd --with-xlib --with-mysqli --with-jpeg-dir=/usr/lib/jpeg --with-zlib-dir=/usr/lib/zlib
//--with-mcrypt

make 
緙栬瘧鍑洪敊  ext/mysqli/mysqli_api.c:145: error: 'gptr' undeclared (first use in this function)
澶勭悊  ext/mysqli/mysqli_api.c and replace all occurrances of gptr with char*

make install

緙栬緫 httpd.conf 鏂囦歡浠ヨ皟鐢?PHP 妯″潡銆侺oadModule 琛ㄨ揪寮忓彸杈圭殑璺緞蹇呴』鎸囧悜 緋葷粺涓殑 PHP銆備互涓婄殑 make install 鍛戒護鍙兘宸茬粡瀹屾垚浜嗚繖浜涳紝浣嗗姟蹇呰媯鏌ャ?LoadModule php5_module modules/libphp5.so

cp php.ini-dist /usr/local/php5/etc/php.ini





PHP鎵╁睍mcrypt緙栬瘧鏃舵彁紺猴細configure: error: *** libmcrypt was not found


闇瑕佸畨瑁卨ibmcrypt+mhash+mcrypt

鍏ㄩ儴緙栬瘧瀹夎錛屽畨瑁呭埌mcrypt鐨勬椂鍊欏嚭鐜頒簡闂

./config
checking for libmcrypt - version >= 2.5.0... no
*** Could not run libmcrypt test program, checking why...
*** The test program compiled, but did not run. This usually means
*** that the run-time linker is not finding LIBMCRYPT or finding the wrong
*** version of LIBMCRYPT. If it is not finding LIBMCRYPT, you'll need to set your
*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point
*** to the installed location  Also, make sure you have run ldconfig if that
*** is required on your system
***
*** If you have an old version installed, it is best to remove it, although
*** you may also be able to get things to work by modifying LD_LIBRARY_PATH
***
configure: error: *** libmcrypt was not found

瑙e喅鏂規硶濡備笅錛氳繍琛?export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH

鐒跺悗make 錛?make install

瀹屾垚




]]>
centos5 php5.1.6 鍗囩駭鍒?php5.2.17http://www.shnenglu.com/byc/archive/2011/12/29/163068.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Thu, 29 Dec 2011 01:54:00 GMThttp://www.shnenglu.com/byc/archive/2011/12/29/163068.htmlhttp://www.shnenglu.com/byc/comments/163068.htmlhttp://www.shnenglu.com/byc/archive/2011/12/29/163068.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/163068.htmlhttp://www.shnenglu.com/byc/services/trackbacks/163068.htmlhttp://dl.iuscommunity.org/pub/ius/stable/Redhat/5/i386/ius-release-1.0-8.ius.el5.noarch.rpm
root@linuxbox ~]# wget http://dl.iuscommunity.org/pub/ius/stable/Redhat/5/i386/epel-release-5-4.noarch.rpm
root@linuxbox ~]# rpm -Uvh ius-release*.rpm epel-release*.rpm
$ sudo yum install yum-plugin-replace
[root@linuxbox ~]# yum replace php --replace-with php52

鏉ユ簮  http://wiki.iuscommunity.org/Doc/ClientUsageGuide


浠諱竴縐嶅姙娉?br />

CentOS 5.x 緋葷粺涓嬩嬌鐢▂um 鍗囩駭php鍒?.2.x 鏈鏂逛究鏂規硶

鍏堝皢浠ヤ笅鍦板潃瀵煎叆銆?/p>

# rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

# vi /etc/yum.repos.d/CentOS-Base.repo 澧炲姞涓嬮潰淇℃伅

[utterramblings]
name=Jason's Utter Ramblings Repo
baseurl=http://www.jasonlitka.com/media/EL$releasever/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

鎵ц鍛戒護錛岃嚜鍔ㄥ崌綰с?br />
yum update php -y
yum install libmcrypt -y



]]>
vsftpdhttp://www.shnenglu.com/byc/archive/2011/12/27/162898.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Tue, 27 Dec 2011 03:39:00 GMThttp://www.shnenglu.com/byc/archive/2011/12/27/162898.htmlhttp://www.shnenglu.com/byc/comments/162898.htmlhttp://www.shnenglu.com/byc/archive/2011/12/27/162898.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/162898.htmlhttp://www.shnenglu.com/byc/services/trackbacks/162898.htmlyum install vsftpd
adduser -d /var/www/html -g ftp -s /sbin/nologin ftptest
passwd ftptest
/etc/vsftpd/vsftpd.conf
鍙兘璁塊棶鑷繁鐨勭洰褰?br />chroot_local_user=yes



]]>
centos vnc 鏈嶅姟 閰嶇疆http://www.shnenglu.com/byc/archive/2011/12/08/161733.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Thu, 08 Dec 2011 01:56:00 GMThttp://www.shnenglu.com/byc/archive/2011/12/08/161733.htmlhttp://www.shnenglu.com/byc/comments/161733.htmlhttp://www.shnenglu.com/byc/archive/2011/12/08/161733.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/161733.htmlhttp://www.shnenglu.com/byc/services/trackbacks/161733.html1錛岄鍏堢‘璁や綘鏈嶅姟鍣ㄦ槸鍚﹂厤緗簡VNCSERVER錛屽彲浠ュ湪鍛戒護琛屼笅鏁插叆浠ヤ笅鍛戒護鏌ョ湅錛?
rpm -qa |grep vnc 
yum isntall vnc-server


2 鍚姩VNCSERVER錛岀涓嬈″惎鍔╒NCSERVER浼氭彁紺鴻緭鍏ュ瘑鐮侊紝榪欓噷鍒嗕負綆$悊鍛樿處鎴峰強鏅氳處鎴鳳紝鍚姩鏂瑰紡鐣ユ湁鎵涓嶅悓銆?
[root@localhost /]# vncserver
You will require a password to access your desktops.
Password: 123456 #杈撳叆vnc 榪炴帴瀵嗙爜
Verify: 123456 #紜vnc瀵嗙爜
xauth: creating new authority file /root/.Xauthority
New ‘localhost.localdomain:1 (root)’ desktop is localhost.localdomain:1
Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/localhost.localdomain:1.log


3 姣忎釜鐢ㄦ埛閮藉彲浠ュ惎鍔ㄨ嚜宸辯殑VNCSERVER榪滅▼妗岄潰錛屽悓鏃舵瘡涓敤鎴峰彲浠ュ惎鍔ㄥ涓猇NCSERVER榪滅▼妗岄潰錛屽畠浠敤ip鍔犵鍙e彿錛歩p:1銆乮p:2銆乮p:3 鏉ユ爣璇嗐佸尯鍒嗭紝浣跨敤鍚屼竴绔彛浼氫嬌鍙﹀鐧誨綍鐨勭敤鎴瘋嚜鍔ㄩ鍑恒傚彟錛孷NCSERVER鐨勫ぇ閮ㄥ垎閰嶇疆鏂囦歡鍙婃棩蹇楁枃浠墮兘鍦ㄧ敤鎴穐ome鐩綍涓?vnc鐩綍涓嬨?
鐢ㄦ埛鍙互鑷畾涔夊惎鍔ㄥ彿鐮佸錛?
[ceboy@localhost /]$ vncserver :2 #娉ㄦ剰:2鍓嶉潰涓瀹氳鏈夌┖鏍箋?
A VNC server is already running as :2


3 閰嶇疆gnome妗岄潰
濡傛灉浣犳槸gnome妗岄潰錛岄偅涔堜綘闇瑕佷慨鏀?root/.vnc/xstartup鐨勯厤緗枃浠躲?
[root@localhost .vnc]# vi xstartup
#!/bin/sh
# Uncomment the following two lines for normal desktop:
# unset SESSION_MANAGER
# exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
gnome-session & #娣誨姞榪欎竴鍙ユ槸榪炴帴鏃朵嬌鐢╣nome 妗岄潰鐜
#twm &

璁劇疆淇敼瀹屾瘯鏈濂芥槸閲嶅惎涓嬈$郴緇燂紝鍚﹀垯璁劇疆涓嶄細鐢熸晥銆傛垜閲囩敤鐨勬柟娉曟槸鏉姝籚NCSERVER榪涚▼鍐嶉噸榪愯VNCSERVER銆?

[root@localhost .vnc]#vncserver -kill :1 #榪欓噷浣犲惎鍔╲ncserver鏃舵槸浠涔堢鍙e彿瑕佸搴斾笂銆?
[root@localhost .vnc]#vncserver :1 #閲嶅惎VNCSERVER錛屾敞鎰?1鍓嶉潰涓瀹氳鏈夌┖鏍箋?

4錛岃緗敤鎴蜂俊鎭強鍒嗚鯨鐜囥?

[root@localhost: ~]#vi /etc/sysconfig/vncservers

VNCSERVERS=”1:root 2:ceboy” #姝ゅ娣誨姞鐢ㄦ埛錛屼竴鑸彧娣誨姞涓涓?:root涔熷氨琛屼簡銆?
VNCSERVERARGS[1]=”-geometry 800×600 -nolisten tcp -nohttpd -localhost”
-nolisten tcp -nohttpd
濡傛灉浣犺閫忛亷 Browser 渚嗕嬌鐢?VNC,璜嬬Щ闄ら欒ō瀹?
-localhost
濡傛灉浣犲彧鍏佽ūlocal(127.0.0.1) 閫忛亷 Browser 渚嗛g祼 VNC.璜嬪姞鍏ラ欒ō瀹?/span>

鍙﹀涔熷彲浠ラ氳繃鍛戒護琛屼復鏃朵慨鏀瑰垎杈ㄧ巼鍙婅壊娣憋紝榪欑鏂瑰紡閲嶅惎鍚庡氨浼氫涪澶憋紝榪欓噷鏆傛椂鐢ㄤ笉鍒幫紝鍛戒護濡備笅錛?
[root@localhost: ~]#vncserver -geometry 800×600 #璁劇疆vncserver鐨勫垎杈ㄧ巼
[root@localhost: ~]#vncserver -depth 16 #璁劇疆vncserver鐨勮壊娣?/span>
緗瘑鐮?br />
#vncpasswd




5錛屽悓涓涓樉紺哄櫒鍙互榪炴帴澶氫釜瀹㈡埛鏈?
#vncserver -alwaysshared





]]>
centos groupinstall http://www.shnenglu.com/byc/archive/2011/11/26/161009.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Sat, 26 Nov 2011 13:47:00 GMThttp://www.shnenglu.com/byc/archive/2011/11/26/161009.htmlhttp://www.shnenglu.com/byc/comments/161009.htmlhttp://www.shnenglu.com/byc/archive/2011/11/26/161009.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/161009.htmlhttp://www.shnenglu.com/byc/services/trackbacks/161009.htmlyum groupinstall "DNS Name Server"

yum groupinstall "Web Server"
yum groupinstall "Mail Server"

yum groupinstall "MySQL Database"

yum groupinstall "Development Tools" 
yum groupinstall "GNOME Desktop Environment"

yum groupinstall "X Window System"
yum groupinstall "KDE (K Desktop Environment)"

yum groupremove

rpm -e *
"error: %preun(*) scriptlet failed, exit status 1"
瑙e喅鏂規硶涓哄姞 --noscripts 鏍囪鏉ュ垹闄PM銆?--noscripts 鐩稿綋浜?--nopre --nopost --nopreun --nopostun銆?/font>



]]>
grub4dos menu.lsthttp://www.shnenglu.com/byc/archive/2011/11/26/160995.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Sat, 26 Nov 2011 05:00:00 GMThttp://www.shnenglu.com/byc/archive/2011/11/26/160995.htmlhttp://www.shnenglu.com/byc/comments/160995.htmlhttp://www.shnenglu.com/byc/archive/2011/11/26/160995.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/160995.htmlhttp://www.shnenglu.com/byc/services/trackbacks/160995.html
title centos57-gui
find --set-root /centos57/vmlinuz
kernel /centos57/vmlinuz
initrd /centos57/initrd.img

title centos57-text
find --set-root /centos57/vmlinuz
kernel /centos57/vmlinuz text
initrd /centos57/initrd.img

title pbr
rootnoverify (hd0,3)
chainloader +1

title syslinux
find --set-root /syslinux.BIN
chainloader /syslinux.BIN


--ks

#Use CDROM installation media
#cdrom
harddrive  --partition=/dev/hd3  --dir=/

#System bootloader configuration
bootloader --location=none
bootloader --location=mbr --driveorder=sda,sdb

title elastix
find --set-root /menu.lst
kernel /elastix/vmlinuz ks=hd:sdb4:/elastix/ks_default.cfg ramdisk_size=8192
initrd /elastix/initrd.img

title centos6livecd
kernel /LiveOS/vmlinuz0 root=live:CDLABEL=GRUB rootfstype=auto ro liveimg quiet nodiskmount nolvmmount  rhgb vga=791 rd.luks=0 rd.md=0 rd.dm=0
initrd /LiveOS/initrd0.img






]]>
VNC(Virtual Network Computing) http://www.shnenglu.com/byc/archive/2011/11/24/160929.html鍏彾鑽?/dc:creator>鍏彾鑽?/author>Thu, 24 Nov 2011 12:47:00 GMThttp://www.shnenglu.com/byc/archive/2011/11/24/160929.htmlhttp://www.shnenglu.com/byc/comments/160929.htmlhttp://www.shnenglu.com/byc/archive/2011/11/24/160929.html#Feedback0http://www.shnenglu.com/byc/comments/commentRss/160929.htmlhttp://www.shnenglu.com/byc/services/trackbacks/160929.htmlhttp://blog.yam.com/iwinblue/article/14961544
Step 0:綈′粙
Step 1:妾㈡煡浣犵殑緋葷當鏄惁鏈夋彁渚?VNC 宸ュ叿
Step 2:VNC鐨勮ō瀹氭獢
Step 3:VNC 鐨?password
Step 4:妾㈡煡 VNC 鏈嶅嫏鏄惁鍟熷嫊
Step 5:鎸囧畾鐢ㄥ摢鍊?XWindow
Step 6:VNC Viewer
Step 7:VNC via Browser

Step 0:綈′粙
VNC(Virtual Network Computing) 鏄彲浠ラ仩绔仚鎺?Linux 妗岄潰鐨勬湇鍕?

Step 1:妾㈡煡浣犵殑緋葷當鏄惁鏈夋彁渚?VNC 宸ュ叿
[root@unsvr root] # rpm -aq | grep -i vnc
vnc-server-version
vnc-version

濡傛灉娌掓湁闂滀總鍙互鍒?VNC 鐨勫畼鏂圭恫绔欎笅杓?http://www.realvnc.com

Step 2:VNC鐨勮ō瀹氭獢
VNC鐨勮ō瀹氭獢瀛樻斁鍦?/etc/sysconfig/vncservers
[root@unsvr root] # vi /etc/sysconfig/vncservers
--------------------------------------------------------
VNCSERVERS="2:root"
VNCSERVERARGS[2]="-genometry 800*600 -nolisten tcp -nohttpd -localhost"
--------------------------------------------------------

VNCSERVERS="2:root"
涓婇潰鎰忔濇槸瑾?鎴戝戣鍟熷嫊涓鍊?VNC 鍦?port 5900+2 鍗?5902 鐨勬剰鎬?浣跨敤鑰呯偤 root.

VNCSERVERARGS[2]="-genometry 800*600 -nolisten tcp -nohttpd -localhost"
-genometry 800*600
x-windows鐨勮В鏋愬害鐐?800*600
-nolisten tcp -nohttpd
濡傛灉浣犺閫忛亷 Browser 渚嗕嬌鐢?VNC,璜嬬Щ闄ら欒ō瀹?
-localhost
濡傛灉浣犲彧鍏佽ūlocal(127.0.0.1) 閫忛亷 Browser 渚嗛g祼 VNC.璜嬪姞鍏ラ欒ō瀹?br />

Step 3: VNC 鐨?password
鍩烘湰涓?VNC 鐨?password 鐒℃硶浣跨敤 /etc/passwd,鎵浠ヨ鑷繁璦畾.
[root@unsvr root] # vncpasswd
Password:
Verify:
閫欐槸鐐?root 浣跨敤鑰呬締璦畾.濡傛灉瑕佽ō瀹氬叾浠栦嬌鐢ㄨ呰珛 #su - user 杞夋彌寰屽湪璦畾.

Step 4:妾㈡煡 VNC 鏈嶅嫏鏄惁鍟熷嫊
[root@unsvr ~]# service vncserver start
濡傛灉瑕佽畵姣忔闁嬫鏅傞兘鑳藉暉鍕?vnc server,璜嬮嵉鍏ヤ笅闈㈡寚浠?
[root@unsvr ~]# chkconfig vncserver on

[root@unsvr root]# netstat -tulnp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 0.0.0.0:5802 0.0.0.0:* LISTEN 15287/Xvnc
tcp 0 0 0.0.0.0:5902 0.0.0.0:* LISTEN 15287/Xvnc
tcp 0 0 0.0.0.0:6000 0.0.0.0:* LISTEN 15019/X


瑾槑:
port 5802 鏄鄲 Web Browser 浣跨敤.
port 5902 鏄鄲 VNCViewer 浣跨敤.

Step 5:鎸囧畾鐢ㄥ摢鍊?XWindow
鎸囧畾鐢ㄥ摢鍊?XWindow 鏄ō瀹氬湪 $HOME/.vnc/xstartup 瑁?
---------------------------------------------------------------------------
#!/bin/sh
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
---------------------------------------------------------------------------
闋愯ō鐨?XWindow鐐?twm濡傛灉鏈夐渶瑕佸叾浠栫殑璜嬭ō瀹氭垚涓嬮潰鐨?XWindow.
gnome-session & (==> for GNOME)
startkde & (==> for KDE)


Step 6:VNC Viewer
鍦?Linux 涓嬪彲浠ョ洿鎺ヤ嬌鐢?br />[root@unsvr root]#vncviewer

涓嶉亷 Windows 涓︽矑鏈夊畨瑁?鎵浠ラ渶瑕佽嚦 http://www.realvnc.com 涓嬭級.

Step 7:VNC via Browser
Windows:
涓嶆兂涓嬭級涓鍫嗘湁鐨勬矑鏈夌殑,鍙互鑰冩叜浣跨敤 web browser鐨勬柟寮忎締閫g祼.涓嶉亷鍓嶆彁鏄渶瑕佸姞瑁?Java Runtime Environment (JRE) http://www.java.com
鍦?Windows 搴曚笅闁?browser,杓稿叆綞插潃,鍐嶅姞涓?port number : 5802 灝卞彲浠ラ忛亷 Web 鏂瑰紡閫g祼.

Linux:
瀹夎 java runtime environment
浣犲彲浠ュ湪 java 鐨勫畨瑁濈洰閷勪笅 /usr/jave/plugin/i386/ns7/ 鎵懼埌 libjavaplugin_oji.so 妾?
鍦?~/.mozilla/plugins/ 鐩寗瑁″仛涓鍊嬬铏熼g祼鍒?libjavaplugin_oji.so錛屼笉鍙互鐩存帴瑜囪=銆?

[root@unsvr root]# cd ~/.mozilla/plugins/
[root@unsvr root]# ln -s /usr/java/jre1.5.0_04/plugin/i386/ns7/libjavaplugin_oji.so

鍙互鍙冭?Mozilla 鐨勭恫绔?br />http://wiki.moztw.org/index.php/Plugins_%E7%9A%84%E5%AE%89%E8%A3%9D

鍙︿竴:
鏂頒竴綃? linux 寮鏈哄惎鍔?oracle


涓嬭澆鍦板潃錛歨ttp://www.realvnc.com/download.html

鍙傝冭祫鏂?

http://liy.slat.org/study/tips/vnc.html

http://www.realvnc.com

< 絎竴鏂規硶>

閬犵鎺у埗涓鐩存槸鍊嬬悊鎯崇殑宸ヤ綔鐩錛屼綘涓嶄絾鍙互鍦ㄦ湰姍熶嬌鐢ㄩ浕鑵︼紝鍦ㄩ洟闁嬩箣寰岋紝閭勫彲浠ヤ嬌鐢ㄧ恫璺嬌鐢ㄩ仩绔殑鍔熻兘渚嗙辜綰屼綘鏈畬鐨勫伐浣溿?br />鐝懼湪甯傞潰涓婃渶嫻佽鐨?Symantec PcAnywhere 涔熸槸閫欑ó鍔熻兘錛屼絾鏄欐槸瑕佽姳 閷㈢殑錛岃屼笖閭勮牷璨寸殑錛岀暥鐒訛紝瀹冮倓鍖呭惈浜嗕竴浜涘叾瀹冪殑閫查殠鍔熻兘銆傜劧鑰岋紝濡傛灉浣犲彧 闇瑕佸柈绱斿彧瑕佸彲浠ラ仩绔帶鍒朵綘鐨勯浕鑵︾殑瑭憋紝鐣剁劧灝變笉鐢ㄥ姝ゆ闆炵敤鐗涘垁浜嗭紝VNC (Virtual Network Computing) 姝f槸鎴戝戞墍闇瑕佺殑杌熼珨錛屼粬涓嶄絾鏄畬鍏?Free 鐨勶紝浣犲彲浠ユ嬁鍒頒粬鐨勫彲鍩瘋妾旓紝鎴栨槸濡傛灉浣犵殑鑸堣叮鐨勮┍錛屼篃鍙互鎵懼埌浠栫殑 Source 渚涗綘鐮旂┒錛屾渶閲嶈鐨勪竴榛烇紝浠栫殑妾旀寰堝皬錛屽彧闇瑕佷竴鐗囩鐗囧氨澶犱簡銆?br />
閫欑瘒鏂囩珷鍦?RedHat 8 銆丷edHat 9 鍜?Fedora 1 涓婃脯閬庯紝鍙互姝e父鍩瘋銆?br />
1. 棣栧厛錛屾垜鍊戝戣鍏堜笅杓?VNC 渚嗗畨瑁濓紝鍋囪ō鎴戝戠従鍦ㄨ鍦ㄨ嚜宸辯殑瀹剁洰閷勮! 鐨?VNC/vncgo 鐩寗瑁°?br />
# cd ~
# wget http://www.realvnc.com/dist/vnc-3.3.7-x86_linux.tar.gz
# tar -zxvf vnc-3.3.7-x86_linux.tar.gz
# mv vnc-3.3.7-x86_linux vnc
# cd vnc
# mkdir -p ~/VNC/vncgo
# ./vncinstall ~/VNC/vncgo


2. 鎺ヨ憲錛屾垜鍊戝氨瑕佽ō瀹氱挵澧冭畩鏁革紝鍥犵偤 VNC 鍦ㄥ暉鍕曠殑鏅傚欙紝鏈冨幓鎵劇浉闂滅殑妾旀錛屾墍浠ヤ竴瀹氳鍏堟寚瀹?PATH 鐨勮畩鏁搞傚鏋滀綘鏄?root錛屼綘鍙互鎶婁笅闈㈢殑涓夎鎸囦護瀵埌 /etc/profile 瑁¢潰銆?br />
# PATH="$PATH":~/VNC/vncgo
# export $PATH
# echo $PATH
/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin:/UserHomeDir/VNC/vncgo

3. 浠ヤ笂灝卞畨瑁濆畬鎴?VNC Server 錛岀従鍦ㄥ氨闁嬪渚嗙帺鐜╁惂錛佸厛闁嬪暉絎竴嬈★紝璁撲粬
鐢㈢敓蹇呰鐨勬獢妗堬紝濡傛灉鏄涓嬈″煼琛岋紝灝辨渻瑕佷綘杓稿叆鐧誨叆鐨勫瘑紕兼墠琛岋紒

# vncserver

4. 鐒跺緦闂滈枆 VNC

# vncserver -kill :1

5. 淇敼 X 鐨勮ō瀹? 閫欐ǎ浣犵殑閬犵妗岄潰鎵嶆渻緹庣編鐨?

# cd ~/.vnc/xstartup
# vi xstartup
________________________________________________________________
#!/bin/sh
#涓嬮潰閮借ɑ瑙h搗渚?br />#杓稿叆涓嬮潰閫欎竴琛?br />/etc/X11/xinit/Xclients
#[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
#xsetroot -solid grey
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
:______________________________________________________________



6. 鏈寰? 灝遍枊濮?VNC 鍚?br />
# vncserver

7. 閬犵鎺у埗
鍩瘋 vncviewer 錛屼嬌鐢?VNC Viewer 渚嗙湅錛岃幾鍏P:num錛圛P 鏄富姍熺殑浣嶇疆錛宯um 鏄?vnc 鐨勫暉鍕曢爡鐩紝闁嬪暉 vnc 鏈嶅嫏鏅傛渻鏈夋彁紺猴級

< 絎簩縐嶆柟娉?gt;

(1)tar -xvf vnc-4.0-x86.tar

(2)cd vnc-4.0-x86

(3) ./vncinstall /usr/local/bin

(4) mkdir -P /usr/local/vnc/classes

(5) cp java/* /usr/local/vnc/classes

(6) vncserver 鍚姩錛屽彲浠ユ甯歌繍琛屼簡 鍙互閫氳繃 netstat -an | grep 01鏌ョ湅绔彛鏄惁姝e父鍚姩錛屽鏋滆鐪嬪埌妗岄潰鍙寜濡備笅鏂規硶錛?br />
vi ~/.vnc/xstartup鏂囦歡涓姞鍏ュ涓嬩袱鍙ワ細

unset SESSION_MANAGER

exec /etc/X11/xinit/xinitrc 濡傛湁/etc/X11/xinit/Xclients 姝ゅ彞娉ㄦ帀

鍙︿簩:

Vnc Server 4.1.2 寤虹疆on CentOS 5
adj 鐧艱〃鏂? 2007-11-29 21:57 渚嗘簮: ADJ綞茶礬鎺ц偂闆嗗湗

Check what's installed
First check if you already have them installed on your system, open a terminal and type:
CODE:

$ rpm -qa|grep vnc
vnc-server-4.1.1-36
vnc-4.1.1-36
If you get an output something like this then you're all ready, if not you need to install them via yum.

Add a user(s)
Next we need to add at least 1 VNC user, open the file /etc/sysconfig/vncservers as root and add the information shown:
CODE:

$ vi /etc/sysconfig/vncservers

# The VNCSERVERS variable is a list of display:user pairs.
#
# Uncomment the lines below to start a VNC server on display :2
# as my 'myusername' (adjust this to your own). You will also
# need to set a VNC password; run 'man vncpasswd' to see how
# to do that.
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted! For a secure way of using VNC, see
# .

# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.

# Use "-nohttpd" to prevent web-based VNC clients connecting.

# Use "-localhost" to prevent remote VNC clients connecting except when
# doing so through a secure tunnel. See the "-via" option in the
# `man vncviewer' manual page.

VNCSERVERS="1:bobpeers"
VNCSERVERARGS[1]="-geometry 1024x768 -depth 16"
The important part is the VNCSERVERS="1:bobpeers", this sets up a users for the vnc server, you can add as many as you like here. The VNCSERVERARGS[1] line refers to the arguments for user 1, in this case the only user. Geometry sets the size and depth sets the colour depth, you can adjust these to suit your preferences but in my case the client machine has a resolution of 1024x768 and the depth 16 makes the connection a bit faster since the less information that needs to be sent the more responsive the session will feel.

Knowing which port to use
It's also important to note the session number user as this will tell us which port vncserver will listen on. Remember the Gnome Remote Desktop asked us to use computername:0 as the connection string, the number needs to be added to 5900 to get the listening port. In this case we need to use port 5901 since we are using session 1. In the same way we could use any number, for example:
CODE:

VNCSERVERS="2000:bobpeers"
VNCSERVERARGS[2000]="-geometry 1024x768 -depth 16"
In this case we need to use port 5900+2000 so port 7900.

Setting a password
To add some security we need to add a password that must be given before a connection can be established, open a terminal and type:
CODE:

$ vncpasswd
Password:
Verify:
This creates a hidden folder called .vnc in your home folder containing the password file.

Starting the server and startup options
To start the server we type the command 'vncserver' and the session you wish to start (if you have set up more than 1 entry in the /etc/sysconfig/vncservers file:
CODE:

$ vncserver :1
Starting VNC server: 1:bobpeers
New 'linux.bobpeers:1 (bobpeers)' desktop is linux.bobpeers:1

Starting applications specified in /home/bobuser/.vnc/xstartup
Log file is /home/bobuser/.vnc/linux.bobpeers:1.log

[ OK ]
Now the server is started and a user could connect, however they will get a plain grey desktop by default as the connection will not cause a new session of X to start by default, to fix this we need to edit the startup script in the .vnc folder in your home directory.
CODE:

$ vi ~/.vnc/xstartup

#!/bin/sh

# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
As the file says make sure the two lines at the top are uncommented by removing the leading # sign. Next we need to restart vncserver to pick up the changed we just made. To restart the vncserver we need to kill the process and start a new one as root:
CODE:

$ vncserver -kill :1
Killing Xvnc process ID 13728

$ vncserver :1
Starting VNC server: 1:bobpeers
New 'linux.bobpeers:1 (bobpeers)' desktop is linux.bobpeers:1

Starting applications specified in /home/bobuser/.vnc/xstartup
Log file is /home/bobuser/.vnc/linux.bobpeers:1.log

[ OK ]
PS: 娓│鏅傜櫦鐝?$Home/.vnc/xstartup 闇瑕佹湁 +x 鐨勬瑠闄?..瑕佷笉鐒剁櫥鍏ラ仩绔富姍熸檪鏈冪湅涓嶅埌GDM鐨勭暙闈?..鍙兘瑕佹敞鎰忎竴涓?br />

鐩擱棞鏂囩珷渚嗚嚦:
http://bobpeers.com/linux/vnc.php

鍙︿簩:
Configuring the VNC server/viewer in Linux.
Page contents
Overview of VNC
Gnome Remote Desktop (vino)
vncserver and viewer
Allowing remote connections
Overview of VNC
VNC, or Virtual Networked Computing, is a way of controlling a remote computer just as though you are sitting in front of it. In the Windows world it is also known as remote desktop but it's normally referred to as VNC in the Linux world. All that happens is that you connect using a VNC client to a remote computer running the VNC server, then an image of the remote desktop is transmitted to your local computer and you can see and control the desktop just as though you are there since all keyboard and mouse commands are sent from your client machine to the server.

Gnome Remote Desktop
If you are running the Gnome desktop on Fedora Core then you already have a VNC server built in. Click on the Fedora icon > Desktop > Preferences > Remote Desktop to open the dialog shown.



The screen is pretty self explanatory but basically when set up this way another computer can connect to your computer using the command listed on the dialog. There are a few important things to note, you must open port 5900 on the server for this to work since by default the Gnome Remote Desktop (called vino) listens on this port, also the person connecting will see the same session that you are currently logged in as. This means that any programs you have open will also be visible to the client, of course this is very useful if you are helping someone remotely.

A more flexible way to use VNC is to install the VNC server and client software via yum, these are rpm's based on RealVNC.

vncserver and vncviewer
Check what's installed
First check if you already have them installed on your system, open a terminal and type:

$ rpm -qa|grep vnc
vnc-server-4.1.1-36
vnc-4.1.1-36

If you get an output something like this then you're all ready, if not you need to install them via yum.

Add a user(s)
Next we need to add at least 1 VNC user, open the file /etc/sysconfig/vncservers as root and add the information shown:

$ vi /etc/sysconfig/vncservers

# The VNCSERVERS variable is a list of display:user pairs.
#
# Uncomment the lines below to start a VNC server on display :2
# as my 'myusername' (adjust this to your own). You will also
# need to set a VNC password; run 'man vncpasswd' to see how
# to do that.
#
# DO NOT RUN THIS SERVICE if your local area network is
# untrusted! For a secure way of using VNC, see
#
.

# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.

# Use "-nohttpd" to prevent web-based VNC clients connecting.

# Use "-localhost" to prevent remote VNC clients connecting except when
# doing so through a secure tunnel. See the "-via" option in the
# `man vncviewer' manual page.

VNCSERVERS="1:bobpeers"
VNCSERVERARGS[1]="-geometry 1024x768 -depth 16"

The important part is the VNCSERVERS="1:bobpeers", this sets up a users for the vnc server, you can add as many as you like here. The VNCSERVERARGS[1] line refers to the arguments for user 1, in this case the only user. Geometry sets the size and depth sets the colour depth, you can adjust these to suit your preferences but in my case the client machine has a resolution of 1024x768 and the depth 16 makes the connection a bit faster since the less information that needs to be sent the more responsive the session will feel.

Knowing which port to use
It's also important to note the session number user as this will tell us which port vncserver will listen on. Remember the Gnome Remote Desktop asked us to use computername:0 as the connection string, the number needs to be added to 5900 to get the listening port. In this case we need to use port 5901 since we are using session 1. In the same way we could use any number, for example:

VNCSERVERS="2000:bobpeers"
VNCSERVERARGS[2000]="-geometry 1024x768 -depth 16"

In this case we need to use port 5900+2000 so port 7900.

Setting a password
To add some security we need to add a password that must be given before a connection can be established, open a terminal and type:

$ vncpasswd
Password:
Verify:

This creates a hidden folder called .vnc in your home folder containing the password file.

Starting the server and startup options
To start the server we type the command 'vncserver' and the session you wish to start (if you have set up more than 1 entry in the /etc/sysconfig/vncservers file:

$ vncserver :1
Starting VNC server: 1:bobpeers
New 'linux.bobpeers:1 (bobpeers)' desktop is linux.bobpeers:1

Starting applications specified in /home/bobuser/.vnc/xstartup
Log file is /home/bobuser/.vnc/linux.bobpeers:1.log

[ OK ]

Now the server is started and a user could connect, however they will get a plain grey desktop by default as the connection will not cause a new session of X to start by default, to fix this we need to edit the startup script in the .vnc folder in your home directory.

$ vi ~/.vnc/xstartup

#!/bin/sh

# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &

As the file says make sure the two lines at the top are uncommented by removing the leading # sign. Next we need to restart vncserver to pick up the changed we just made. To restart the vncserver we need to kill the process and start a new one as root:

$ vncserver -kill :1
Killing Xvnc process ID 13728

$ vncserver :1
Starting VNC server: 1:bobpeers
New 'linux.bobpeers:1 (bobpeers)' desktop is linux.bobpeers:1

Starting applications specified in /home/bobuser/.vnc/xstartup
Log file is /home/bobuser/.vnc/linux.bobpeers:1.log

[ OK ]

Using vncviewer
To start the viewer type:

$ vncviewer localhost:5901
This open a dialog as shown for us to enter our password we set earlier, enter the password and you should now see a copy of your desktop. Note that unlike the Gnome Remote Desktop this has started a new session of X so any applications open on the host machine are not visible to the new session, it's basically a whole new logon running at the same time.

If you just type 'vncviewer' at the prompt then you will asked for the host to connect to, then you can type localhost:5901 for example. Remember to use the correct port number when connecting, if you set your VNCSERVERS to be 2000:myname then you would need to connect on localhost:7900.



Stopping the vncserver
There are two ways to stop the server, either as root:

$ /sbin/service vncserver stop
Shutting down VNC server: 1:bobpeers [ OK ]

or you can explicitly kill a particular session without being root:

$ vncserver -kill :1
Killing Xvnc process ID 13728

Just replace the 1 with the vnc session you wish to stop.

Allowing remote connections
So far we have only connected to our own computer using localhost so we have not needed to open any ports in the firewall, however if we want to allow remote connection we will have to do the following. This can either be done from the command line or using system-config-security if you have it installed.

Using system-config-security to opens ports.
First we'll look into the GUI system-config-security. Go to the Fedora start menu > Desktop > Administration > Security Level and Firewall, then type your root password when prompted to see this:



Click on other ports at the bottom and enter the port you wish to open, 5901 in my case, select tcp, then click OK and OK again to save your settings. That's all there is to it, but remember to close the port again when you are finished.



Editing the iptables manually to opens ports.
To do the same from the command line add the line in bold to the file /etc/sysconfig/iptables while logged in as root:

# Firewall configuration written by system-config-securitylevel
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:RH-Firewall-1-INPUT - [0:0]
-A INPUT -j RH-Firewall-1-INPUT
-A FORWARD -j RH-Firewall-1-INPUT
-A RH-Firewall-1-INPUT -i lo -j ACCEPT
-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT
-A RH-Firewall-1-INPUT -p 50 -j ACCEPT
-A RH-Firewall-1-INPUT -p 51 -j ACCEPT
-A RH-Firewall-1-INPUT -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT
-A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT
-A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT
-A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited
COMMIT

Finally we need to restart the iptables service to reload the changes.

$ sudo /sbin/service iptables restart
Flushing firewall rules: [ OK ]
Setting chains to policy ACCEPT: filter [ OK ]
Unloading iptables modules: [ OK ]
Applying iptables firewall rules: [ OK ]
Loading additional iptables modules: ip_conntrack_netbios_n[ OK ]

Connecting from the remote machine.
Now from the remote client computer start up vncviewer but this time use the IP address of the host computer followed by the port number. So on my home network this might be:

$ vncviewer 192.168.1.105:5901




]]>
ubuntu DVD璁劇疆鏈湴鏇存柊婧?/title><link>http://www.shnenglu.com/byc/archive/2011/08/18/153713.html</link><dc:creator>鍏彾鑽?/dc:creator><author>鍏彾鑽?/author><pubDate>Thu, 18 Aug 2011 03:16:00 GMT</pubDate><guid>http://www.shnenglu.com/byc/archive/2011/08/18/153713.html</guid><wfw:comment>http://www.shnenglu.com/byc/comments/153713.html</wfw:comment><comments>http://www.shnenglu.com/byc/archive/2011/08/18/153713.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.shnenglu.com/byc/comments/commentRss/153713.html</wfw:commentRss><trackback:ping>http://www.shnenglu.com/byc/services/trackbacks/153713.html</trackback:ping><description><![CDATA[ubuntu DVD璁劇疆鏈湴鏇存柊婧?br />1 緙栬緫sources.list<br />鎵ц錛歴udo gedit /etc/apt/sources.list<br />澶囦喚涔嬪悗鍏ㄩ儴鍒犻櫎鍐欏叆濡備笅涓琛岋紒<br />deb "<a href="file:///media/Ubuntu">file:///media/Ubuntu</a> 11.04 i38" natty main restricted<br />3 鏇存柊涓涓?br />鎵ц錛歴udo apt-get update<br /><img src ="http://www.shnenglu.com/byc/aggbug/153713.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.shnenglu.com/byc/" target="_blank">鍏彾鑽?/a> 2011-08-18 11:16 <a href="http://www.shnenglu.com/byc/archive/2011/08/18/153713.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.shnenglu.com/" title="精品视频久久久久">精品视频久久久久</a> <div class="friend-links"> </div> </div> </footer> <a href="http://www.shssdq.cn" target="_blank">久久久精品人妻一区二区三区蜜桃</a>| <a href="http://www.j8hq8.cn" target="_blank">国产成人精品久久综合</a>| <a href="http://www.hbdmw.cn" target="_blank">久久无码国产专区精品</a>| <a href="http://www.e-bizcard.cn" target="_blank">亚洲欧美成人综合久久久</a>| <a href="http://www.leshuapay.com.cn" target="_blank">久久精品国产网红主播</a>| <a href="http://www.lampserver.cn" target="_blank">国产香蕉97碰碰久久人人</a>| <a href="http://www.spxian.cn" target="_blank">欧美精品乱码99久久蜜桃</a>| <a href="http://www.ejectorpin.cn" target="_blank">国产精品久久久久国产A级</a>| <a href="http://www.acolor.com.cn" target="_blank">久久99精品久久久久久噜噜</a>| <a href="http://www.231it.cn" target="_blank">7777久久久国产精品消防器材</a>| <a href="http://www.onlinehotel.com.cn" target="_blank">久久精品亚洲中文字幕无码麻豆</a>| <a href="http://www.bbs0310.cn" target="_blank">色综合久久最新中文字幕</a>| <a href="http://www.vkqn.cn" target="_blank">香蕉久久夜色精品国产2020</a>| <a href="http://www.shdad.cn" target="_blank">国产精品一久久香蕉国产线看 </a>| <a href="http://www.simple521.cn" target="_blank">亚洲αv久久久噜噜噜噜噜</a>| <a href="http://www.alichengde.cn" target="_blank">99精品国产在热久久无毒不卡</a>| <a href="http://www.nanwx.cn" target="_blank">久久久久国产精品麻豆AR影院</a>| <a href="http://www.wltceiling.cn" target="_blank">午夜欧美精品久久久久久久</a>| <a href="http://www.xiquwang.com.cn" target="_blank">国产免费福利体检区久久</a>| <a href="http://www.mdjzyz.cn" target="_blank">.精品久久久麻豆国产精品</a>| <a href="http://www.ifim.cn" target="_blank">久久精品国产乱子伦</a>| <a href="http://www.laowang66.com.cn" target="_blank">久久久久久毛片免费看</a>| <a href="http://www.sdlove.cn" target="_blank">日本道色综合久久影院</a>| <a href="http://www.176zfblp.cn" target="_blank">久久香综合精品久久伊人</a>| <a href="http://www.h6cpi0.cn" target="_blank">久久亚洲国产精品成人AV秋霞 </a>| <a href="http://www.adultr.cn" target="_blank">久久免费大片</a>| <a href="http://www.kangle.net.cn" target="_blank">亚洲国产成人久久精品影视</a>| <a href="http://www.dqep.cn" target="_blank">精品久久人妻av中文字幕</a>| <a href="http://www.buchaqian.org.cn" target="_blank">亚洲中文久久精品无码</a>| <a href="http://www.fwjs.net.cn" target="_blank">区久久AAA片69亚洲</a>| <a href="http://www.51index.cn" target="_blank">久久久国产99久久国产一</a>| <a href="http://www.netcacd.cn" target="_blank">无码8090精品久久一区</a>| <a href="http://www.loveindg.cn" target="_blank">欧美久久综合九色综合</a>| <a href="http://www.fengdingjun.cn" target="_blank">久久精品中文字幕有码</a>| <a href="http://www.jsrst-gov.cn" target="_blank">久久er国产精品免费观看8</a>| <a href="http://www.tobeok.cn" target="_blank">精品久久久久久无码免费</a>| <a href="http://www.jiaqianli.cn" target="_blank">国产L精品国产亚洲区久久 </a>| <a href="http://www.xyszgh.cn" target="_blank">国内精品久久久久久中文字幕</a>| <a href="http://www.enliangjiancai.cn" target="_blank">久久香蕉国产线看观看乱码</a>| <a href="http://www.guidegogo.cn" target="_blank">国产精品99久久精品爆乳</a>| <a href="http://www.cooyu.cn" target="_blank">久久久久久久久久久免费精品</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>