LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 12-28-2020, 07:34 PM   #1
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Rep: Reputation: 84
Has anyone installed Eclipse 2020?


Has anyone installed Eclipse 2020?
Which Linux distribution are you using?

~~~~vmelkon
 
Old 12-28-2020, 10:48 PM   #2
killingthemonkey
Member
 
Registered: Mar 2011
Location: Winston-Salem, NC
Distribution: Fedora, CentOS, Linux Mint
Posts: 259

Rep: Reputation: 24
On Fedora 33 with GNOME.

I had it installed via the Software app. Uninstalled it and installed via the Eclipse installer. Just because.
Both seem to work.

Quote:
Originally Posted by vmelkon View Post
Has anyone installed Eclipse 2020?
Which Linux distribution are you using?

~~~~vmelkon
 
Old 12-28-2020, 11:05 PM   #3
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Quote:
Originally Posted by killingthemonkey View Post
On Fedora 33 with GNOME.

I had it installed via the Software app. Uninstalled it and installed via the Eclipse installer. Just because.
Both seem to work.
Did you download the installer from eclipse.org?
Is this the file name or am I downloading the wrong thing?
eclipse-inst-jre-linux64.tar.gz

I decompressed it and double clicked on executable file = eclipse-inst
and
a window comes up with the TITLE
Eclipse Installer
An error has occurred. See the log file null.

====I don't know where that log file is.
Does Fedora 33 come with Eclipse 2020? Is it worth it or maybe I should stay with 2019, since I have the instruction as to how to install that version.

~~~~vmelkon
 
Old 12-28-2020, 11:13 PM   #4
killingthemonkey
Member
 
Registered: Mar 2011
Location: Winston-Salem, NC
Distribution: Fedora, CentOS, Linux Mint
Posts: 259

Rep: Reputation: 24
Navigate to the directory with the eclipse-inst executable in it. Right-click in the folder and open terminal. Run the executable from the command line.

Code:
sudo ./eclipse-inst
I did not take the defualt install directory. It wanted to install in root. I wanted it a little more accessible and installed in my /home/<user id> directory.

Quote:
Originally Posted by vmelkon View Post
Did you download the installer from eclipse.org?
Is this the file name or am I downloading the wrong thing?
eclipse-inst-jre-linux64.tar.gz

I decompressed it and double clicked on executable file = eclipse-inst
and
a window comes up with the TITLE
Eclipse Installer
An error has occurred. See the log file null.

====I don't know where that log file is.
Does Fedora 33 come with Eclipse 2020? Is it worth it or maybe I should stay with 2019, since I have the instruction as to how to install that version.

~~~~vmelkon
 
Old 12-29-2020, 09:12 AM   #5
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
OK, I installed it with
sudo ./eclipse-inst

I clicked on the Install C/C++ development thing
and I chose
/home/john/eclipse
and that is where it installed itself.

I looked in the Start menu. There is no Eclipse under Start -> Applications -> Development

Is that normal?

~~~~vmelkon
 
Old 12-29-2020, 10:12 AM   #6
killingthemonkey
Member
 
Registered: Mar 2011
Location: Winston-Salem, NC
Distribution: Fedora, CentOS, Linux Mint
Posts: 259

Rep: Reputation: 24
Yes, it's normal. With that particular install, you will need to navigate to the install directory and run the executable from there. Even though I chose the option to add shortcut to Start menu, it didn't for me either.


Quote:
Originally Posted by vmelkon View Post
OK, I installed it with
sudo ./eclipse-inst

I clicked on the Install C/C++ development thing
and I chose
/home/john/eclipse
and that is where it installed itself.

I looked in the Start menu. There is no Eclipse under Start -> Applications -> Development

Is that normal?

~~~~vmelkon
 
Old 12-29-2020, 12:06 PM   #7
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Alright, no start menu shortcut.

So,I went into
/home/john/eclipse/cpp-2020-12/eclipse/
using Dolphin
and I double clicked on
file = eclipse

And a message box comes up saying=
The Eclipse executable launcher was unable to locate its companion shared library.
With a large Close button.

