如何才能在Linux中安装上oracle 10G,安装成功后,还需要打什么补丁东东?

如何才能在Linux中安装上oracle 10G,安装成功后,还需要打什么补丁东东?

如何才能在Linux中安装上oracle 10G,安装成功后,还需要打什么补丁东东?
有没有必要同时也把apache之类的服务东东也装在?
且我想在每一次启动linux时,希望oracle所有的服务能自动启动起来,不想去手动设置,我应如何去做脚本?
还用就是VSS( visual safe source)能在linux环境中实现吗?还是用其他什么东东来达到编程版本更新?VSN可以吗?
请高人指点一二。我是准备把原来的 windows advance server 2k环境上数据库编程部署在linux 平台环境下。但linux 是我第一次尝试,新手一个。谢谢!      
VSS( visual safe source)能在linux环境中实现吗?
svn比这个强大多了吧。
安装上oracle 10G,安装成功后,还需要打什么补丁东东?
去oracle网站看看.
我应如何去做脚本?
google上很多的.是在不行自己编写一个.      
创建自启动脚本
创建 oracledb 脚本到/etc/init.d/oracledb,内容如下
复制内容到剪贴板
代码:
#!/bin/bash
#
# /etc/init.d/oracledb
#
# Run-level Startup script for the Oracle Instance, Listener, and
# Web Interface
export ORACLE_HOME=/opt/ora10
export ORACLE_SID=compiere
export PATH=$PATHORACLE_HOME/bin
ORA_OWNR="oracle"
# if the executables do not exist -- display error
if [ ! -f $ORACLE_HOME/bin/dbstart -o ! -d $ORACLE_HOME ]
then
echo "Oracle startup: cannot start"
exit 1
fi
# depending on parameter -- startup, shutdown, restart
# of the instance and listener or usage display
case "$1" in
start)
# Oracle listener and instance startup
echo -n "Starting Oracle: "
su $ORA_OWNR -c "$ORACLE_HOME/bin/lsnrctl start"
su $ORA_OWNR -c $ORACLE_HOME/bin/dbstart
touch /var/lock/oracle
su $ORA_OWNR -c $ORACLE_HOME/bin/emctl start dbconsole
echo "OK"
;;
stop)
# Oracle listener and instance shutdown
echo -n "Shutdown Oracle: "
su $ORA_OWNR -c "$ORACLE_HOME/bin/lsnrctl stop"
su $ORA_OWNR -c $ORACLE_HOME/bin/dbshut
rm -f /var/lock/oracle
su $ORA_OWNR -c $ORACLE_HOME/bin/emctl stop dbconsole
echo "OK"
;;
reload|restart)
$0 stop
$0 start
;;
***)
echo "Usage: `basename $0` start|stop|restart|reload"
exit 1
esac
exit 0
      
这个网上有一个非常详细的安装步骤www.zhaoyang-db.com      
linux的版本是什么?
我刚装了
rh4.4不需要任何补丁,只需要设定一些参数即可

rh5.1安装需要部分补丁,安装时E文安装的话会导致在使用EM时按钮为乱码!

是否需要补丁还是看你已经安装了哪些包有关,以上仅供参考!      
em乱码可以在google上面搜索解决,很简单。
自启动也可以找到脚本!lz实在找不到可去我的msn空间里面看去

chatazhu@hotmail.com