본문 바로가기

OS/Linux

[Ubuntu] Eclipse Installation

반응형

Download: www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/2020-03/R/eclipse-jee-2020-03-R-incubation-linux-gtk-x86_64.tar.gz&mirror_id=1211

 

Thank You for Downloading Eclipse | The Eclipse Foundation

The Eclipse Foundation - home to a global community, the Eclipse IDE, Jakarta EE and over 350 open source projects, including runtimes, tools and frameworks.

www.eclipse.org

# tar zxvf eclipse-jee-2020-03-R-incubation-linux-gtk-x86_64.tar.gz

# sudo mv eclipse /usr/local/

 

# sudo vi /etc/profile.d/eclipse.sh
export ECLIPSE_HOME=/usr/local/eclipse
export PATH=${PATH}:${ECLIPSE_HOME}

저장

 

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

 

# sudo vi /usr/share/applications/eclipse.desktop
Name=Eclipse IDE
Comment=Eclipse IDE
Type=Application
Encoding=UTF-8
Exec=/usr/local/eclipse/eclipse
Icon=/usr/local/eclipse/icon.xpm
Categories=GNOME;Application;Development;
Terminal=false
StartupNotify=true

저장

 

 

snap 패키지 설치 참고: https://linuxize.com/post/how-to-install-the-latest-eclipse-ide-on-ubuntu-18-04/

 

How to Install Eclipse IDE on Ubuntu 18.04

Eclipse is the most widely used Java integrated development environment (IDE). In this tutorial we'll show you how to install the latest Eclipse IDE on an Ubuntu 18.04 machine.

linuxize.com

 

반응형

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

[Ubuntu] MPEG-4 AAC decoder and the H.264 decoder Installation  (0) 2020.05.13
[Ubuntu] 문자조립기 설치  (0) 2020.05.12
[Ubuntu] Filezilla Installation  (0) 2020.04.29
[CentOS 7] Filezilla Installation  (0) 2020.04.25
[Ubuntu] OBS Installation  (0) 2020.04.25