Click here and you will see all about me.
Jun 17
2011
2011
Jun 17
2011
2011
How to install IntelliJ IDEA on Ubuntu
There are few steps to do this.
1 . Install the Java 6 JDK.
sudo apt-get install sun-java6-jdk
2. Download the latest version of IntelliJ IDEA for Linux.
http://www.jetbrains.com/idea/download/index.html#linux
3. Extract the archive using the correct filename according to your download.
tar xfz idea-X.X.X.tar.gz ./usr/lib/
4. Set a new environment variable that tells IntelliJ where your install of Java is.
export JDK_HOME=”/usr/lib/jvm/java-6-sun/”
5. Add /usr/lib/idea-XXXX/bin to the and of file.
sudo mousepad /etc/environment
6. “source” it for your system to pick up the new directory in the PATH.
source /etc/environment
Now you can run “idea.sh” from a terminal in any directory.
Jun 16
2011
2011

