Linux -- Ubuntu搭建java开发环境

Steps

  1. 1
    Check to see if your Ubuntu Linux operating system
    architecture is 32-bit or 64-bit, open up a terminal and run the following
    command below.

    • Type/Copy/Paste: file /sbin/init
      • Note the bit version of your Ubuntu Linux operating system
        architecture it will display whether it is 32-bit or 64-bit.


  2. 2
    Check if you have Java installed on your
    system.
     To do this, you will have to run the Java
    version command from terminal.
    • Open up a terminal and enter the following command:
      • Type/Copy/Paste: java -version

    • If you have OpenJDK installed on your system it may look like this:
      • java version "1.7.0_15"
        OpenJDK Runtime Environment
        (IcedTea6 1.10pre) (7b15~pre1-0lucid1)
        OpenJDK 64-Bit
        Server VM (build 19.0-b09, mixed mode)

    • If you have OpenJDK installed on your system, you have the wrong vendor
      version of Java installed for this exercise.

  3. 3
    Completely remove the OpenJDK/JRE from your system and
    create a directory to hold your Oracle Java JDK/JRE
    binaries.
     This will prevent system conflicts and
    confusion between different vendor versions of Java. For example, if you have
    the OpenJDK/JRE installed on your system, you can remove it by typing the
    following at the command line:
    • Type/Copy/Paste: sudo apt-get purge
      openjdk-\*
      • This command will completely remove OpenJDK/JRE from your
        system

    • Type/Copy/Paste: sudo mkdir -p
      /usr/local/java
      • This command will create a directory to hold your Oracle Java JDK and
        JRE binaries.

  4. 4
    Download the Oracle Java JDK for
    Linux
    . Make sure you select
    the correct compressed
    binaries for your system architecture 32-bit or 64-bit (which end in tar.gz).
    • For example, if you are on Ubuntu Linux 32-bit operating system download
      32-bit Oracle Java binaries.

    • For example, if you are on Ubuntu Linux 64-bit operating system download
      64-bit Oracle Java binaries.

    • Optional, Download the Oracle Java JDK
      Documentation

      • Select jdk-7u45-apidocs.zip

    • Important Information: 64-bit Oracle
      Java binaries do not work on 32-bit Ubuntu Linux operating systems, you will
      receive multiple system error messages, if you attempt to install 64-bit
      Oracle Java on 32-bit Ubuntu Linux.

  5. 5
    Copy the Oracle Java binaries into the /usr/local/java
    directory.
     In most cases, the Oracle Java binaries
    are downloaded to: /home/"your_user_name"/Downloads.
    • 32-bit Oracle Java on 32-bit Ubuntu Linux installation
      instructions:

      • Type/Copy/Paste: cd
        /home/"your_user_name"/Downloads

      • Type/Copy/Paste: sudo cp -r
        jdk-7u45-linux-i586.tar.gz /usr/local/java

      • Type/Copy/Paste: cd
        /usr/local/java

    • 64-bit Oracle Java on 64-bit Ubuntu Linux installation
      instructions:

      • Type/Copy/Paste: cd
        /home/"your_user_name"/Downloads

      • Type/Copy/Paste: sudo cp -r
        jdk-7u45-linux-x64.tar.gz /usr/local/java

      • Type/Copy/Paste: cd
        /usr/local/java

  6. 6
    Run the following commands on the downloaded Oracle Java
    tar.
    gz files. Make sure to do this as root in order to make them
    executable for all users on your system. To open a root terminal type sudo -s
    you will be prompted for your logon password.
    • 32-bit Oracle Java on 32-bit Ubuntu Linux installation
      instructions:

      • Type/Copy/Paste: sudo chmod a+x
        jdk-7u45-linux-i586.tar.gz

    • 64-bit Oracle Java on 64-bit Ubuntu Linux installation
      instructions:

      • Type/Copy/Paste: sudo chmod a+x
        jdk-7u45-linux-x64.tar.gz

  7. 7
    Unpack the compressed Java binaries, in the directory
    /usr/local/java

    • 32-bit Oracle Java on 32-bit Ubuntu Linux installation
      instructions:

      • Type/Copy/Paste: sudo tar xvzf
        jdk-7u45-linux-i586.tar.gz

    • 64-bit Oracle Java on 64-bit Ubuntu Linux installation
      instructions:

      • Type/Copy/Paste: sudo tar xvzf
        jdk-7u45-linux-x64.tar.gz

  8. 8
    Double-check your
    directories.
     At this point, you should have two
    uncompressed binary directories in /usr/local/java for the Java JDK/JRE listed
    as:
    • Type/Copy/Paste: ls -a

    • jdk1.7.0_45

  9. 9
    Edit the system PATH file /etc/profile and add the
    following system variables to your system path.
     Use
    nano, gedit or any other text editor, as root, open up /etc/profile.
    • Type/Copy/Paste: sudo gedit
      /etc/profile

    • or

    • Type/Copy/Paste: sudo nano
      /etc/profile

  10. 10
    Scroll down to the end of the file using your arrow keys
    and add the following lines below to the end of your /etc/profile
    file:

    • Type/Copy/Paste:

      JAVA_HOME=/usr/local/java/jdk1.7.0_45

      PATH=$PATH:$HOME/bin:$JAVA_HOME/bin
      export JAVA_HOME
      export PATH

  11. 11
    Save the /etc/profile file and exit.

  12. 12
    Inform your Ubuntu Linux system where your Oracle Java
    JDK/JRE is located.
     This will tell the system that
    the new Oracle Java version is available for use.
    • Type/Copy/Paste: sudo
      update-alternatives --install "/usr/bin/java" "java"
      "/usr/local/java/jdk1.7.0_45/bin/java" 1
      • this command notifies the system that Oracle Java JRE is available for
        use

    • Type/Copy/Paste: sudo
      update-alternatives --install "/usr/bin/javac" "javac"
      "/usr/local/java/jdk1.7.0_45/bin/javac" 1
      • this command notifies the system that Oracle Java JDK is available for
        use

    • Type/Copy/Paste: sudo
      update-alternatives --install "/usr/bin/javaws" "javaws"
      "/usr/local/java/jdk1.7.0_45/bin/javaws" 1
      • this command notifies the system that Oracle Java Web start is
        available for use

  13. 13
    Inform your Ubuntu Linux system that Oracle Java JDK/JRE
    must be the default Java.

    • Type/Copy/Paste: sudo
      update-alternatives --set java /usr/local/java/jdk1.7.0_45/bin/java
      • this command will set the java runtime environment for the
        system

    • Type/Copy/Paste: sudo
      update-alternatives --set javac /usr/local/java/jdk1.7.0_45/bin/javac
      • this command will set the javac compiler for the system

    • Type/Copy/Paste: sudo
      update-alternatives --set javaws /usr/local/java/jdk1.7.0_45/bin/javaws
      • this command will set Java Web start for the
        system

  14. 14
    Reload your system wide PATH /etc/profile by typing the
    following command:

    • Type/Copy/Paste: . /etc/profile

    • Note your system-wide PATH /etc/profile file will reload after reboot of
      your Ubuntu Linux system

  15. 15
    Test to see if Oracle Java was installed correctly on
    your system.
     Run the following commands and note
    the version of Java:

  16. 16
    A successful installation of 32-bit Oracle Java will
    display:

    • Type/Copy/Paste: java -version
      • This command displays the version of java running on your
        system

    • You should receive a message which displays:
      • java version "1.7.0_45"
        Java(TM) SE Runtime
        Environment (build 1.7.5_45-b18)
        Java HotSpot(TM)
        Server VM (build 24.45-b08, mixed mode)

    • Type/Copy/Paste: javac -version
      • This command lets you know that you are now able to compile Java
        programs from the terminal.

    • You should receive a message which displays:
      • javac 1.7.0_45

  17. 17
    A successful installation of Oracle Java 64-bit will
    display:

    • Type/Copy/Paste: java -version
      • This command displays the version of java running on your
        system

    • You should receive a message which displays:
      • java version "1.7.0_45"
        Java(TM) SE Runtime
        Environment (build 1.7.5_45-b18)
        Java HotSpot(TM)
        64-Bit Server VM (build 24.45-b08, mixed mode)

    • Type/Copy/Paste: javac -version
      • This command lets you know that you are now able to compile Java
        programs from the terminal.

    • You should receive a message which displays:
      • javac 1.7.5_40

  18. 18
    Congratulations, you just installed Oracle Java on your
    Linux system.
     Now reboot your Ubuntu Linux system.
    Afterwards, your system will be fully configured for running and developing
    Java programs. Later on you may want to try compiling and running your own
    Java programs by following this article How to Create your First Java Program on Ubuntu
    Linux

