28/01/2014 MCAFEE SECURE 認證的網站

https://www.mcafeesecure.com/RatingVerify?ref=www.HongKongCupid.com

2013年7月25日 星期四

***linux系統作業的DB2~*使用命令行狀態執行~*來創建DB2的實例展示~!!^linux system operations using DB2~*~* execute command line to create an instance of DB2 directions ~!!^DB2를 사용하여 Linux 시스템 작업~*~* DB2 방향의 인스턴스를 만들려면 명령 줄을 실행합니다~!!^(CHT+EN+KR)!^

**linux系統作業的DB2~使用命令行狀態執行**
slide.jpg~來創建DB2的實例展示**~! 
***linux system operations with the DB2~*~command
line executed to create an instance of DB2 show!!*l
**DB2*리눅스 시스템 작업 ~* DB2 쇼의 인스턴스를 생성하기 위해 실행~
 명령  줄***))~!

**首先,系統原有的DB2信息,安裝目錄 : /opt/ibm/db2/V9.7DB2inst1實例目錄 : /home/DB2inst1現在需要創建DB2cz實例:2.然後給DB2cz實例創建實例用戶和組:創建用戶useradd db2czuseradd dbfencz參照db2inst1把用戶分配到組:usermod -a -g db2iadm1 db2czusermod -a -g db2fadm1 db2fencz創建DB2實例DB2cz:用root 用戶, 
cd /db2_install_path/instances/ 執行./db2icrt -u db2fencz db2czdb2fence 用來運行“受防護用戶定義的函數(UDF) 
和受防護存儲過程的進程”。看看create function / procedure的語法,有個fenced的選項。 
 udf和udp是可以用到外部程序的,萬一用到的程序出了問題,db2很可能跟著也掛了。
現在有了db2fence db2fmp,它掛了就掛了。 db2沒事……4.建數據庫,建表================================================== =======5.配置遠程連接端口首先為遠程連接配置空閒端口: (查看端口使用情況命令:  
 netstat -na | grep 50000 查看50000端口是否已使用中)vi /etc/services 查看分配給DB2​​實例DB2inst2的端口. 
 返回結果中db這一塊的有# Local servicesDB2_DB2inst1 60000/tcpDB2_DB2inst1_1 60001/tcpDB2_DB2inst1_2 60002/tcpDB2_DB2inst1_END 60003/tcpDB2c_DB2inst1 50000/tcpDB2i_DB2inst1 50001/tcp)DB2_DB2inst2 60004/tcpDB2_DB2inst2_1 60005/tcpDB2_DB2inst2_2 60006/tcpDB2_DB2inst2_END 60007/tcp)在裡面添加兩條:DB2c_DB2inst2 70000/tcpDB2i_DB2inst2 70001/tcp分別為為DB2inst2實例的偵聽端口和中斷端口。網上找到的大部分創建第二個實例以及建表的方法就至此結束了,
