zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

Ubuntu-14.04.6 安装 oracle 11.2.0.4 数据库database软件

2023-09-27 14:24:27 时间

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