Last active
January 30, 2019 16:54
-
-
Save varun-raj/9a038124bd03a1d422584244e57929c9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mkdir /opt/oracle | |
sudo chown -R $USER:$USER /opt/oracle | |
cd /opt/oracle | |
wget https://github.com/bumpx/oracle-instantclient/raw/master/instantclient-basiclite-linux.x64-18.3.0.0.0dbru.zip | |
sudo apt-get install unzip | |
sudo apt-get install libaio1 | |
unzip instantclient-basiclite-linux.x64-18.3.0.0.0dbru.zip | |
echo 'export LD_LIBRARY_PATH=/opt/oracle/instantclient_18_3:$LD_LIBRARY_PATH' >> ~/.bashrc | |
echo 'export PATH=/opt/oracle/instantclient_18_3:$PATH' >> ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment