Install Eclipse and MyEclipse in CentOS
IDE is essential for CentOS development. Powerful Sublime is recommended for python, while Java is used in more cases, at this time, it is necessary to install an Eclipse or MyEclipse.
- Download Eclipse and MyEclipse
Eclipse Official Website
MyEclipse Official Website
- Install java
yum install java
- List content
- Install Eclipse
Decompress the downloaded package to the opt directory, for example:
tar -zxvf eclipse-java-luna-SR1-linux-gtk-x86_64.tar.gz -C /opt
Directory of symbolic links
ln -s /opt/eclipse/eclipse /usr/bin/eclipse
Create a link in the desktop application:
gedit /usr/share/applications/eclipse.desktop
Add the following content to the file:
[Desktop Entry]Encoding=UTF-8Name=Eclipse 4.4.1Comment=Eclipse LunaExec=/usr/bin/eclipseIcon=/opt/eclipse/icon.xpmCategories=Application;Development;Java;IDEVersion=1.0Type=ApplicationTerminal=0
After Eclipse is installed, You can see Eclipse in Programming of the desktop application menu.
Install MyEclipse and decompress the downloaded file. You can see a run file. This is the installation file of MyEclipse, but it cannot be directly executed. Use the following command to add execution permissions for it.chmod +x myeclipse.runDouble-click the file to install it, which is the same as that in windows.
Download MyEclipse cracking tool: Link: http://pan.baidu.com/s/1o6fxdmmpassword: 31wb decompress the tool in the operation:java -jar cracker.jarAfter opening the file, follow the "cracking steps" in the directory to perform the corresponding operations. After installation, You can see MyEclipse in Programming of the desktop application menu.
Have Fun!