~~~~vmelkon
 
Old 12-29-2020, 12:25 PM   #8
shruggy
Senior Member
 
Registered: Mar 2020
Posts: 3,670

Rep: Reputation: Disabled
Quote:
Originally Posted by vmelkon View Post
I looked in the Start menu. There is no Eclipse under Start -> Applications -> Development
Well, nothing prevents you from downloading eclipse.desktop from their git repository and installing it to ~/.local/share/applications or /usr/local/share/applications or wherever it would be used by your system.
 
1 members found this post helpful.
Old 12-29-2020, 08:14 PM   #9
killingthemonkey
Member
 
Registered: Mar 2011
Location: Winston-Salem, NC
Distribution: Fedora, CentOS, Linux Mint
Posts: 259

Rep: Reputation: 24
shruggy has an answer that I haven't tried yet, but I got it to work via opening terminal in the directory where the eclipse executable lives and running the command:

Code:
sudo ./eclipse

Quote:
Originally Posted by vmelkon View Post
Alright, no start menu shortcut.

So,I went into
/home/john/eclipse/cpp-2020-12/eclipse/
using Dolphin
and I double clicked on
file = eclipse

And a message box comes up saying=
The Eclipse executable launcher was unable to locate its companion shared library.
With a large Close button.

~~~~vmelkon
 
Old 12-30-2020, 08:42 AM   #10
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Quote:
Originally Posted by killingthemonkey View Post
shruggy has an answer that I haven't tried yet, but I got it to work via opening terminal in the directory where the eclipse executable lives and running the command:

Code:
sudo ./eclipse
shruggy’s answer will not work.
This is why I prefer people who have experience with the software in question: Eclipse.

The problem is that I ran the installer with sudo
sudo ./eclipse-inst
and this causes a mess.
The permissions on the folders are set as root and so, I cannot run Eclipse because of that.

For Qt Creator, I can install with sudo, and it properly installs, it creates a Start menu item and it works fine.
I think Qt Creator is a almost fully tested application while Eclipse is not.

I managed to clean things up and this time, I ran the installer as a regular user and installed in my /home/john
Now, the executable works.

~~~~vmelkon
 
Old 12-30-2020, 12:31 PM   #11
SoftSprocket
Member
 
Registered: Nov 2014
Posts: 399

Rep: Reputation: Disabled
I imagine Eclipse has had a few rounds of testing done in the last 20 years. However it is a Java application and its requirements and environment are different then a native application such as QT Creator.
 
Old 01-01-2021, 09:33 AM   #12
vmelkon
Member
 
Registered: Feb 2007
Location: Canada
Distribution: Kubuntu 22.04
Posts: 549

Original Poster
Rep: Reputation: 84
Quote:
Originally Posted by SoftSprocket View Post
I imagine Eclipse has had a few rounds of testing done in the last 20 years. However it is a Java application and its requirements and environment are different then a native application such as QT Creator.
Well, it would be nice if they documented how to install on Linux. What to do, what not to do.
Which distributions have been tested.
It helps to avoid wasting time.
Nobody seems to have a handle on how to install/uninstall applications on Linux.

~~~~vmelkon
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Setting up KVM Hypervisor on SparkyLinux 2020.9 rolled forward up to 11/08/2020 (VENV) LXer Syndicated Linux News 0 11-08-2020 04:21 PM
[SOLVED] Please help,i have a error while upgrading my kali linux 2020.1 to 2020.3 Deep2 Linux - Newbie 2 08-28-2020 09:24 AM
LXer: Akademy 2020 and GUADEC 2020 Linux Events Move to Online Conferences LXer Syndicated Linux News 0 04-18-2020 03:33 AM
LXer: Gentleware Unveils New Apollo for Eclipse and openArchitectureWare Eclipse Dist LXer Syndicated Linux News 0 10-25-2007 09:30 PM
LXer: Netbeans attempts to eclipse Eclipse LXer Syndicated Linux News 0 04-17-2006 09:54 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 07:49 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration