Java installation issues on Ubuntu

后端 未结 7 1158
时光取名叫无心
时光取名叫无心 2021-01-19 02:46

Trying to install Java (JDK 6) on my new Ubuntu system and getting some bizarro errors. This is my first time ever using any flavor of Linux and so I\'m sure it\'s

相关标签:
7条回答
  • 2021-01-19 02:50

    Try:

    rm -rf /usr/bin/javac
    rm -rf /usr/bin/jar 
    
    ln -s /home/jdk1.6.0_13/bin/javac /usr/bin/javac 
    ln -s /home/jdk1.6.0_13/bin/jar /usr/bin/jar 
    

    This way, your linux can find java && javac in /usr/bin

    0 讨论(0)
  • 2021-01-19 02:57

    The JDK you installed from Sun/Oracle is the original JDK. The "headless" JDK is the open source alternative. When you run the JDK BIN file, it simply extracts the archive. When you entered the java -version command, it found the FOSS Java, not the Java you had extracted in /opt. As somebody else had mentioned, developers keep multiple versions of the JDK. If you wish to use the Oracle's Java, then you need link /usr/bin/java to /opt/jdk1.6.0_23/bin/java.

    sudo ln -s /usr/bin/java /opt/jdk1.6.0_23/bin/java
    

    For this to work, the existing java command should be first delinked from the "headless" JDK. (Do the following before the previous command.)

    sudo mv /usr/bin/java /usr/bin/java_old
    

    This assumes that there is a link or executable named java in /usr/bin. Use the which command to be sure.

    which java
    
    0 讨论(0)
  • 2021-01-19 03:02

    To add a new pathname to the existing PATH variable, you need to type this in Terminal:

    PATH=`echo $path`:/your/new/path
    export PATH

    If you had lost your original PATH variable, you could restore by entering this:

    PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
    export PATH
    0 讨论(0)
  • 2021-01-19 03:04

    You simply have put the JDK binaries in a directory. Although by convention /opt/java or /opt/jdk is often used, these are not directories that are automatically recognized by the system.

    You can however update your PATH environment variable to include the /opt/java/bin dir, or symlink (ln -s) /opt/java/bin/java in one of the directories on your system that are included in your path like /usr/bin/

    0 讨论(0)
  • 2021-01-19 03:04

    Please follow below steps to install oracle java:

    Download the latest Java SE SDK version.

    http://www.oracle.com/technetwork/java/javase/downloads/index.html

    Untar the Archive:

    tar -xzvf jdk-8-linux-x64.tar.gz
    mv jdk1.8.0 /opt 
    cd /opt/jdk1.8.0
    

    This step registers the downloaded version of Java as an alternative, and switches it to be used as the default:

    update-alternatives --install /usr/bin/java java /opt/jdk1.8.0/bin/java 1
    update-alternatives --install /usr/bin/javac javac /opt/jdk1.8.0/bin/javac 1
    update-alternatives --install /usr/lib/mozilla/plugins/libjavaplugin.so mozilla-javaplugin.so /opt/jdk1.8.0/jre/lib/amd64/libnpjp2.so 1
    update-alternatives --set java /opt/jdk1.8.0/bin/java
    update-alternatives --set javac /opt/jdk1.8.0/bin/javac
    update-alternatives --set mozilla-javaplugin.so /opt/jdk1.8.0/jre/lib/amd64/libnpjp2.so
    

    Test

    To check the version of Java you are now running

    java -version
    

    Output

    java version "1.8.0"
    Java(TM) SE Runtime Environment (build 1.8.0-b132)
    Java HotSpot(TM) 64-Bit Server VM (build 25.0-b70, mixed mode)
    

    To check the browser plugin browse to http://www.java.com/ and click “Do I have Java?”

    Ref: https://askubuntu.com/questions/437776/ubuntu-13-04-unable-to-install-jdk7

    0 讨论(0)
  • 2021-01-19 03:10

    Was I wrong to try and make /opt/java my Java directory?

    Not really. Many Java developers install multiple JDK installations and always use /opt/jdk1.6.0_23 or similar paths. The bin file you downloaded is not an installer, but merely an extractor. It does not install the java binaries into system folders like /bin.

    I usually download the JDK and execute it from within my home folder and afterwards move it to /opt and performing an chown.

    Did I run the wrong commands?

    Not really. In case you wanted to install a separate JDK, you did it correctly. In case you wanted system integration, you would be better off to use the distribution-specific packages, such as the one installed via aptitude install sun-java6-jdk or alike.

    The bin you downloaded is imho more flexible, since I can use it to install multiple verisons of Java on the same system. I know this is something you don't often do on Linux machines.

    If you want to use the java binary on command line, you'd have to manually set up the PATH and JAVA_HOME environment variables. I think on Ubuntu that's /etc/environment or /etc/profile or something like that.

    Is Java 1.6.0_23 even installed on my machine?

    Not really. See above answers.

    What are all those gcj-xxx-headless targets?!?

    The GCJ is the Gnu Compiler for Java. Obviously, it includes a Java Development Kit and a Java Runtime Environment.

    0 讨论(0)
提交回复
热议问题