谁能给我在 ubuntu 16.04 上逐步安装 oracle 开发套件 10g 的过程?

Can anyone please give me the step by step installation process of the oracle development suite 10g on ubuntu 16.04?

我的机器上已经安装了oracle 11g企业版。但现在我必须使用 Reports and Forms Builder,它被告知要安装 Oracle Developer Suite 10g。

我已经从 oracle 站点下载了 .cpio 文件 https://www.oracle.com/technetwork/developer-tools/developer-suite/downloads/101202linuxsoft-099233.html

现在我应该如何处理这些文件? 谢谢。

甲骨文 10g2?哇,有点过时了,但它在这里:

  1. 安装 libaio1 库:

    sudo apt-get update; 
    sudo apt-get install -y libaio1 bc
    
  2. [从 Oracle] 下载并安装 oracle 数据库包。确保您获得正确的架构(在慢速机器上大约需要 3 分钟):

    sudo dpkg -i oracle-xe-universal_10.2.0.1-1.0_i386.deb
    
  3. 配置 Oracle [根据需要更改密码](在慢速机器上大约需要 4 分钟):

    sudo /etc/init.d/oracle-xe configure
    

    并回答每个问题:

    Oracle Database 10g Express Edition Configuration
    -------------------------------------------------
    This will configure on-boot properties of Oracle Database 10g Express 
    Edition.  The following questions will determine whether the database should 
    be starting upon system boot, the ports it will use, and the passwords that 
    will be used for database accounts.  Press <Enter> to accept the defaults. 
    Ctrl-C will abort.
    
    Specify the HTTP port that will be used for Oracle Application Express [8080]: <Enter>
    
    Specify a port that will be used for the database listener [1521]: <Enter>
    
    Specify a password to be used for database accounts.  Note that the same
    password will be used for SYS and SYSTEM.  Oracle recommends the use of 
    different passwords for each database account.  This can be done after 
    initial configuration: system
    Confirm the password: system
    
    Do you want Oracle Database 10g Express Edition to be started on boot (y/n) [y]: <Enter>
    
    Starting Oracle Net Listener...Done
    Configuring Database...Done
    Starting Oracle Database 10g Express Edition Instance...Done
    Installation Completed Successfully.
    To access the Database Home Page go to "http://127.0.0.1:8080/apex"
    
  4. 在~/.bashrc中设置session环境变量:

    # =====================
    # Oracle database setup
    # =====================
    
    export ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    export PATH=$PATH:$ORACLE_HOME/bin
    export ORACLE_SID=XE
    
  5. 注销并重新登录,以加载更改。