This file contains hidden or 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
apt-get update -y | |
mkdir temporacle | |
cd temporacle | |
wget http://cc.etsii.ull.es/ftp/packages/oracle-instantclient12.2-basic_12.2.0.1.0-2_amd64.deb | |
wget http://cc.etsii.ull.es/ftp/packages/oracle-instantclient12.2-devel_12.2.0.1.0-2_amd64.deb | |
wget http://cc.etsii.ull.es/ftp/packages/oracle-instantclient12.2-sqlplus_12.2.0.1.0-2_amd64.deb | |
dpkg -i *.deb | |
apt-get install -y rlwrap | |
apt-get install -y libaio1 libaio-dev |
This file contains hidden or 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
#!/bin/bash | |
# | |
# Script instalador de Docker CE y software necesario para el curso 'Introducción a Docker' en Bardinux5 (Xubuntu 16.04) | |
# | |
# Creado por la Oficina de Software Libre de la ULL <info@osl.ull.es> | |
# | |
# Contribuidores: | |
# - Andrés Nacimiento García <anacimie@ull.edu.es> | |
# | |
# Version: 0.1 |
This file contains hidden or 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
#!/bin/bash | |
# | |
# go things... | |
cd /usr/local | |
curl -O https://storage.googleapis.com/golang/go1.8.linux-amd64.tar.gz | |
tar xvfz go1.8.linux-amd64.tar.gz | |
rm -f go1.8.linux-amd64.tar.gz | |
export PATH=$PATH:/usr/local/go/bin:/opt/go/bin | |
export GOPATH=/opt/go |