Ubuntu : Netbeans Installation

This Guide is useful for Netbeans Installation on Ubuntu. Generally we face problems during installation of Netbeans like JDK path, package not available, permissions denied etc. This guide gives  you step by step instructions to easy installation of Netbeans. Hope so it helps you a lot !

1. Update your Ubuntu 14.04 :
Ubuntu is open-source operating system which provides updates frequently for users to overcome security breaches and enhance user experience. Just type this command on your terminal : (open terminal using Ctrl+Alt+t or type terminal in ubuntu search bar )       
sudo add-apt-update

For LAMP stack use following commands :
sudo apt-get install apache2
sudo apt-get install php5
sudo apt-get install mysql-server mysql-client
sudo apt-get install phpmyadmin
 
2. Download Netbeans from official website :  
Select your os type(32/64 bit) and download from following link :
                               https://netbeans.org/downloads/


3. Change permission 
for downloaded file :
sudo chmod +x netbeans-8.0-linux.sh

4. Install JDK 
There are two option for install JDK. You can use OpenJDK or Orcale JDK. for this guide I am using Oracle JDK . just follow simple steps.
 
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java7-installer  
 
After installation of Java you can check your java version using it.
java -version
 
4. Install Netbeans :
       ./netbeans-8.0-linux.sh --java /usr/lib/jdk1.7.0_13 
 
After that it open GUI based netbeans installation. 
Just accept terms and condition and install it.
I Hope it works for you .. Enjoy !!!  

No comments:

Post a Comment