Problems installing Eclipse in Fedora

0

I have years in Ubuntu but I'm just taking my first steps in Fedora, I work a lot with the IDE Eclipse, I already install the JDK, but I have errors when installing Eclipse, here I leave the command and the error:

  

./ eclipse-inst

     

No protocol specified   Eclipse Installer: Can not open the viewer:   No protocol specified   Eclipse Installer: Can not open the viewer:   No protocol specified   No protocol specified

     

Eclipse Installer:   An error has occurred. See the log file   /opt/eclipse-installer/configuration/1515859028803.log.

I have read something on the internet about the XINIT file but I do not understand it well.

    
asked by Ricardo Gabriel 13.01.2018 в 17:07
source

1 answer

0

Actually eclipse this in the Fedora repositories. No need to install it separately.

To verify that it is in your repositories you can use (from root):

# dnf search eclipse

This will show you a list of all the eclipse packages that are part of your name (many of them are eclipse plugins).

Then you choose the plugins you need and the lists for example if you want to install the git plugin and the web tools you can put:

# dnf install eclipse-webtools-javaee eclipse-jdt eclipse-jgit

For my part, I usually install all the plugins by placing:

# dnf install eclipse-*

This I do because I have a lot of disk space and it bothers me to download the plugins as I need them.

    
answered by 05.08.2018 в 05:01