Eclipse 无法正常工作:执行格式错误

Eclipse 无法正常工作:执行格式错误

我已经安装了 Eclipse,如下所示:

1 → 下载eclipse-standard-kepler-SR2-linux-gtk-x86_64.tar.gz到我的 14.04

在此处输入图片描述

2 → 使用命令提取它,

sudo tar -xvf eclipse-standard-kepler-SR2-linux-gtk-x86_64.tar.gz

3 → 将 eclipse 移至/opt/使用命令,

sudo mv eclipse /opt/

4→使用 GIMP 图像编辑器为 eclipse 创建图标(64x64)。

5 → 使用以下方式安装 gnome-panel:

sudo apt-get install --no-install-recommends gnome-panel

6 → 使用以下方式创建应用程序,

sudo gnome-desktop-item-edit /usr/share/applications/ --create-new

图片1

7 → 选择图标,

图片3

8 → 选择要评论的 Eclipse 应用程序,

在此处输入图片描述

9→最后输入命令并点击OK。

在此处输入图片描述

我已经提供了所需的一切,并且创建并显示了申请,

在此处输入图片描述

但是当我打开该应用程序时它不工作。

(注意:我创建了另一个,因为第一个不起作用,现在两个都不起作用。这就是为什么图片显示两个 eclipse。)

当我尝试在终端中打开它时,我得到了

bash: /opt/eclipse/eclipse: cannot execute binary file: Exec format error

请告诉我问题可能出现在哪里?

答案1

如果你得到

/opt/eclipse/eclipse: cannot execute binary file: Exec format error

这通常意味着您使用了错误的架构。在这种情况下,您下载了 64 位版本,但应该使用 32 位版本的 Eclipse。

答案2

当我尝试在终端中打开时,我得到了 bash: /opt/eclipse/eclipse: cannot execute binary file: Exec format error

这意味着文件已损坏。也许你在提取时出了问题。为了确保这不是存档问题,请按照这些说明

  1. 每个下载都有一个关联链接“(md5)”,指向包含其 MD5 校验和的 *.md5 文件。将此文件下载到与相应文件相同的目录中tar.gz

  2. 执行命令md5sum -c <gzfilename>.md5。结果<gzfilename>: OK表明下载完整。

如果检查成功,则必须删除 Eclipse(sudo rm -rf /opt/eclipse)并重复您提到的步骤。如果不成功,则必须重新下载文件。

相关内容