ubuntu中安装 jre 和eclipse

1、安装JRE

今天使用ubuntu的简单安装命令安装java jre的时候遇到了很多问题,于是最后换成了使用离线包来安装jre。

具体步骤如下:

首先打开http://www.java.com/en/download/linux_manual.jsp?locale=en

可以看到如下的链接

ubuntu中安装 jre 和eclipse_第1张图片

点击46.0MB那个链接后下载得到得到一个jre-7u25-linux-i586.tar.gz的压缩包使用如下命令解压:

tar -xzvf jre-7u25-linux-i586.tar.gz

然后得到一个jre1.7.0_25 目录,如下所示:

然后将这个目录拷贝到/usr/lib/java目录下。

接下来需要使用vim或gedit来修改/etc/environment配置文件,在这个文件中增加如下的环境变量:

JAVA_HOME="/usr/lib/java/jre1.7.0_25"
CLASSPATH="$JAVA_HOME/lib"
PATH="$JAVA_HOME/bin" 

保存后,使用如下命令来进一步安装这个jre

sudo update-alternatives --install /usr/bin/java java /usr/lib/java/jre1.7.0_25/bin/java 300

这样就安装好这个jre了,然而可能系统中有多个jre,那么系统究竟判断用那一个来作为默认的jre呢,就需要使用如下的命令来配置:

sudo update-alternatives --config java

然后根据提示选择jre就可以了,如下图所示:

ubuntu中安装 jre 和eclipse_第2张图片

至此,jre安装完毕!


2、安装eclipse

I also tried http://www.eclipse.org/cdt/ in Ubuntu 12.04.2 LTS and works fine!

  1. First, I downloaded it from www.eclipse.org/downloads/, choosing Eclipse IDE for C/C++ Developers.
  2. I save the file somewhere, let´s say into my home directory. Open a console or terminal, and type:

    >>cd ~; tar xvzf eclipse*.tar.gz;

  3. Remember for having Eclipse running in Linux, it is required a JVM, so download a jdk file e.g jdk-7u17-linux-i586.rpm (I cann´t post the link due to my low reputation) ... anyway

  4. Install the .rpm file following http://www.wikihow.com/Install-Java-on-Linux

  5. Find the path to the Java installation, by typing:

    >>which java

  6. I got /usr/bin/java. To start up Eclipse, type:

    >>cd ~/eclipse; ./eclipse -vm /usr/bin/java

Also, once everything is installed, in the home directory, you can double-click the executable icon called eclipse, and then you´ll have it!. In case you like an icon, create a .desktop file in /usr/share/applications:

>>sudo gedit /usr/share/applications/eclipse.desktop

The .desktop file content is as follows:

[Desktop Entry]  
Name=Eclipse  
Type=Application  
Exec="This is the path of the eclipse executable on your machine"    //程序的安装目录
Terminal=false 
Icon="This is the path of the icon.xpm file on your machine"   //程序的安装目录下的图标
Comment=Integrated Development Environment  
NoDisplay=false  
Categories=Development;IDE  
Name[en]=eclipse.desktop  

  

7、chmod  x+u   eclipse.desktop      创建成功后   将图标创建好用,将该文件cp到桌面上  即可

Best luck!

、、、、、、、创建桌面快捷方式  和 之前步骤差不多

1.终端代码 :sudo gedit /usr/share/applications/eclipse.desktop 

然后在弹出的文件中输入:

复制代码
 1 [Desktop Entry]
 2 Encoding=UTF-8
 3 Name=eclipse
 4 Comment=Eclipse IDE
 5 Exec=/usr/local/eclipse/eclipse_SDK/eclipse
 6 Icon=/usr/local/eclipse/eclipse_SDK/icon.xpm
 7 Terminal=false
 8 StartupNotify=true
 9 Type=Application
10 Categories=Application;Development;
复制代码
Exec=/usr/local/eclipse/eclipse_SDK/eclipse
Icon=/usr/local/eclipse/eclipse_SDK/icon.xpm

   这个地方要修改为你的eclipse安装目录。

   ps: 我的Eclipse是安装(或解压)在 /usr/local/eclipse目录下的

 

2.然后给该文件赋权 ,运行“chmod u+x eclipse.desktop“命令即可。

说明我这个eclipse是解压安装的,如果是用deb包安装的话,可以把/usr/share/applications/下eclipse.desktop(我没安装过,不知道是否是这个名字) 文件拷贝到桌面目录即可。

3.直接cp上面代码的朋友注意了,cp回去编辑的时候注意去掉每行后面的空格。 所有的文件上述是properties,所以都要分行



你可能感兴趣的:(java,eclipse,ubuntu)