Java 7 installation error

ubunturk

I'm getting this output when i try to install oracle-java7 from webupd8 ppa

Download done.
Removing outdated cached downloads...
sha256sum mismatch jdk-7u51-linux-x64.tar.gz
Oracle JDK 7 is NOT installed.
dpkg: error processing oracle-java7-installer (--configure):
 subprocess installed post-installation script returned error exit status 1
Setting up gsfonts-x11 (0.22) ...
Errors were encountered while processing:
 oracle-java7-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)
ubunturk

I download source file from Oracle's website and installed manually from scratch... It is working well now ... The solution I used is here

The instructions given are as follows and should be updated for the current version:

Download Java SE 7 JDK for Linux x86 archive. At the time of writing, the file I'm using is jdk-7u21-linux-i586.tar.gz, but the filename will change as updates are released. Apparently there is no longer a jvm folder, so create one.

sudo mkdir /usr/lib/jvm

Move the archive to the jvm folder

sudo mv jdk-7u21-linux-i586.tar.gz /usr/lib/jvm/

Change to the jvm folder and extract the JDK from the archive

cd /usr/lib/jvm

sudo tar zxvf jdk-7u21-linux-i586.tar.gz

Everything will be extracted to a new jdk1.7.0_21 folder and you can delete the archive file now. Make symbolic links to the new java binary.

sudo ln -s -b /usr/lib/jvm/jdk1.7.0_21/jre/bin/java /etc/alternatives/java

sudo ln -s -b /usr/lib/jvm/jdk1.7.0_21/jre/bin/java /usr/bin/java

Double-check the version

java -version

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Java 7 installation error

From Dev

Error while WAS 7 installation

From Dev

uwsgi installation error in windows 7

From Dev

Installation error in tomcat7

From Dev

Java installation disappearing on Windows 7

From Dev

Torch7 Mac Installation error

From Dev

App installation failed: Unknown Error Xcode 7

From Dev

Error in Phone Gap Installation on windows 7

From Dev

scala installation error on a windows 7 machine

From Dev

Cannot use Java 7 installation if Java 8 is installed

From Dev

Oracle Java 7 Installation in Ubuntu 12.04 - JB-java.desktop

From Dev

Cannot locate java installation error for logstash

From Dev

Eclipse (Java SE) Installation Error without message

From Dev

UBUNTU server java 8 installation error

From Dev

Error with GuzzleHttp trying to decode a JSON string into an array in a php 7 installation

From Dev

Windows 7 refusing to install due to a partition error during installation

From Dev

Laravel 5.1 error in installation on windows 7 using xampp

From Dev

Error during installation of Drupal 7 on Linux/Webhosting site

From Dev

Installation Error of Sysmon on Windows 7 VM - Sysmondrv Driver and StartService Issue

From Dev

pip installation error on windows 7 (32-bit)

From Dev

ClassCast error: Java 7 vs Java 8

From Dev

Confusion after installation of JDK 1.7 and Java EE 7 SDK?

From Dev

Why does Java 7 fail to Verify after successful JRE installation - Java 7 not running my any browser

From Dev

Why does Java 7 fail to Verify after successful JRE installation - Java 7 not running my any browser

From Dev

error installation

From Dev

Java 7 update 6 installation fails on Windows 7 when Chrome is default browser

From Dev

Android Studio Installation Error: supplied java-home seems to be invalid

From Dev

Error: JAVA_HOME is not defined correctly - after maven installation

From Dev

Java out of memory error during the installation processor of netbeans

Related Related

  1. 1

    Java 7 installation error

  2. 2

    Error while WAS 7 installation

  3. 3

    uwsgi installation error in windows 7

  4. 4

    Installation error in tomcat7

  5. 5

    Java installation disappearing on Windows 7

  6. 6

    Torch7 Mac Installation error

  7. 7

    App installation failed: Unknown Error Xcode 7

  8. 8

    Error in Phone Gap Installation on windows 7

  9. 9

    scala installation error on a windows 7 machine

  10. 10

    Cannot use Java 7 installation if Java 8 is installed

  11. 11

    Oracle Java 7 Installation in Ubuntu 12.04 - JB-java.desktop

  12. 12

    Cannot locate java installation error for logstash

  13. 13

    Eclipse (Java SE) Installation Error without message

  14. 14

    UBUNTU server java 8 installation error

  15. 15

    Error with GuzzleHttp trying to decode a JSON string into an array in a php 7 installation

  16. 16

    Windows 7 refusing to install due to a partition error during installation

  17. 17

    Laravel 5.1 error in installation on windows 7 using xampp

  18. 18

    Error during installation of Drupal 7 on Linux/Webhosting site

  19. 19

    Installation Error of Sysmon on Windows 7 VM - Sysmondrv Driver and StartService Issue

  20. 20

    pip installation error on windows 7 (32-bit)

  21. 21

    ClassCast error: Java 7 vs Java 8

  22. 22

    Confusion after installation of JDK 1.7 and Java EE 7 SDK?

  23. 23

    Why does Java 7 fail to Verify after successful JRE installation - Java 7 not running my any browser

  24. 24

    Why does Java 7 fail to Verify after successful JRE installation - Java 7 not running my any browser

  25. 25

    error installation

  26. 26

    Java 7 update 6 installation fails on Windows 7 when Chrome is default browser

  27. 27

    Android Studio Installation Error: supplied java-home seems to be invalid

  28. 28

    Error: JAVA_HOME is not defined correctly - after maven installation

  29. 29

    Java out of memory error during the installation processor of netbeans

HotTag

Archive