• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install NetBeans IDE 8.2 in Ubuntu 18.04

2708

To Install NetBeans IDE 8.2 in Ubuntu 18.04
The NetBeans is an open-source integrated development environment which provides a much powerful Java application framework platform that allows programmers to easily develop Java-based web applications, mobile applications, and desktop applications. In this tutorial, we will cover the installation of NetBeans IDE 8.2 in Ubuntu 18.04.

Installation

First, we need java to be installed on our machine so add the PPA repo of java as follows.

root@linuxhelp1:~# add-apt-repository ppa:webupd8team/java
 Oracle Java (JDK) Installer (automatically downloads and installs Oracle JDK8). There are no actual Java files in this PPA.

Important ->  Why Oracle Java 7 And 6 Installers No Longer Work: http://www.webupd8.org/2017/06/why-oracle-java-7-and-6-installers-no.html
.
.
Hit:5 http://in.archive.ubuntu.com/ubuntu bionic-backports InRelease                  
Get:6 http://ppa.launchpad.net/webupd8team/java/ubuntu bionic/main amd64 Packages [1,556 B]
Get:7 http://ppa.launchpad.net/webupd8team/java/ubuntu bionic/main i386 Packages [1,556 B]
Get:8 http://ppa.launchpad.net/webupd8team/java/ubuntu bionic/main Translation-en [928 B]
Fetched 19.4 kB in 3s (5,787 B/s)
Reading package lists... Done

Now, you need to update the system repository.

root@linuxhelp1:~# apt-get update
Hit:1 http://ppa.launchpad.net/webupd8team/java/ubuntu bionic InRelease
Hit:2 http://in.archive.ubuntu.com/ubuntu bionic InRelease
Hit:3 http://security.ubuntu.com/ubuntu bionic-security InRelease
Hit:4 http://in.archive.ubuntu.com/ubuntu bionic-updates InRelease
Hit:5 http://in.archive.ubuntu.com/ubuntu bionic-backports InRelease
Reading package lists... Done

Now, install a Java as follows.

root@linuxhelp1:~# apt-get install oracle-java8-installer
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  apache2-bin apache2-data apache2-utils libapr1 libaprutil1 libaprutil1-dbd-sqlite3
  libaprutil1-ldap
Use ' sudo apt autoremove'  to remove them.
The following additional packages will be installed:
.
.
Unpacking gsfonts-x11 (0.25) ...
Setting up gsfonts-x11 (0.25) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Setting up oracle-java8-set-default (8u171-1~webupd8~0) ...
Processing triggers for man-db (2.8.3-2) ...
Processing triggers for shared-mime-info (1.9-2) ...
Processing triggers for gnome-menus (3.13.3-11ubuntu1) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for fontconfig (2.12.6-0ubuntu2) ...

Download a Netbeans package from the terminal using wget command.

root@linuxhelp1:~# wget -c http://download.netbeans.org/netbeans/8.2/final/bundles/netbeans-8.2-linux.sh
--2018-05-14 19:21:57--  http://download.netbeans.org/netbeans/8.2/final/bundles/netbeans-8.2-linux.sh
Resolving download.netbeans.org (download.netbeans.org)... 104.108.220.248
Connecting to download.netbeans.org (download.netbeans.org)|104.108.220.248|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 223882240 (214M) [application/x-sh]
Saving to: ‘ netbeans-8.2-linux.sh’ 

netbeans-8.2-linux.sh   100%[==============================> ] 213.51M   975KB/s    in 3m 43s  

2018-05-14 19:25:41 (979 KB/s) - ‘ netbeans-8.2-linux.sh’  saved [223882240/223882240]

After the download completes, navigate to the directory where the NetBeans IDEinstaller has been downloaded. make the installer script executable and start installing it.

root@linuxhelp1:~# chmod +x netbeans-8.2-linux.sh
root@linuxhelp1:~# ./netbeans-8.2-linux.sh
Configuring the installer...
Searching for JVM on the system...
Extracting installation data...
Running the installer wizard...

You will see the following installer wizard appear on the screen.

welcome_page_of_netbeans

Accept the license agreement and click next.

license_agreement

Choose the installation path of NetBeans and click next.

choose_installation_path

Verify the summary of installation and click install.

installation_summary

The Netbeans application is installing now.

netbeans_installation

Click finish once installation is done.

installation_complete

Access the application from the activity menu.

open_ubuntu_menu

The Netbeans is initializing now.

netbeans_initialize

open_netbeans

netbeans_version

With this, the method to Install NetBeans IDE 8.2 in Ubuntu 18.04 comes to an end.

Tags:
isaac
Author: 

Comments ( 2 )

gokulravichandran
can you able to launch the application by executing Launch script of netbeans ?
arunamg
sir installation is complete but not opening when i double click on netbeans icon..plz help me
Add a comment

Frequently asked questions ( 5 )

Q

is there any command to install netbeans?

A

sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
sudo apt-get update
sudo apt-get install netbeans

Q

Where to install Netbeans?

A

export PATH=$PATH:~/netbeans-7.2.1/bin

Q

install jdk in command?

A

apt-get install default-jdk

Q

how to install java8?

A

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

Q

JDK is missing NetBeans Ubuntu?

A

sudo nano /etc/environment
add following in the file
:/$JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java" "

Related Tutorials in How to Install NetBeans IDE 8.2 in Ubuntu 18.04

Related Tutorials in How to Install NetBeans IDE 8.2 in Ubuntu 18.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to Install NetBeans IDE 8.2 in Ubuntu 18.04

Related Forums in How to Install NetBeans IDE 8.2 in Ubuntu 18.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to Install NetBeans IDE 8.2 in Ubuntu 18.04

Related News in How to Install NetBeans IDE 8.2 in Ubuntu 18.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.