zoukankan      html  css  js  c++  java
  • Ubuntu-14.04.6 安装 oracle 11.2.0.4 数据库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
    
    ######################################
    
    mv /usr/bin/gcc /usr/bin/gcc.old
    cat <<eof>>/usr/bin/gcc
    #!/bin/sh
    /usr/bin/gcc-4.8 -Wl,--no-as-needed $*
    eof
    chmod 755 /usr/bin/gcc
    
    ######################################
    
    ln -sf /bin/bash    /bin/sh
    ln -s  /usr/bin/awk /bin/
    ln -s  /usr/lib/x86_64-linux-gnu /usr/lib64
    
    ##only-for-oracle-11g
    ln -s /lib/x86_64-linux-gnu/libgcc_s.so.1 /lib64/
    
    ######################################
    
    groupadd   oinstall
    useradd -g oinstall -m  -s /bin/bash oracle
    mkdir /u01
    chown oracle:oinstall /u01
  • 相关阅读:
    二分专题
    数据结构-图
    Linux文件基本属性(以ls -l输出为例解释)
    shell脚本版素数筛
    Linux whereis,which
    Linux外网代理配置
    Linux三剑客
    Elasticsearch集群搭建(Linux)
    测试之路
    我的另一半
  • 原文地址:https://www.cnblogs.com/jinzhenshui/p/13414625.html
Copyright © 2011-2022 走看看