Linux -- Ubuntu搭建java开发环境,布布扣,bubuko.com

时间: 2024-10-18 11:49:25

Linux -- Ubuntu搭建java开发环境的相关文章

linux中搭建java开发环境

今天试着在Linux下面搭建java开发环境,现总结一下具体步骤. 1.JDK的安装1.6 版本cd /opt mkdir java执行下面命令安装JDK(首先创建/opt/java目录)tar -xvf jdk-7u7-linux-i586.tar.gz -C /opt/java ln -s /opt/java/jdk1.7.0_09 /opt/java/jdk 创建一个链接 vi /etc/frofile 设置环境变量 export JAVA_HOME=/opt/java/jdkexprot

Linux下搭建Java开发环境

Red Hat Package Manager 简称rpm rpm格式的文件就是我们可以使用RPM命令进行管理的软件包格式的文件 JDK的安装 #sh /root/Desktop/jdk-6u23-linux-i586-rpm.bin .bin 可以使用sh命令来解压执行 Linux的用户的登录过程 /etc/profile /etc/profile.d(各个脚本) /etc/bash.bashrc /home/[username]具体用户目录/.bashrc .bash_profile JDK

Ubuntu搭建Java开发环境

Ubuntu搭建Java开发环境 在线安装Java sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo apt-get install oracle-java8-set-default 之后再运行 java -version 如果有类似下面的输出,就大功告成了!如果不能,继续Google或者百度吧. java versio

