This simple script will help you download and install Sun Java (JRE, JDK) 6 or 7 packages in Ubuntu 12.04 easily.
We’ve written many tutorials on this blog that show you how to install Sun Java (JRE, JDK) in Ubuntu, and this is another method to use to install these packages. I love this script better because it actually downloads and create a .dab package archive locally which allows you to install Java packages by using apt-get install commands. For more information about this script, click here.
So, if other methods are too difficult to use to install Java, then try this and see how it works.
Objectives:
- Install Sun Java 6 and Oracle Java 7 in Ubuntu 12.04 (Precise Pangolin)
- Enjoy!
To get started, press Ctrl – Alt – T on your keyboard to open terminal. When terminal opens, run the commands below to download the script.
wget https://github.com/flexiondotorg/oab-java6/raw/0.2.4/oab-java.sh -O oab-java.sh
Next, run the command below to make the script executable.
chmod +x oab-java.sh
Then run the script below to download Sun Java 6 Packages. This will only download Sun Java 6 package.
sudo ./oab-java.sh
To download Sun / Oracle Java 7 packages, run the commands below. It’s recommended in most cases to download Java 7 Packages.
sudo ./oab-java.sh -7
After downloading either Java 6 packages, run the commands below to install Sun Java 6.
sudo apt-get install sun-java-jre sun-java-jdk sun-java6-plugin sun-java6-fonts
Or install Oracle Java 7 packages by running the commands below.
sudo apt-get install oracle-java7-jre oracle-java7-jdk oracle-java7-plugin oracle-java7-fonts
Enjoy!