How to Install Apache NetBeans on Fedora 35 – Holhol24
Apache NetBeans is an built-in building surroundings (IDE) for all Java utility building. It additionally helps creating programs in different languages, corresponding to PHP, C/C++, Groovy, JavaScript, and HTML5, with the assistance of plugins.
Apache NetBeans is to be had for Windows, Linux, macOS, and Solaris.
Here, we can see set up Apache NetBeans on Fedora 35.
Prerequisites
NetBeans calls for JAVA JDK 8 or later to be to be had at the machine. So, you’ll set up both OpenJDK or Oracle Java for Apache NetBeans set up.
In this publish, I can use OpenJDK 11.
sudo dnf set up java-11-openjdk-devel -y
Once the OpenJDK set up is entire, take a look at the Java edition with the beneath command.
java -version
Output:
openjdk edition "11.0.13" 2021-10-19 OpenJDK Runtime Environment 18.9 (construct 11.0.13+8) OpenJDK 64-Bit Server VM 18.9 (construct 11.0.13+8, combined mode, sharing)
Download Apache NetBeans
Apache Software Foundation releases Apache NetBeans IDE 4 instances a yr and you’ll obtain Apache NetBeans 12.5 (The newest edition when writing this newsletter) or Apache NetBeans 12.0 (Long Term Support) by way of visiting the Apache NetBeans obtain web page.
OR
Use the next command to obtain the package deal the usage of a terminal.
# Apache NetBeans 12.5 (Latest Version) wget https://dlcdn.apache.org/netbeans/netbeans/12.5/Apache-NetBeans-12.5-bin-linux-x64.sh # Apache NetBeans 12.0 (LTS) wget https://dlcdn.apache.org/netbeans/netbeans/12.0/Apache-NetBeans-12.0-bin-linux-x64.sh
Install Apache NetBeans
First, set the executable permission to the installer record with a view to run the Apache NetBeans installer,
sudo chmod 700 Apache-NetBeans-*-bin-linux-x64.sh
Then, run the Apache NetBeans installer.
sudo ./Apache-NetBeans-*-bin-linux-x64.sh
The Apache NetBeans installer will get started the graphical installer, and it is important to apply the installer wizard.
Click Next or Customize the set up packs and runtimes at the installer welcome display screen.
Click the checkbox to simply accept the phrases within the license settlement after which click on Next.
The installer will stumble on the set up folder and the positioning of JDK robotically. If you need, you’ll alternate the Apache NetBeans set up folder and JDK for Apache NetBeans.
Optionally, you’ll permit NetBeans to Check for Updates of put in plugins. Then click on Install to start the set up.
The set up will take a little time. Finally, click on Finish to finish the set up.
Since Apache NetBeans is put in in a customized location, it cannot be introduced with the netbeans
command as an alternative you’ll have to use the total trail. To simplify the beginning procedure, we can create a hyperlink to the /usr/bin
listing so that you could get started NetBeans IDE with the netbeans
command.
sudo ln -s /usr/native/netbeans-*/netbeans/bin/netbeans /usr/bin/netbeans
Launch Apache NetBeans
Start the Apache Netbeans on Debian by way of going to Activities >> seek for Apache NetBeans or working the netbeans
command within the terminal.
Conclusion
That’s all. I’m hoping you’ve got discovered set up Apache NetBeans on Fedora 35.