ubuntu搭建java开发环境遇到的问题总结

1,vi /etc/profile  说是只读没法修改 解决方法: :w !sudo tee %  直接强制保存(保存完记得加载下次文件哦,命令 source /etc/profile) 2,安装jdk 下载地址 http://www.oracle.com/technetwork/java/javase/downloads/index.html 然后解压, 然后配置/etc/profile 如下 export JAVA_HOME=/home/aaa/java/jdk1.8.0_45    exp

ubuntu下搭建JAVA开发环境【转】

转自:http://jingyan.baidu.com/article/86fae346b696633c49121a30.html JAVA开发环境是一种跨平台的程序设计语言,可以在windows.LINUX等操作系统上进行开发.小编以前是做LINUX C开发的,最近因为工作,需要在UBUNTU下进行java开发环境的搭建,故写下这篇经验,和大家共享.参考.本篇经验分四步: 1)下载JDK 2)下载eclipse 3 ) 安装JDK 4)安装eclipse 工具/原料 UBUNTU eclips

Ubuntu搭建Android开发环境

前言 因为迁移到新的笔记本,所以Android开发环境需要重新配置了,android官网有配置教程,我正好回顾一遍 配置Java环境 下载jdk,官网地址:http://www.oracle.com/technetwork/java/javase/downloads/index.html?ssSourceSiteId=otnjp, 我下载的是jdk-7u60-linux-i586.tar.gz,适合于Ubuntu 64bit操作系统版本. 解压JDK打包文件: tar -zxvf jdk-7u6

Linux下搭建PHP开发环境(LAMP)

LAMP:Linux+Apache+Mysql/MariaDB+Perl/PHP/Python 安装方法如下: 注:Ubuntu下可使用sudo su 命名切换到root用户. 开始安装之前,先执行EZHTTP安装前的准备工作. 一.使用screen(可选) 由于编译安装Nginx Apache PHP MySQL等软件会花费比较长的时间,难免会出现由于网络意外中断而导致安装也中断了,所以为了避免此问题,可以使用screen来安装. screen的使用方法如下: 1.安装screen ubunt

Mac OS X 下搭建 Java 开发环境图解

本篇博客介绍如何在Mac osx系统下搭建java开发环境,有了java的开发环境,我们就可以做Java相关的开发,Eclipse和Android Studio都是要有JVM环境才能运行的,所以本篇就稍微总结一下如何在Mac osx下配置java环境变量. 先来看看笔者的电脑配置: 打开终端,查看10.10版本的系统使用的是什么shell命令: 输出的是bash,说明是Bourne shell,是默认的Unix Shell命令. 下面通过命令行查看笔者的java版本: 如果你的系统已经安装成功J

ubuntu 搭建lisp开发环境

sudo apt-get install emacs sudo apt-get install sbcl sudo apt-get install slime emacs里 Alt+x 输入 slime,就启动了lisp环境 ubuntu 搭建lisp开发环境