Net Beans Installation in ubuntu

image

FTP Server Configuration for Ubuntu 16.04

FTP, short for File Transfer Protocol, is a network protocol that was once widely used for moving files between a client and server.

Read More

image

How to Set Up Two-Factor Authentication in Ubuntu

Two-factor authentication is a great answer to the many problems with traditional passwords.

Read More

image

How to Setup Apache Virtual Hosts on Ubuntu 16.04

Apache virtual host helps to run multiple websites on the same server. There are two types of virtual host configuration that apache supports

Read More

Ping BD Template

Clients Feedback

  • We are very much happy to seeing my website. He developed website our requirement. We wishes good luck for ping BD

    image

    Shahnewaz Art

    Indipendent Designer

Net Beans Installation in ubuntu


NetBeans is the most popular IDE for development on Linux systems. NetBeans editor
provides many of pre-configured code templates and code generation tools for faster
development support. This article will help you to install NetBeans IDE on Ubuntu Systems.
Step 1 – Install JAVA
Java is the primary requirement for the Netbeans installation on the system. Use below
command to verify if Java is already installed or not.
java -version
java version "1.8.0_151"
Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
Step 2 – Download NetBeans (PHP) Installer
After installing/verifying java on your system, download NetBeans for PHP latest installer file,
For following commands, we are running as root user.
sudo su -
wget http://download.netbeans.org/netbeans/8.2/final/bundles/netbeans-8.2-php-linux-
x64.sh
You can download full version of NetBeans from official website or using this link. After
complete download of installer file, make file executable and run it.
Step 3 – Install NetBeans IDE
Make the downloaded script executable and execute the script like below. As of today
NetBeans 8.2 is the latest version is available to install, For more recent versions, visit
https://netbeans.org/ official site.
chmod +x netbeans-8.2-php-linux-x64.sh
./netbeans-8.2-php-linux-x64.sh
The installer will launch an installation wizard. Follow the given instructions and complete the
wizard.
1/3Complete above installer by clicking Next and Accept terms for uses.
Step 4 – Open NetBeans IDE
After finishing the installation of NetBeans start using Dashboard search box, Type “NetBeans”
and it will display launcher icon. Click on the icon to launch Netbeans IDE.
2/3Congratulation’s! you have successfully installed NetBeans IDE for PHP on Ubuntu system.
Enjoy coding.
Share it!