一,以Root身份登入CentOS 7:比较简单是使用Root身份进行操作,下面是如何 。
https://www.cnblogs.com/sunylat/p/11236845.html
二,安装Eclipse。
Open a terminal (Applications >> System Tools >> Terminal) and then switch to root user.
$ su -Before installing Eclipse, make sure you have installed JDK on your machine. You can either install Oracle JDK or OpenJDK.
For this post, I will use OpenJDK 8 here.
yum -y install java-1.8.0-openjdkVerify the Java version on your machine.
java -versionOutput:
openjdk version "1.8.0_212" OpenJDK Runtime Environment (build 1.8.0_212-b04) OpenJDK 64-Bit Server VM (build 25.212-b04, mixed mode)Download latest eclipse package (v2019-03) over from the official page using a web browser.
OR
Download the Eclipse package over a terminal using the following command (risk of being changed).
wget http://ftp.jaist.ac.jp/pub/eclipse/technology/epp/downloads/release/2019-03/R/eclipse-java-2019-03-R-linux-gtk-x86_64.tar.gzExtract the Eclipse package to your desired directory (/opt).
tar -zxvf eclipse-java-2019-03-R-linux-gtk-x86_64.tar.gz -C /optSymlink the Eclipse executable to /usr/bin path so all users in your system can use Eclipse IDE.
ln -sf /opt/eclipse/eclipse /usr/bin/eclipseCreate a Gnome launcher.
vi /usr/share/applications/eclipseide.desktopPlace the following content in the above file.
[Desktop Entry] Encoding=UTF-8 Name=Eclipse IDE Comment=Eclipse IDE Exec=/usr/bin/eclipse Icon=/opt/eclipse/icon.xpm Categories=Application;Development Version=1.0 Type=Application Terminal=0注意问题:Desktop Entry,必须是这些文字,区分大小写,如果不是这个名字,可能不会在菜单里面出现,我就因为这个Desktop写成了desktop,结果图标没能出现在菜单里。
Go to Application >> Programming >> Eclipse.
参考:
https://www.itzgeek.com/how-tos/linux/centos-how-tos/install-eclipse-4-4-luna-ide-on-centos-7-rhel-7.html
转载于:https://www.cnblogs.com/sunylat/p/11237539.html
相关资源:CentOS7下安装eclipse并编译hadoop2.x