但是實際使用的時候,遠程連接還是連接不上的。後來找到了通過另一實例DB2inst1使用CATALOG編目的方法來實現
遠程連接的成功方法。首先切換到另一用戶,這裡使用DB2inst1:在root下:su - DB2inst1編目節點名,取任意名稱,如為inst3,指向DB2機器所在,
之前在etc/services文件中為DB2inst2實例配置的偵聽端口:DB2 "catalog tcpip node inst3 remote 10.213.1.95 server 70000"然後給節點指向的DB2inst2實例新建的數據庫配置別名:DB2 "catalog db gpending as gpending at node inst3"編目成功後,可以嘗試連接(在DB2inst1用戶下):用命令: connect to gpending user DB2inst2 using password或命令: DB2 attach to inst3 user DB2inst2 using password系統會報出如下一個通信協議的錯誤,類似於:SQL30081N 檢測到---
---通信錯誤。正在使用的通信協議:"TCP/IP"。 
正在使用的通信API:"SOCKETS"。檢測到錯誤的位置:"10.213.1.95"。檢測到錯誤的通信函數:"connect"。協議特定的錯誤代碼:"111"、"*"、"*"。 SQLSTATE=08001,(這一段是網上搜索到的:為什麼通訊協議會出錯呢?系統不是會默認地給實例設置一些基礎的屬性嗎?並非如此! 通過DB2SETUP方式創建的實例(即使用DB2安裝文件來新建實例),
有些參數會默認的幫你設置成缺省的參數值。但通過命令行方式創建實例時,DB2實例參數並沒有被設置。
所以DB2inst2實例的通訊協議沒有定義,因此發生剛才的現象。因此,在用戶DB2inst1下,通過命令DB2set ,你可以看到如下信息:DB2_INLIST_TO_NLJN=YESDB2_EVALUNCOMMITTED=yesDB2_RR_TO_RS=YESDB2COMM=tcpip (該屬性是指明該DB2實例使用的通信協議,
一個實例可以使用多個通信協議,多個通信協議之間使用逗號分開,
如:TCPIP、IPX、APPC、NPIPE……)DB2AUTOSTART=yes( 設置實例是否在系統啟動是自動啟動,
在Windows系統中DB2的實例是作為服務形式啟動的)但是在用戶db2inst2下使用命令db2set,你將什麼也看不到!所以要手動設置參數:在 db2inst2下:db2set DB2COMM=tcpipdb2set DB2AUTOSTART=yes然後給db2inst2實例指定端口(即在etc/services文件中添加的兩條,
之前先做過)然後查看實例的配置文件:命令: db2 get dbm config返回的結果中發現SVCENAME的值是空的配置SVCENAME的值,
即在services文件中為db2inst2實例指定的偵聽端口
(70000)的服務名:db2c_db2inst2命令:db2 update dbm config using SVCENAME db2c_db2inst2然後重啟整個db2……用客戶端工具連接實例,成功!
要注意的是,用遠程機器上的客戶端連接時,要配置的信息:用戶標識:“db2inst2”密碼下:“password”數據庫名稱: “gpending”服務器 : “10.213.1.95”端口號:“50000” (注意:這裡填的不是70000)(端口寫為db2inst2分配的70000端口時,客戶端連接時怎麼也不成功,

後來改成50000,發現就可以了,這可能就是編目的原因吧,

理解可能就是通過連接50000端口,即db2inst1 ,然後通過編目gpending 
映射到db2inst2的gpending 表,然後用用戶名和密碼連接 **)
至此,DB2實例db2inst2的配置成功完成!
**




**EN~**First, the system existing DB2 informationInstallation directory: / opt/ibm/db2/V9.7DB2inst1 instance directory: / home/DB2inst1Now you need to create DB2cz instance:2 and then to create instances DB2cz instance user and group:Create a useruseradd db2czuseradd dbfenczRefer db2inst1Assigned to the user group: usermod-a-g db2iadm1 db2czusermod-a-g db2fadm1 db2fenczCreate a DB2 instance DB2cz:Root user, cd / db2_install_path/instances / executive ./db2icrt-u  
db2fencz db2czdb2fence used to run the "fenced user-defined function (UDF) and  
fenced stored procedure process."See create function / procedure syntax, there is a fenced option. udf and  
udp can be used in an external program,Procedures used in case of a problem, db2 is likely to follow too hung up. 
 Now with db2fence db2fmp, it hung hung up. db2 nothing ......4 built databases, build tables================================================== =======5 Configure the remote connection portThe first free port for remote connection configuration: (view port usage  
 command: netstat-na | grep 50000 View 50000 port is in use)vi / etc / services assigned to the DB2 instance DB2inst2 view port 
 
. return results in this one of a db# Local servicesDB2_DB2inst1 60000/tcpDB2_DB2inst1_1 60001/tcpDB2_DB2inst1_2 60002/tcpDB2_DB2inst1_END 60003/tcpDB2c_DB2inst1 50000/tcpDB2i_DB2inst1 50001/tcp)DB2_DB2inst2 60004/tcpDB2_DB2inst2_1 60005/tcpDB2_DB2inst2_2 60006/tcpDB2_DB2inst2_END 60007/tcp)They add two:DB2c_DB2inst2 70000/tcpDB2i_DB2inst2 70001/tcpRespectively, for the DB2inst2 instance listens on port and interrupt ports.Most of the Internet to find and create a second instance of the table  
method so far built over, but the actual use of the time,  
 a remote connection or connections are not.Later found DB2inst1 through another instance using the CATALOG  
cataloging methods to achieve successful remote connection method.First, switch to another user, used here DB2inst1:Under the root:su - DB2inst1Cataloging the node name, take any name, such as the inst3, 
 pointing to the DB2 machine is located, before etc / services
file for DB2inst2 instance configured listening port:DB2 "catalog tcpip node inst3 remote 10.213.1.95 server 70000"Then pointing to the node instances of the new database  
configuration DB2inst2 Alias:DB2 "catalog db gpending as gpending at node inst3"Cataloging successfully, you can try to connect (in DB2inst1 user under):Use the command: connect to gpending user DB2inst2 using passwordOr the command: DB2 attach to inst3 user DB2inst2 using passwordSystem will be reported as a communication protocol error, similar to:  
 SQL30081N communication error is detected. Communication protocol  
 being used: "TCP / IP". The communication is being used API: "SOCKETS".Position error was detected: "10.213.1.95".  
Communication function detecting the error: "connect".Protocol-specific error code: "111", "*", "*." SQLSTATE = 08001,(This paragraph is the online search to:Why protocol wrong? The system is not set up by default to 
give examples of some basic attributes?Not so! ! !By DB2SETUP way to create an instance (ie using the DB2 installation--
-- files to create a new instance), some parameters will help you set a  
default default parameter values.But through the command line when you create an instance,  
 DB2 instance parameter has not been set. So DB2inst2 instance 
protocol is not defined, therefore occur earlier phenomenon.Therefore, the user DB2inst1, through command DB2set,  
 you can see the following information:DB2_INLIST_TO_NLJN = YESDB2_EVALUNCOMMITTED = yesDB2_RR_TO_RS = YESDB2COMM = tcpip (This attribute is specified in the communication  
protocols used by the DB2 instance, an instance can use multiple  
communication protocols, multiple communication protocols used  
between commas, such as: TCPIP, IPX, APPC, NPIPE ......)DB2AUTOSTART = yes (to set whether the instance is started  
automatically during system startup, the Windows system DB2  
 instance is started as a service in the form of)But in the user db2inst2 using the command db2set,  
you will not see anything!So to manually set the parameters:In db2inst2 follows:db2set DB2COMM = tcpipdb2set DB2AUTOSTART = yesThen give db2inst2 instance specified port (ie etc / services file to  
add the two, before you did)Then view the instance configuration file:Command: db2 get dbm configReturned results found SVCENAME value is empty configuration  
SVCENAME value, ie services file for db2inst2 instance specified  
 listening port (70000) service name: db2c_db2inst2Command: db2 update dbm config using SVCENAME db2c_db2inst2Then restart the entire db2 ......Examples client tools to connect with success!
Note that, with the client on the remote machine when connecting 

to the configuration:User ID: "db2inst2"Under Password: "password"Database Name: "gpending"Server: "10.213.1.95"Port number: "50000" (Note: This is not the filling 70,000)(Written as db2inst2 assigned port 70000 port, the client is not connected  
 to how successful, later changed to 50,000, can be found,  
this may be the reason for cataloging, I understand the possible connection 
is through port 50000, which db2inst1 , and then mapped to the db2inst2  
cataloging gpending the gpending table,  
and then use the user name and password to connect.)
At this point, DB2 instance db2inst2 completed successfully!
*****




**KR*~첫째, 시스템은 DB2 정보를 기존의설치 디렉토리 : / opt/IBM/db2/V9.7에는DB2INST1 인스턴스 디렉토리 : / home/DB2inst1지금 당신은 DB2cz 인스턴스를 생성해야다음 2 인스턴스 DB2cz 인스턴스 사용자 및 그룹을 만들려면사용자를 생성useradd db2czuseradd dbfenczDB2INST1 참조usermod가-A-G db2iadm1이 db2cz : 사용자 그룹에 할당usermod가-A-G db2fadm1 db2fenczDB2 인스턴스 DB2cz를 만듭니다 :루트 사용자, CD / db2_install_path/instances / 임원 ./db2icrt-u db2fencz db2czdb2fence을 실행하는 데 사용되는 "분리 사용자 정의 함수 (UDF)  
 및 프로 시저 프로세스를 저장 울타리."함수 / 프로 시저 구문 만들기를 참조 울타리 옵션이 있습니다.  
UDF와 UDP는 외부 프로그램에서 사용할 수 있습니다문제의 경우에 사용 절차, DB2는 너무 끊었 따를 가능성이 높다.  
 지금 db2fence의 db2fmp 프로와 함께, 그것은 끊었 끊었어요.  
 DB2 아무것도 ......4 내장 데이터베이스는 테이블을 구축================================================== =======5 원격 연결 포트를 구성원격 연결 구성에 대한 첫 번째 무료 포트 (뷰 포트 사용 명령 :  
NETSTAT-NA | 그렙 50000보기 50000 포트가 사용 중입니다)DB이 하나의 DB2 인스턴스 db2inst2 사용자 뷰 포트에 할당  
VI / 등 / 서비스를 제공합니다. 결과를 반환# 지역 서비스DB2_DB2inst1 60000/tcpDB2_DB2inst1_1 60001/tcpDB2_DB2inst1_2 60002/tcpDB2_DB2inst1_END 60003/tcpDB2c_DB2inst1 50000/tcpDB2i_DB2inst1 50001/tcp)DB2_DB2inst2 60004/tcpDB2_DB2inst2_1 60005/tcpDB2_DB2inst2_2 60006/tcpDB2_DB2inst2_END 60007/tcp)그들은 두 가지를 추가합니다 :DB2c_DB2inst2 70000/tcpDB2i_DB2inst2 70001/tcp각각 db2inst2 사용자 인스턴스에 대한 포트와 인터럽트 
포트에서 수신 대기합니다.인터넷의 대부분은 발견 지금까지 위에 지어진 테이블 메서드의 두 번째  
 인스턴스를 만들 수 있지만 시간의 실제 사용은 원격 연결 또는  
 연결이되지 않습니다 수 있습니다.이후 원격 연결을 성공적으로 방법을 달성하기 위해 방법을 카탈로그 
카탈로그를 사용하여 다른 인스턴스를 통해 DB2INST1을 발견했다.첫째, 여기 DB2INST1 사용하는 다른 사용자로 전환 :루트 아래 :SU - DB2INST1db2inst2 사용자 예를 들어 etc / services 파일을 수신 대기 포트를 
구성하기 전에 노드 이름을 카탈로그 화하려면, DB2 머신을 가리키는 
 등 inst3로, 어떤 이름을 위치 :DB2 "카탈로그 TCPIP 노드 inst3 원격 10.213.1.95 서버 70000"그런 다음 새 데이터베이스 구성 db2inst2 사용자 별칭의 노드 
 인스턴스를 가리키는 :DB2 "카탈로그 DB 노드 inst3에 gpending로 gpending"성공적으로 카탈로그, 당신은 (아래 db2inst1 인 사용자)
에 연결을 시도 할 수 있습니다 :명령을 사용하여 암호를 사용하여 사용자 db2inst2 
사용자를 gpending에 연결또는 명령 : DB2 암호를 사용하여 inst3 사용자 db2inst2 사용자에 연결시스템은 유사한 통신 프로토콜 오류로보고됩니다 :  
 SQL30081N 통신 오류가 감지됩니다. 사용되는 통신 프로토콜 :  
 "TCP / IP". 통신 API를 사용하고 있습니다 : "SOCKETS".위치 오류가 발견되었습니다 :  
"10.213.1.95을." 오류를 검출 통신 기능 : "연결".프로토콜 특정 오류 코드 : "111", "*", "*." SQLSTATE = 08001,(이 단락에 대한 온라인 검색입니다 :왜 프로토콜 문제? 이 시스템은 몇 가지 기본적인 속성의 예를 
제공하기 위해 기본적으로 설정되어 있지 않습니다?그렇지 않습니다! ! !(새 인스턴스를 만들려면 DB2 설치 파일을 사용하여 즉,) 
 인스턴스를 만들려면 db2setup을 방법으로, 어떤 매개 변수는  
기본 기본 매개 변수 값을 설정하는 데 도움이됩니다.그러나 명령 줄을 통해이 인스턴스를 만들 때,  
  DB2 인스턴스 매개 변수가 설정되지 않았습니다.  
 그래서 db2inst2 사용자 인스턴스 프로토콜이 정의되지 않은, 
 따라서 이전에 현상을 발생합니다.따라서, 사용자 DB2INST1는 명령 DB2SET을 통해 다음과 
같은 정보를 볼 수 있습니다 :DB2_INLIST_TO_NLJN = YESDB2_EVALUNCOMMITTED = 예DB2_RR_TO_RS = YESDB2COMM = TCPIP는 (: TCPIP, IPX, APPC, NPIPE ......이 
속성은 DB2 인스턴스에 의해 사용되는 통신 프로토콜에 지정된 경우, 
 인스턴스는 여러 통신 프로토콜과 같은 쉼표 사이에 사용되는 여러  
통신 프로토콜을 사용할 수있다)를DB2AUTOSTART = 예 (인스턴스가 시스템 시작시 자동으로  
시작할지 여부를 설정하려면 Windows 시스템에 DB2 인스턴스는  
 형태의 서비스로 시작됩니다)그러나 명령 다음 db2set을 사용하여 사용자 db2inst2 사용자로,  
당신은 아무것도 볼 수 없습니다!수동으로 매개 변수를 설정하려면 :db2inst2 사용자에서 다음과 같이 :DB2SET DB2COMM = TCPIPDB2SET DB2AUTOSTART = 예그런 다음 지정된 db2inst2 사용자 인스턴스를 제공 포트  
 (당신이 한 전에 즉, 등 / 서비스는 두 가지를 추가하는 파일)그런 다음 인스턴스 구성 파일을 볼 수 있습니다 :명령 : DB2가 설정 DBM을db2c_db2inst2 : 반환 된 결과는 SVCENAME 값이 비어있는 
구성 SVCENAME 값, 포트 (70000) 서비스 이름을 듣는 지정  
 db2inst2 사용자 인스턴스 즉, 서비스 파일 발견명령 : DB2 업데이트를 구성 SVCENAME db2c_db2inst2를 사용하여 DBM다음 전체 DB2를 다시 시작합니다 ......예제 클라이언트 도구는 성공을 연결하는!
구성에 연결하는 원격 시스템의 클라이언트와 그 참고 : 사용자 ID : "db2inst2 사용자""비밀번호": 비밀번호 이하데이터베이스 이름은 "gpending"서버 : "10.213.1.95"포트 번호 : "50000"(참고 :이 충만 70,000 아닙니다)(db2inst2 사용자 지정 포트 70000 포트로 작성된 클라이언트가  

 나중에 50,000로 변경, 발견 할 수있는 방법을 성공적으로  
연결되지 않은,이 카탈로그에 대한 이유가있을 수 있습니다, 
 어느 DB2INST1이 가능한 연결 포트 50000를 통해 이해 하고 
 gpending 테이블을 gpending 카탈로그 db2inst2 사용자로 매핑  
 한 후 사용자 이름과 연결하는 암호를 사용합니다.))이 시점에서, DB2 인스턴스 db2inst2 사용자가 성공적으로 완료되었습니다  !!)
*slide.jpg*)
http://www.linux.org/                 * **   http://www.linux.org/              ********** http://www.linux.org/                                         

