如何安装在Ubuntu 12.04的最新版本的Eclipse经典的使用终端?(How to inst

2019-07-31 01:13发布

请如何在Ubuntu 12.04使用终端安装最新的Eclipse经典(4.2)? 如果你能告诉我一步一步,我将不胜感激。

Answer 1:

看到这个博客张贴在这里 ,为一步一步的指示。

在记录流程一步一步,并在评论中笔者已经包括脚本 -

#!/bin/sh

ECLIPSE=/usr/lib/eclipse/eclipse

inject_update_site(){
if [ ! -e "$1" ] ; then
echo "W: Cannot find $1" 2>&1
return 1
fi
cat - >>"$1" <<EOF
repositories/http\:__download.eclipse.org_releases_indigo/enabled=true
repositories/http\:__download.eclipse.org_releases_indigo/isSystem=false
repositories/http\:__download.eclipse.org_releases_indigo/nickname=Indigo Update Site
repositories/http\:__download.eclipse.org_releases_indigo/uri=http\://download.eclipse.org/releases/indigo/
EOF

}

if [ ! -d ~/.eclipse/ ] ; then
$ECLIPSE -clean -initialize || exit $?
artifact=$(find ~/.eclipse \
-regex .*/profileRegistry/.*/org.eclipse.equinox.p2.artifact.repository.prefs)
metadata=$(find ~/.eclipse \
-regex .*/profileRegistry/.*/org.eclipse.equinox.p2.metadata.repository.prefs)
if [ -z "$artifact" ] || [ -z "$metadata" ]; then
echo "W: Cannot inject update-sites, cannot find the correct config." 2>&1
else
( inject_update_site "$artifact" && \
inject_update_site "$metadata" && \
echo "I: Injected update sites" ) || echo "W: Could not inject update sites." 2>&1
fi
fi

exec $ECLIPSE "$@"

它的工作原理。



Answer 2:

步骤1»安装Java JDK或JRE

sudo apt-get install openjdk-7-jdk

步骤2»从这里下载最新的副本http://www.eclipse.org/downloads/?osType=linux

步骤3»将下载的程序包到/ opt目录

sudo mv eclipse-SDK-4.2.2-linux-gtk.tar.gz /opt

步骤4»提取包

sudo tar -xvf /opt/eclipse-SDK-4.2.2-linux-gtk.tar.gz -C /opt

步骤5»创建在/ usr /共享/应用的新的桌面文件eclipse.desktop /并添加以下行。

[Desktop Entry]
Name=Eclipse 
Type=Application
Exec=/opt/eclipse/eclipse
Terminal=false
Icon=/opt/eclipse/icon.xpm
Comment=Integrated Development Environment
NoDisplay=false
Categories=Development;IDE
Name[en]=eclipse.desktop

第6步»只需将此eclipse.desktop文件拖到发射台。

检查此链接: 在Ubuntu 12.04安装Eclipse



Answer 3:

执行tar命令之前,请务必到CD到/ opt文件夹。 如果你不那么tar命令将创建eclipse目录中无论你的当前目录。



Answer 4:

安装完成后的Java JDK或JRE中运行以下命令,它会为你安装Eclipse,

sudo易于得到安装Eclipse



文章来源: How to install the latest version of Eclipse Classic on Ubuntu 12.04 using the terminal?