zoukankan      html  css  js  c++  java
  • Ubuntu-14.04.6 安装 oracle 12.2.0.1 数据库database软件

    as of:

    #!/bin/sh
    
    ##ubunt-14.04
    ##Linux ubuntu14 4.4.0-142-generic #168~14.04.1-Ubuntu SMP Sat Jan 19 11:26:28 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
    ##/lib/x86_64-linux-gnu/libc.so.6: GNU C Library (Ubuntu EGLIBC 2.19-0ubuntu6.14) stable release version 2.19, by Roland McGrath et al.
    ##gcc  gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04.4)
    ##ii  libstdc++6:amd64                    4.8.4-2ubuntu1~14.04.4                               amd64        GNU Standard C++ Library v3
    ######################################
    cat <<eof>>/etc/profile
    export DISPLAY=192.168.157.1:0
    alias cls=clear
    alias ll='ls -l --color'
    alias Grep=grep
    eof
    
    ######################################
    
    apt-get update
    
    #apt-get -y install wget man curl ftp telnet net-tools strace psmisc tree
    #apt-get -y install rlwrap
    
    apt-get -y install gcc make libc6-dev
    apt-get -y install libaio-dev
    
    #apt-get -y install xbase-clients
    apt-get -y install x11-utils  xauth
    
    ######################################
    
    ln -sf /bin/bash    /bin/sh
    ln -s  /usr/bin/awk /bin/
    ln -s  /usr/lib/x86_64-linux-gnu /usr/lib64
    
    ######################################
    
    groupadd   oinstall
    useradd -g oinstall -m  -s /bin/bash oracle
    mkdir /u01
    chown oracle:oinstall /u01
  • 相关阅读:
    mysql03聚合函数
    栈、队列、循环队列、双端队列、优先级队列04
    OOAD之策略模式(1)
    jvm01:java内存区域与内存
    Python+Selenium
    Python+Selenium
    Python+Selenium
    Python+Selenium
    Python+Selenium
    Python+Selenium
  • 原文地址:https://www.cnblogs.com/jinzhenshui/p/13414630.html
Copyright © 2011-2022 走看看