&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&

**2013最全的IE9疑難解答精選篇~!!**The most zomprehensive notes IE9 Essentials troubleshooting))^^* 2013 기사의 가장 완벽한 선택 IE9 문제 해결~!** 2013 pilihan yang paling lengkap artikel IE9 Masalah~!**(CHT+EN+KR+INDONESIA)^^~

**2013最全的 IE9疑難解答精選篇~!!**The most  
zomprehensive notes IE9 Essentials Troubleshooting))^^IE9 필수 문제 해결 가장 포괄적 노트*~
*Catatan paling Komprehensif IE9 Essentials))^{ CHT+EN+KR+Indonesia)^^~

*CHT*)IE9中文正式版)大多數用戶還沒能把握IE9的操作與使用技巧。
不過,在這里為大家收集整理了一批經典IE9疑難解答和應用小技巧 ^^))
**)1.IE9正式版能否支持XP?  答:IE9暫時不支持在XP上運行,IE9之所以廣獲讚譽,
很大一部分原因是利用了Win7優秀的系統架構,
 而XP是十幾年前的產品了……所以趕緊把XP升級到Windows7     2.IE9 和 IE8 可以共存嗎?    答:不可以。安裝IE9後不會保留IE8,但我們可以通過控制面板,
程序和功能裡面的“已安裝的更新”中卸載IE9,恢復IE8。    3.如何調出IE9菜單欄?  答:IE9為了簡潔的界面,默認是沒開啟菜單欄,如果有需要,
 按ALT鍵,菜單欄就會彈出來,或者工具欄上右鍵勾上菜單欄。  4.如何清理IE9新建選項卡中的常用網站?  答:點擊瀏覽器界面右上角的“工具”按鈕,在下拉菜單中---
