Created
September 7, 2011 13:44
-
-
Save mmm/1200599 to your computer and use it in GitHub Desktop.
sun java on ubuntu
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
#!/bin/bash | |
RELEASE_CODE=`lsb_release -a | awk '/Codename/ { print $2 }'` | |
add-apt-repository "deb http://archive.canonical.com/ ${RELEASE_CODE} partner" | |
apt-get update | |
apt-get -y install -qq --no-install-recommends debconf-utils | |
echo "sun-java6-plugin shared/accepted-sun-dlj-v1-1 boolean true" | debconf-set-selections | |
DEBIAN_FRONTEND=noninteractive apt-get -y install -qq sun-java6-jdk | |
update-java-alternatives --jre -s java-6-sun | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment