본문 바로가기

OS/Linux

[Linux] Apache NetBeans Installation (Binary)

반응형
# sudo wget https://www.apache.org/dyn/closer.cgi/incubator/netbeans/incubating-netbeans/incubating-11.0/incubating-netbeans-11.0-bin.zip
# sudo unzip incubating-netbeans-11.0-bin.zip
# sudo mv netbeans /usr/local

 

# sudo vi /etc/profile.d/netbeans.sh
export NETBEANS_HOME=/usr/local/netbeans
export PATH=${PATH}:${NETBEANS_HOME}/bin

저장

 

# source /etc/profile.d/netbeans.sh

 

# sudo vi /usr/share/applications/netbeans.desktop
[Desktop Entry]
Name=Netbeans IDE
Comment=Netbeans IDE
Type=Application
Encoding=UTF-8
Exec=/usr/local/netbeans/bin/netbeans
Icon=/usr/local/netbeans/nb/netbeans.png
Categories=GNOME;Application;Development;
Terminal=false
StartupNotify=true

저장

 

 

참고: https://netbeans.apache.org/download/nb110/nb110.html

 

Downloading Apache NetBeans (incubating) 11.0

Apache NetBeans 11.0 runs on the JDK LTS releases 8 and 11, as well as on JDK 12, i.e., the current JDK release at the time of this NetBeans release.

netbeans.apache.org

        https://computingforgeeks.com/install-netbeans-ide-on-debian-ubuntu-and-linux-mint/

 

How to Install NetBeans IDE 11.0 on Ubuntu, Debian, Linux Mint | ComputingForGeeks

NetBeans is a very powerful Integrated Development Environment (IDE) tool mostly used for Java and C/C++ Development. It allows you easily develop Web,

computingforgeeks.com

 

반응형

'OS > Linux' 카테고리의 다른 글

[CentOS 7] Filezilla Installation  (0) 2020.04.25
[Ubuntu] OBS Installation  (0) 2020.04.25
[Linux] Apache Ant Installation (Binary)  (0) 2020.04.23
[Ubuntu 18.04] Steam Installation  (0) 2020.04.21
[Ubuntu 18.04] Adobe Flash Player Installation  (0) 2020.04.21