---點擊“Internet 選項”,在“常規”項下的“選項卡”中,點擊“設置”。
然後在彈出來的選項卡瀏覽設置窗口中,在“打開新選項卡後,
打開”下面,點擊向下箭頭,在下拉菜單中選擇“空白頁”
 或“您的第一個主頁”,這樣以後在新建選項卡中,就不會出現常用網站了。  5.如何始終在新窗口或新選項卡中打開網頁?  答:點擊瀏覽器界面右上角的“工具”按鈕,在下拉菜單中--
--點擊“Internet 選項”,在“常規”項下的“選項卡”中,點擊“設置”。
在彈出來的選項卡瀏覽設置窗口中,在“遇到彈出窗口時”下面,
勾選“始終在新窗口中打開彈出窗口”或“始終在新選項卡中---
---打開彈出窗口”的複選框即可。   6.​​IE9支持 Mactype 字體渲染嗎?  答:目前不支持Mactype 渲染,就算把IE9硬件加速關了,
也還是不能渲染。因為D2D沒有關,以IE9為核心的都不能渲染,
包括QQ的聊天記錄也是 **    ))

**)7.如何讓IE9支持鼠標手勢?  答:可以通過MouseGestures這款針對IE9的鼠標手勢插件,
 讓你更充分的使用鼠標了。    8.開啟IE9 GPU加速  答:你的顯卡必須支持WDDM 1.1,然後在Internet 選項- 高級- 加速的圖形。
 如果顯卡不支持,可以嘗試強制開啟加速:打開註冊表,找到---  HKEY_CURRENT_USER/Software/Microsoft/Internet Explorer/GPU 
 找到SoftwareFallback,
