Last active
November 4, 2015 15:43
-
-
Save odekopoon/d08a28a98404b800127f to your computer and use it in GitHub Desktop.
Install Oracle JDK8 on Scaleway Ubuntu 14.04 Server (ARMv7 32bit)
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
# Scaleway(https://www.scaleway.com/) | |
# add user && set sudo | |
adduser admin | |
su - admin | |
# install add-apt-repository | |
sudo apt-get update | |
sudo apt-get install -y software-properties-common | |
# install oracle jdk8 | |
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
sudo apt-get install -y oracle-java8-installer | |
# remove cache | |
# sudo rm -rf /var/lib/apt/lists/* | |
# sudo rm -rf /var/cache/oracle-jdk8-installer | |
# install leiningen | |
curl -L https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein > lein | |
chmod a+x lein && sudo mv lein /usr/local/bin | |
lein repl < /dev/null | |
# install boot (install with long time) | |
curl -L https://github.com/boot-clj/boot/releases/download/2.4.0/boot.sh > boot | |
chmod a+x boot && sudo mv boot /usr/local/bin | |
boot repl < /dev/null | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment