$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

How to Install Oracle 12c R1 Database on Ubuntu 18.04 Bionic 64-bit Easy Guide | Installing Packages

May 9, 2018 | By the+gnu+linux+evangelist.

<< 1/5 Previous Step – Oracle 12c DB Installation on Ubuntu 18.04 64-bit
.

The article contains the necessary instructions about How to Install Oracle 12c R1 Database on Ubuntu 18.04 Bionic Installing the Required Packages and Making the needed Symlinks.

Oracle 12c R1 DB Installation on Ubuntu 18.04 Bionic
2/5 Installing Packages & Making Symlinks

  1. Installing the Required Packages
    Installing Ubuntu Bionic Packages:

    Copy
    apt update
    Copy
    sudo apt install unixodbc unixodbc-dev unzip lsb-cxx pdksh sysstat gcc g++-multilib lib32ncurses5 lib32z1 ksh lesstif2 zlibc rpm libc6 libc6-dev libc6-dev-i386 libc6-i386 gcc-multilib less lib32z1 libelf-dev binutils libodbcinstq4-1 libpth-dev zenity libpthread-stubs0 libstdc++5 autotools-dev bzip2 elfutils g++ rlwrap libltdl-dev libxm4:i386 libuil4:i386 libmrm4:i386 libxm4 libuil4 libmrm4 libmotif-common libpthread-stubs0-dev build-essential expat gawk alien autoconf automake lesstif2-dev

    Then Install the Legacy Libraries.
    First, Enable Precise Repository with:

    Copy
    echo 'deb [trusted=yes] http://old-releases.ubuntu.com/ubuntu/ precise main universe' 
    > /etc/apt/sources.list.d/extra.list
    Copy
    apt update

    And then Install:

    Copy
    apt install lesstif2 lesstif2-dev pdksh libaio-dev libpthread-stubs0 lsb-cxx

    Restore System with:

    Copy
    apt remove /etc/apt/sources.list.d/extra.list
    Copy
    apt update

    Set to Hold the Installed Libraries without Upgrading:

    Copy
    apt-mark hold libaio-dev lesstif2 lesstif2-dev pdksh libpthread-stubs0 lsb-cxx

    Finally, Make a needed Symlink:

    Copy
    ln -s /lib/x86_64-linux-gnu/libgcc_s.so.1 /lib64/libgcc_s.so.1



  2. Make Symlinks to Binaries and Libraries

    Linking Binaries

    Copy
    ln -s /usr/bin/awk /bin/awk
    Copy
    ln -s /usr/bin/rpm /bin/rpm
    Copy
    ln -s /usr/bin/basename /bin/basename

    Linking Libraries

    Copy
    ln -s /usr/lib/x86_64-linux-gnu /usr/lib64
    Copy
    ln -s /lib/libgcc_s.so.1 /lib/libgcc_s.so
    Copy
    ln -s /lib/x86_64-linux-gnu/libgcc_s.so.1 /lib64/libgcc_s.so.1
    Copy
    ln -sf /bin/bash /bin/sh



3/5 Next Step – Oracle 12c R1 DB Installation on Ubuntu 18.04 64-bit >>.