***將數值數據從1改為0,然後重新啟動IE9瀏覽器,Internet選項-高級,
在設置中找到“使用軟件呈現而不使用GPU呈現”前面的“√”去掉即可。    9.讓IE9支持網絡書籤同步  答:用Xmarks網絡書籤同步軟件, Xmarks 同時支持各大瀏覽器,
例如:Chrome、Firefox、IESafari。    10.IE9歷史快捷訪問按鈕不見了?  答:IE9的界面更加簡潔,所以歷史快捷訪問按鈕給隱藏了。
 IE8是通過前進和後退按鈕旁邊有個小箭頭查看​​歷史訪問,
而IE9是通過以下方法:  ·將前進或後退按鈕(如果可用)按住不放,持續一秒鐘。  ·在前進或後退按鈕(如果可用)上單擊鼠標右鍵。  ·在前進或後退按鈕(如果可用)上點擊,同時向下拖拽。
這個方法是專為觸摸操控所設計的。

 11.讓IE9 顯示更多“您最常使用的網站”  答:IE9的“您最常使用的網站” 可以自動記錄下用戶使用頻率最高的---
---那些網之外,還會通過一個“小橫條”標識出各個網頁的“活躍程度”。
 讓IE9 顯示更多“您最常使用的網站” 方法:Win+r 輸入regedit ,註冊表編輯器,找到:
 HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTabbedBrowsingNewTabPage 在右側建立一個名為“NumRows”的DWORD(32位)值,
並賦值為你想要的行數(比如筆者這裡就輸入了“5”,即5行)。  12.如何把“您最常使用的網站” 設置為主頁?  答:“Internet 選項”,在主頁輸入框裡面輸入about:tabs  13.無法安裝ie9,安裝程序無法啟動……    答:更新安裝下面4個補丁   ·Windows6.1-KB2259539-x86    ·Windows6.1-KB2120976-x86    ·Windows6.1-KB2028560-v2-x86  ·Windows6.1-KB2028551-v2-x86    14.IE9可以過濾廣告?  答:這裡用到的是IE9 裡面的樣式表功能,先下載去廣告樣式表文件,
解壓到任意地方,然後打開IE的“Internet選項”,點擊“輔助功能”,
勾選“使用樣式表編排文檔格式”,選中樣式文件  !!))

)EN)*Most users have not been able to grasp the operation and use of skills IE9~!*
**)For everyone here collected a number of classic IE9 and application  
 troubleshooting tips, hope you can help  ^^~)
))1.IE9 official version can support XP?

A: IE9 is not supported to run on XP, IE9 has won wide acclaim reason

 a large part of the reason is the use of Win7 excellent system architecture, 
 and XP is the product of ten years ago ...... so I quickly put XP to Windows7 .

2.IE9 and IE8 can coexist?

A: No. Not retained after installing IE9 IE8, but we can through the 

Control Panel, Programs and Features inside the--
-- "Installed Updates" uninstall IE9, restore IE8.

3 How to bring up the IE9 menu bar?

A: IE9 for simple interface, the default is not on the menu bar

and if necessary, press the ALT key, the menu bar will pop up on the 
toolbar or right-hook on the menu bar.

4 How to clean IE9 new tab in the most visited sites?

A: Click the top right corner of the browser interface "Tools" button 

in the drop-down menu, click "Internet Options" in the 
 "General" under the "Tab", click "Settings."  
 Then in the pop up tabbed browsing settings window, in the "open a new tab
open the" below, click on the down arrow in the drop-down menu, 
select "Blank Page" or "your first home," so that future in the new tab, 
it will not appear commonly the site.

5 How is always in a new window or a new tab open the page?

A: Click the top right corner of the browser interface "Tools" button  

in the drop-down menu, click "Internet Options" in the "General" under  
 the "Tab", click "Settings." In the pop-up to tabbed browsing 
settings window, in the "encounter pop-up window" below
 check the "Always open in a new window pop-ups" or 
 "Always open in a new tab pop-up windows" checkbox available.

6.IE9 support Mactype font rendering it?

A: Currently does not support Mactype rendering, even if the IE9 

hardware acceleration off, it still can not render.  
 Because D2D not related to the core can not IE9 rendering,  
 including QQ chat history is))*)

**7 How to make IE9 support for mouse gestures?
A: This can be MouseGestures mouse gestures plugin for IE9, 

 so you better use the mouse.
8 Turn on IE9 GPU accelerationA: Your video card must support WDDM 1.1, and then Internet Options - 

 Advanced - accelerated graphics. If the card does not support, 
 you can try to force open Acceleration: Open the registry, find  
  HKEY_CURRENT_USER / Software / Microsoft / Internet Explorer / GPU found SoftwareFallback,***the value data from 1 to 0, *** and then restart  
the IE9 browser, Internet Options - Advanced found in the settings  
  "Use software rendering instead of GPU rendering" in front of "√" can be removed.
9 Let IE9 support network bookmark syncA: The network with Xmarks Bookmark Sync software, 

Xmarks also supports all major browsers, such as: Chrome, Firefox, IESafari.
10.IE9 history quick access buttons missing?
A: IE9's interface is more concise, so history quick access button to hide.  

 IE8 through the forward and back buttons next to a small arrow to view 
the history of access, while IE9 through the following methods:· Will advance or rewind button (if available) hold for one second.
· In the forward or back button (if available), click the right mouse button.
· In the forward or back button (if available) by clicking, 

dragging down simultaneously. This method is specifically designed for  
 the touch control.  

11 Let IE9 more "sites you use the most."A: IE9 "Your most visited sites" can automatically record the highest 
frequency of use to those users outside the network, but also through a 
 "mini bar" identifies the individual pages of the "level of activity."  
 Let IE9 more "sites you use most often" approach:Win + r, type regedit, registry editor, locate: 
 HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTabbedBrowsingNewTabPageThe right to establish a named "NumRows" the DWORD (32-bit) Value,  
 and assign the number of rows you want --
--(such as the author here to enter "5", ie 5 lines).
12 How to "sites you use the most," set as your home?
Answer: "Internet Options" input box on the home page which enter about: tabs13 can not install ie9, the installer does not start ......A: The following four patch update installation· Windows6.1-KB2259539-x86· Windows6.1-KB2120976-x86· Windows6.1-KB2028560-v2-x86· Windows6.1-KB2028551-v2-x8614.IE9 can filter the ads?
A: Here is used inside the style sheet IE9 features, first download to 

advertising style sheet file, extract to any place, and then open the IE's 
 "Internet Options", click on "Accessibility", check the  
 "layout document using style sheets format ", select the style file*))  


)KR)~대부분의 사용자는 기술 IE9의 동작을 이해하고 사용할
수있게되지 않았습니다~!!**
**여기에 우리가 고전 IE9와 응용 프로그램 문제 해결 팁의 번호를 수집,  
 당신은 도울 수 있기를 바랍니다**^
**)1.IE9 공식 버전은 XP를 지원합니까?

A : IE9 XP에서 실행이 지원되지 않습니다, ​​IE9 넓은 갈채 이유 수상했다, 

이유의 큰 부분 Win7의 뛰어난 시스템 아키텍처를 사용하는 것입니다
그리고 XP는 10 년 전 ...... 그래서 빨리 Windows7의 XP 넣어의 제품입니다 .

2.IE9 IE8 공존 할 수 있는가?

A : 번호 IE9 IE8을 설치 한 후 유지하지만, 우리는 제거 IE9  

 "설치된 업데이트"내부 제어판, 프로그램 및 기능을 통해 IE8을  
복원 할 수 없습니다.

어떻게 IE9 메뉴 모음 가지고 3?

A : 간단한 인터페이스 IE9 기본 메뉴 표시 줄에서 아닙니다,  

 필요한 경우 ALT 키를 눌러 메뉴 모음 메뉴 바에서 도구 모음이나 
마우스 오른쪽 나타납니다.

어떻게 가장 많이 방문한 사이트에서 IE9 새 탭을 청소하는 4?

A : 드롭 다운 메뉴에서 브라우저 인터페이스  

 "도구"버튼의 오른쪽 상단 모서리를 클릭 "탭"에서 "일반"에서 
 "인터넷 옵션"을 클릭 클릭 "설정." 그런 다음 아래의 드롭 다운 메뉴에서 
 아래쪽 화살표를 클릭, "첫 번째 ", "빈 페이지"를 선택하거나 
"새 탭을 열고 열고"그래서 미래의 탭 브라우징 설정 팝업 창에서새 탭에서
그것은 일반적으로 사이트에 나타나지 않습니다.

5 어떻게 창 또는 새 탭 페이지를 열고 항상 무엇입니까?

A : 드롭 다운 메뉴에서 브라우저 인터페이스 "도구"버튼의 오른쪽 상단  

 모서리를 클릭 "탭"에서 "일반"에서 "인터넷 옵션"을 클릭 클릭 "설정.
 팝업 탭 브라우징 설정 창에서 "발생하는 팝업창"에서 아래의 확인란  
 "새 탭 팝업 창을 항상 열어", "새로운 윈도우 팝업을 항상 열기"를 확인하거나 가능.

6.IE9 지원 Mactype 글꼴 렌더링?

A : 현재 IE9 하드웨어 가속 해제하는 경우,  

 그것은 여전히 ​​렌더링 할 수 없습니다, ​​Mactype 렌더링을 지원하지 않습니다.  
 D2D 핵심 관련되지 않은 때문에 QQ 채팅 내역 IE9 렌더링입니다 
수 없습니다 ))**

))어떻게 마우스 제스처 IE9 지원을 만드는 방법 7?
A :이 IE9에 대한 MouseGestures 마우스 제스처 플러그인이 될 수 있습니다,  

그래서 당신은 마우스를 사용합니다.
IE9 GPU 가속에 8 바퀴A : 비디오 카드가 WDDM 1.1을 지원하고 인터넷 옵션합니다 -  

고급 - 가속 그래픽. 카드가 지원하지 않을 경우, 당신은 열린 가속을 강제로  
시도 할 수 있습니다 :   
 레지스트리를 열고 탐색기 / GPU가 SoftwareFallback,  
  ***  0에서 1의 값 데이터를 발견하고 IE9 브라우저에서 인터넷 옵션을 다시 시작 HKEY_CURRENT_USER / 소프트웨어 / 마이크로 소프트 / 인터넷을 찾아 -  
 고급 "√"앞의 설정을 "대신에 GPU 렌더링을 사용하여 소프트웨어  
렌더링"에서 찾아 제거 할 수 있습니다.
9 IE9 지원 네트워크를 북마크 동기화하자A : 크롬, 파이어 폭스, IESafari : Xmarks 북마크 동기화 소프트웨어 Xmarks와 

네트워크 또한 다음과 같은 모든 주요 브라우저를 지원합니다.
10.IE9 역사 빠른 액세스 버튼이 누락?
A : IE9의 인터페이스가 더 간결하므로 숨길 역사 빠른 액세스 

버튼을 클릭합니다.  
 접근의 역사를 볼 수있는 작은 화살표 옆에있는 앞으로 및 뒤로 
버튼을 통해 IE8,  
다음과 같은 방법을 통해 동안 IE9 :· 1 초 동안 누르고 (사용 가능한 경우) 버튼을 전진하거나 되감.
· 앞으로 또는 뒤로 버튼 (사용 가능한 경우), 마우스 오른쪽 버튼을 클릭합니다.
· 클릭, 동시에 아래로 드래그하여 앞으로 또는 뒤로 버튼 (사용 가능한 경우). 

이 방법은 특히 터치 제어를 위해 설계되었습니다.  

 11 IE9보다 "당신이 가장 많이 사용하는 사이트를."하자A : ". 활동 수준"IE9는 "당신의 가장 방문한 사이트"가 자동으로 네트워크  
외부의 해당 사용자에게 사용의 가장 높은 주파수를 기록,  
또한 "미니 바"를 통해 할 수는의 개별 페이지를 확인 접근 
 IE9보다 "당신이 가장 자주 사용하는 사이트"를 보자승 + R, regedit를 입력하여 레지스트리 편집기 찾습니다 : HKEY_CURRENT_USERSoftwareMicrosoftInternet ExplorerTabbedBrowsingNewTabPage이름이 "numRows의"DWORD (32 비트) 값을 설정하고 원하는 행의 번호  
(예 : "10", 즉 5 줄을 입력하려면 여기를 저자로) 할당 할 권리가 있습니다.
에 "당신이 가장 많이 사용하는 사이트에"당신의 가정으로 설정하는 방법 12?
답변 : 대한을 입력 홈 페이지에서 "인터넷 옵션"입력 상자 : 탭13 IE9를 설치할 수 없습니다, 설치가 시작되지 않습니다 ......A : 다음과 같은 네 가지 패치 업데이트 설치· Windows6.1-KB2259539-86· Windows6.1-KB2120976-86· Windows6.1-KB2028560-V2-86· Windows6.1-KB2028551-V2-8614.IE9는 광고를 필터링 할 수 있습니다?
A : 여기 IE9 기능은, 첫째, 광고 스타일 시트 파일을 다운로드하는 

위치에 압축을 푸신 후 IE의 "인터넷 옵션"을 열고, 스타일 시트를 사용하여  
"레이아웃 문서를 확인,"접근성 "을 클릭하여 스타일 시트 내부에서 
사용됩니다 형식은 "스타일 파일을 선택  ))~!!


*IDNA*Sebagian besar pengguna belum mampu memahami operasi dan 
menggunakan keterampilan IE9*))
)))Untuk semua orang di sini mengumpulkan sejumlah klasik IE9 dan  
 tips mengatasi masalah aplikasi, harap Anda dapat membantu~!!!

**)Versi resmi 1.IE9 dapat mendukung XP?

A: IE9 tidak didukung untuk berjalan di XP, IE9 telah memenangkan ---

---pujian luas alasan, sebagian besar alasannya adalah penggunaan Win7  
arsitektur sistem yang sangat baik, dan XP adalah produk  
dari sepuluh tahun yang lalu ...... jadi aku cepat-cepat XP ke Windows7 .

2.IE9 dan IE8 dapat hidup berdampingan?

J: Tidak Tidak dipertahankan setelah menginstal IE9 IE8,  

