栏目搜索
 
 
 
 
你的位置:首页 > 操作系统 > Unix >
 

在solaris9 x86下安装mozilla 1.4 完全安装指南

日期:2006-03-24 00:00:00  点击:  作者:  来源:    【我要投稿】   【加入我的收藏夹】

本文章地址:http://www.netbarguide.com/OS/Unix/onT4T.html [点此复制地址]

用了Solaris9 x86 Netscape的网页浏览简直快疯了,决定更换mozilla1.4,虽然是java,但在x86下的,感觉很象redhat,哈哈哈哈,, :-) 阅读一些安装文档,把安装心得写了出来,以方便大家安装。

1、安装一些必要的软件,(注意安装顺序)哪里下载不用说吧!

gcc3.3
libiconv
atk
zlib
freetype
expat
fontconfig
pango
gtk

2、下载一个J2SE补丁
光盘上拷到本地硬盘上。#cp -R 10g_db_i.gz /export/home
在解压 #gunzip 10g_db_i.gz
#cpio -ivmd <10g_db_i
如果这时执行/export/home/db/Disk1/run*就会出现这样的错误提示:
Checking installer requirements...

Checking operating system version: must be 5.6, 5.7, 5.8 or 5.9. Actual 5.10
Failed <<<<

Exiting Oracle Universal Installer, log for this session can be found at

/tmp/OraInstall2004-10-26_09-45-32AM/installActions2004-10-26_09-45-32AM.log
查看installActions2004-10-26_09-45-32AM.log

$ vi installActions2004-10-26_09-45-32AM.log
Using paramFile: /export/home/oracle/db/Disk1/install/oraparam.ini


Checking installer requirements...

Checking operating system version: must be 5.6, 5.7, 5.8 or 5.9. Actual 5.10
Failed <<<<

Exiting Oracle Universal Installer, log for this session can be found at /tmp/Or
aInstall2004-10-26_09-45-32AM/installActions2004-10-26_09-45-32AM.log

想要解决这个问题就要在/export/home/db/Disk1/install里,修改oraparam.ini oraparam.var

修改如下:
vi oraparam.ini

#You can customise error message shown for failure through CERTIFIED_VERSION_FAI
LURE_MESSAGE
Solaris=5.6,5.7,5.8,5.9, 5.10 (就是添加5.10)
Linux=redhat-2.1AS
#HPUX=B.11.00
DecUnix=V5.1A,V5.1
AIX=5.1.0.0


vi oraparam.var

#You can customise error message shown for failure through CERTIFIED_VERSION_FAI
LURE_MESSAGE
Solaris=5.8,5.9, 5.10 (就是添加5.10)
Windows=4.0,5.0,5.1,5.2
Linux=redhat-2.1AS
HPUX=B.11.11
Decunix=V5.1A,V5.1
AIX=5.1.0.0

保存,在执行。./runInstaller 就OK了。
后续工作就不一一说明了。

This document explains the flags value in ifconfig -a output. For example:
# ifconfig -a
lo0: flags=1000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4> mtu 8232 index 1
inet 127.0.0.1 netmask ff000000
hme0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
inet 129.149.141.67 netmask ffffff00 broadcast 129.149.141.255

The flags value is a hexadecimal representation of the state of the interface. Each number in the value is distinct. In the above example, both flags= values are comprised of 7 different hex values, 1,0,0,0,8,4,9. To find out what the value means, follow the chart below: For example if the flags value is 1000849, that means the interface card is:
0x00000008 + 0x00000001 = is a loopback and the card is up
0x00000040 = resources are allocated
0x00000800 = card supports multicasting
=========
0x00000849
Previous to Solaris[TM] 8, the flags value only showed three digits, e.g., flags=843. Below is the chart excerpt from /usr/include/net/if.h:
0x00000001 /* interface is up */
0x00000002 /* broadcast address valid */
0x00000004 /* turn on debugging */
0x00000008 /* is a loopback net */
0x00000010 /* interface is point-to-point link */
0x00000020 /* avoid use of trailers */
0x00000040 /* resources allocated */
0x00000080 /* no address resolution protocol */
0x00000100 /* receive all packets */
0x00000200 /* receive all multicast packets */
0x00000400 /* protocol code on board */
0x00000800 /* supports multicast */
0x00001000 /* multicast using broadcast address */
0x00002000 /* non-unique address */
0x00004000 /* DHCP controls this interface */
0x00008000 /* do not advertise */
0x00010000 /* Do not transmit packets */
0x00020000 /* No address - just on-link subnet */
0x00040000 /* interface address deprecated */
0x00080000 /* address from stateless addrconf */
0x00100000 /* router on this interface */
0x00200000 /* No NUD on this interface */
0x00400000 /* Anycast address */
0x00800000 /* Do not exchange routing info */
0x01000000 /* IPv4 interface */
0x02000000 /* IPv6 interface */
0x04000000 /* Mobile IP controls this interface */
0x08000000 /* Don't failover on NIC failure */
0x10000000 /* NIC has failed */
0x20000000 /* Standby NIC to be used on failures */
0x40000000 /* Standby active or not ? */
0x80000000 /* NIC has been offlined */