Bringing the best of technology!
Installing Java in Ubuntu 8.10 (Intrepid Ibex)
It’s pretty ironical that Ubuntu doesn’t come with default Java (JRE) installation. Considering the fact that this is almost a mandatory requirement for most of the softwares, it becomes imperative that you have it running on your machine. We’ll see how in easy way we can install JRE on your Ubuntu 8.10 machine.
We’ll be looking at two ways of doing this. One, we’ll install JRE using aptitude and int he second way we’ll see how to install it using the bin file.
Installing using aptitude
1. Make sure multiverse repositories are enabled. To do so all you have to do is go to
System->Administration->Software Sources

2. Make sure the multiverse package is selected.

3. Open the terminal window and type the following command.
sudo apt-get update
sudo apt-get install sun-java6-jre sun-java6-plugin sun-java6-fonts
sudo update-alternatives --config java
This should download and install Java RunTime Environment on your machine.
Installing using JRE Bin file
1. Download the latest JRE from here. In my case I have JRE 6.
2. Open a terminal window and type the following changin ? to the version you have downloaded.
chmod +x j??-6-linux-*.bin
sudo ./j??-6-linux-*.bin
sudo cp j??1.6.0 /usr/lib/jvm/java-1.6.0-sun
sudo update-alternatives --install "/usr/bin/java" "java" "/usr/lib/jvm/java-1.6.0-sun/jre/bin/java" 1
sudo update-alternatives --set java /usr/lib/jvm/java-1.6.0-sun/jre/bin/java
This should install Java RunTime Environment as well. However, using the earlier method is an easier and foolproof way of doing it.
Once you have installed JRE on your machine you should check if it is correctly installed. You can do so my tying the following and in a terminal window
java -version
and it should return the something like this:
java version "1.6.0_10"
Java(TM) SE Runtime Environment (build 1.6.0_10-b33)
Java HotSpot(TM) Server VM (build 11.0-b15, mixed mode)
Also to check if the java plugin is correctly installed in your Firefox you can check it by typing “about:plugins” and it should look something like this:

I hope that in future version of Ubuntu, Java comes integrated with the operating system to make it easier or if there is a deb package for the same.

Related posts:
| Print article | This entry was posted by Vivek on December 24, 2008 at 12:45 am, and is filed under Featured, Technology, Ubuntu. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |











No comments yet.
Installing free BitDefender Anti-Virus on Ubuntu 9.04
about 1 year ago - View Comments
Share In most cases you won’t need an Anti-Virus for your Linux machine. But it’s always safe than to be sorry and hence getting some protection is never a bad idea. Today we’ll see how to install BitDefender Anti-Virus on Ubuntu machine (Jaunty Jackalope). The best part is it’s free for personal use and comes
Free AVG Anti-Virus for Ubuntu
about 1 year ago - View Comments
Share One of the reason apart from other 1000 for me to use Linux is that I don’t have to worry about installing an Anti-Virus. Not that it’s totally protected from viruses but if you are smart you wont end up getting one. Just don’t do things with super user priveleges unless you know what
Social Brainstorming and MindMapping using XMind in Ubuntu
about 1 year ago - View Comments
Share Being a student and in research, I have always tried to use technology for making a point and this statement is used with literal connotation. One of my favorite way of engaging an audience is to use mindmaps. In this tutorial we’ll see how to get an open source software for mindmapping. Xmind is
Shutter: Best screenshot application for Linux
about 1 year ago - View Comments
Share It’s been a while I blogged because few things have kept me busy. I plan to get back to blogging on a regular basis. Up untill now I was using ksnapshot for screenshots in Ubuntu and I was pretty satisfied with it. Because it’s a KDE based application I was not too happy using
Free Ubuntu Guide
about 1 year ago - View Comments
Share A very quick post. Although I don’t feel the need for a book to handle my Ubuntu but if anyone is interested in downloading a guide for Ubuntu, you can get it here. So if you ever face problems with Ubuntu this guide might come handy. Also, to learn and to get started with
Adding Facebook chat to pidgin: Pidgin-facebookchat plugin
about 1 year ago - View Comments
Share If you are on Linux (Ubuntu), I am sure you must have tried your hands on Pidgin, one of the most popular and powerful IM client. The beauty of this client is that it supports almost all the IM services like google talk and yahoo messenger. I am also sure that there are many
Tasque: A simple but powerful to-do list and task manager for Ubuntu
about 1 year ago - View Comments
Share To-do lists have become the norm today irrespective of what operating system you are using. And it’s a good reason to be organized when you that you spend so much time doing so many things in a day; courtesy Internet and Social Media paranoia. I was hit upon with Tasque, a simple desktop based
BareFTP: Not just another FTP client for Ubuntu 8.10
about 1 year ago - View Comments
Share Filezilla is the FTP client that comes to my mind when I think of an FTP whether it is Windows or whether is Ubuntu. Not to forget the import FireFTP extension. However, I thought I’ll try out something new on my Intrepid partition and hence I ended up on bareFTP. Well, as the name
Installing and setting up Java 6 JDK in Intrepid Ibex
about 1 year ago - View Comments
Share We have earlier seen how to install Java Run Time Environment in Intrepid Ibex (Ubuntu 8.10). We achieved the installation of JRE using 2 methods: 1. Installing normally 2. Installing JRE with one click using Appnr JRE is a pre-requisite for many application like LimeWire. However, you would need JDK 6 (or other version)
Mounting and Unmounting ISO files in Ubuntu using Gmount-iso [Ubuntu How-to]
about 1 year ago - View Comments
Share I am not sure how many of you felt the need to mount an ISO disc on Ubuntu or similar debian based linux distros. I did and hence I explored to find that there are various ways to mount an ISO file on Ubuntu. But nothing will ever be able to beat a non-geeky,
Comments are closed.