tapi kita bisa melalui Control Panel, Program dan Fitur di dalam  
 "Update Installed" uninstall IE9, mengembalikan IE8.

3 Cara untuk membuka menu bar IE9?

A: IE9 untuk antarmuka yang sederhana, default tidak pada menu bar,  

dan jika perlu, tekan tombol ALT, menu bar akan muncul pada toolbar 
 atau kanan-hook pada menu bar.

4 Cara membersihkan IE9 tab baru di situs yang paling dikunjungi?

A: Klik pojok kanan atas dari browser antarmuka "Tools"  

tombol dalam menu drop-down, klik "Internet Options" dalam "Umum"  
di bawah "Tab", klik "Settings." Kemudian pada pop up tab jendela --
--pengaturan browsing, dalam "membuka tab baru, buka" di bawah ini,  
 klik panah bawah dalam menu drop-down, pilih "Halaman Kosong" atau  
"rumah pertama Anda," sehingga di masa mendatang pada tab baru,  
maka tidak akan muncul umumnya situs.

5 Bagaimana selalu di jendela baru atau tab baru membuka halaman?

A: Klik pojok kanan atas dari browser antarmuka "Tools" 

 tombol dalam menu drop-down, klik "Internet Options" dalam "Umum"  
 di bawah "Tab", klik "Settings." Pada pop-up ke tab jendela pengaturan browsing, 
 dalam "menghadapi jendela pop-up" di bawah ini, periksa  
 "Selalu terbuka di jendela baru pop-up" atau  
  "Selalu terbuka di tab jendela pop-up baru" kotak centang tersedia.

Font Mactype dukungan 6.IE9 rendering itu?

A: Saat ini tidak mendukung render Mactype,  

bahkan jika IE9 akselerasi hardware off, tetap saja tidak bisa membuat.  
  Karena D2D tidak berhubungan dengan inti tidak bisa IE9 rendering,  
  termasuk QQ riwayat obrolan adalah !!!

**7 Cara membuat dukungan IE9 untuk gerakan mouse?
J: Ini bisa menjadi MouseGestures tikus gerakan plugin untuk IE9, 

sehingga Anda lebih baik menggunakan mouse.
8 Aktifkan IE9 GPU percepatanJ: Kartu video Anda harus mendukung WDDM 1.1, dan kemudian Internet Options 

 - Advanced - grafis dipercepat. Jika kartu tidak mendukung, 
 Anda dapat mencoba untuk memaksa Percepatan terbuka: Buka registry, cari HKEY_CURRENT_USER / Software / Microsoft / Internet Explorer / GPU menemukan SoftwareFallback, !!!  data nilai dari 1 ke 0, dan kemudian restart IE9 Browser,  
   Internet Options - Advanced ditemukan dalam pengaturan  
"Penggunaan software rendering bukan GPU" di depan "√" dapat dihapus.
9 Mari IE9 dukungan jaringan bookmark syncA: Jaringan dengan Xmarks Bookmark Sync software,  

Xmarks juga mendukung semua browser utama, seperti: Chrome, Firefox, IESafari.
10.IE9 sejarah tombol akses cepat hilang?
A: antarmuka IE9 lebih ringkas, sehingga sejarah tombol akses  

cepat untuk menyembunyikan. IE8 melalui tombol maju dan mundur di  
samping panah kecil untuk melihat sejarah akses, 
sedangkan IE9 melalui metode berikut:· Akan maju atau mundur tombol (jika tersedia) berlaku untuk satu detik.
· Pada tombol maju atau mundur (jika tersedia), klik tombol kanan mouse.
· Pada tombol maju atau mundur (jika tersedia) dengan mengklik, 

 menyeret turun secara bersamaan.  
  Metode ini khusus dirancang untuk kontrol sentuh.

11 Mari IE9 lebih "situs yang Anda gunakan."A: ". Tingkat aktivitas" IE9 "situs yang paling banyak dikunjungi Anda" 
dapat secara otomatis merekam frekuensi tertinggi berguna bagi para 
pengguna di luar jaringan, tetapi juga melalui "mini bar" mengidentifikasi setiap 
halaman dari Mari IE9 lebih "situs yang paling sering Anda gunakan" pendekatan:Win + r, ketik regedit, registry editor, locate: ExplorerTabbedBrowsingNewTabPage HKEY_CURRENT_USERSoftwareMicrosoftInternetHak untuk mendirikan bernama "numRows" DWORD (32-bit) Value,  
dan menetapkan jumlah baris yang Anda inginkan  
(seperti penulis disini untuk masuk "5", yaitu 5 baris).
12 Cara "situs yang sering Anda gunakan," ditetapkan sebagai rumah Anda?
Jawaban: "Internet Options" kotak input pada home page yang masuk tentang: tab13 tidak dapat menginstal IE9, installer tidak mulai ......J: Berikut empat Patch pembaruan instalasi· Windows6.1-KB2259539-x86· Windows6.1-KB2120976-x86· Windows6.1-KB2028560-v2-x86· Windows6.1-KB2028551-v2-x8614.IE9 dapat menyaring iklan?
J: Berikut ini digunakan di dalam style sheet IE9 fitur,  

pertama download dengan gaya iklan berkas sheet,  
ekstrak ke tempat manapun, dan kemudian buka IE "Internet Options",  
klik "Aksesibilitas", centang "dokumen tata letak menggunakan style --
--sheet Format ", pilih file gaya ****