Oracle的补丁集(Patch Set)需要登录metalink下载,下面是个版本升级补丁的号码:
9.2.0.4 = 3095277
9.2.0.5 = 3501955
9.2.0.6 = 3948480
9.2.0.7 = 4163445
9.2.0.8 = 4547809(9i最终)
10.1.0.3 = 3761843
10.1.0.4 = 4163362
10.1.0.5 = 4505133
10.2.0.2 = 4547817
10.2.0.3 = 5337014
10.2.0.4 = 没有发布
下载补丁时,可进入cmd,使用ftp命令直接登录网站下载。相同版本,针对不同的操作系统,会有不同的补丁。每个补丁大小约在500MB~1.3GB之间。下面以 9.2.0.8 补丁为例(登陆的时候以metalink的用户名和密码登陆):
C:\Users\sz>ftp updates.oracle.com
连接到 bigip-updates-test-adc.oracle.com。
220 FTP server ready.
用户(bigip-updates-test-adc.oracle.com:(none)): aaa@bbb.com
331 Username OK, please send password.
密码:
230-
230- Welcome to the Oracle Patch Download FTP Server
230-
230- For detailed help, use command "quote site help".
230
注意根目录是不能ls的,因为Patch是海量的:
ftp> ls
200 PORT command OK.
150 Opening data connection for file listing.
226-Listing complete. Data connection has been closed.
226-It is the policy of this server to deny all
226-requests to list from the root directory.
226-Only directories with names which match
226 bug numbers exist and there are too many to be listed.
ftp>
我们必须知道确切的Patch号才能导航到下一级目录:
ftp> cd 4547809
250 Changed directory OK.
ftp> ls -la
200 PORT command OK.
150 Opening data connection for file listing.
total 1
-r--r--r-- 1 root other 1011302810 Aug 22 2006 p4547809_92080_AIX64-5L.z
-r--r--r-- 1 root other 301383322 May 22 2007 p4547809_92080_AXP.zip
-r--r--r-- 1 root other 614741565 Aug 22 2006 p4547809_92080_HP64.zip
-r--r--r-- 1 root other 915111254 Oct 4 2006 p4547809_92080_HPUX-IA64.z
-r--r--r-- 1 root other 382660178 Aug 25 2006 p4547809_92080_LINUX.zip
-r--r--r-- 1 root other 650429665 Aug 22 2006 p4547809_92080_Linux-IA64.
-r--r--r-- 1 root other 487245960 Aug 22 2006 p4547809_92080_Linux-x86-6
-r--r--r-- 1 root other 173812249 Aug 22 2006 p4547809_92080_MVS.zip
-r--r--r-- 1 root other 369346915 Aug 24 2006 p4547809_92080_SOLARIS.zip
-r--r--r-- 1 root other 435868682 Aug 24 2006 p4547809_92080_SOLARIS64.z
-r--r--r-- 1 root other 1018459573 Mar 4 2007 p4547809_92080_TRU64.zip
-r--r--r-- 1 root other 257710303 Aug 21 2006 p4547809_92080_WINNT.zip
-r--r--r-- 1 root other 378323336 Aug 22 2006 p4547809_92080_WINNT64.zip
226 Listing complete. Data connection has been closed.
ftp: 收到 1099 字节,用时 2.00秒 0.55千字节/秒。
ftp>
然后使用get或mget命令下载即可。
也可以使用FTP浏览器查看并下载,比如迅雷的查看如下图:
--End--