当我下载 Eclipse 并解压并在终端写入时,./eclipse
我看到此错误
bash: ./eclipse: cannot execute binary file
我能做些什么?
答案1
我发现了我的问题。
我下载的是 64 位版本,但我的系统是 32 位的。当我尝试 32 位版本的 Eclipse 时,将其解压并在 eclipse 文件夹中在终端中写入
./eclipse
有效。
答案2
您不需要实现复杂的编译方法来安装 eclipse。它位于官方 Ubuntu 存储库中。
您可以安装eclipse
为:
sudo apt-get install eclipse
答案3
您可以尝试以下步骤来启动并运行最新的 Eclipse (4.4)。确保您已经拥有
提取并安装 Eclipse 4.4
- 下载 Eclipse 4.4
- 将 eclipse 文件夹解压到桌面
- 打开终端(++ ctrl)并运行以下命令:。altt
sudo chown -R root:root ~/Desktop/eclipse && mv ~/Desktop/eclipse /opt/eclipse-luna
sudo ln -s /opt/eclipse-luna/eclipse /usr/local/bin/eclipse-luna
您现在应该能够使用以下命令从终端启动 eclipseeclipse-luna
为 Unity 创建启动器
sudo nano /usr/share/applications/eclipse.desktop
,然后输入以下内容:[Desktop Entry] Type=Application Name=Eclipse Comment=Eclipse Integrated Development Environment Icon=eclipse Exec=eclipse Terminal=false Categories=Development;IDE;Java;
然后使用ctrl+退出 nano x。y提示保存文件时按。
你的启动器中现在应该有一个用于 eclipse 的启动器。