ubuntu14.04를 사용하여 jdk 및 oracle을 연 후에도 JRE가 실패합니다...

ubuntu14.04를 사용하여 jdk 및 oracle을 연 후에도 JRE가 실패합니다...
$ sudo update-alternatives --config java

There are 2 choices for the alternative java (providing /usr/bin/java).

  Selection    Path                                            Priority       Status
------------------------------------------------------------
* 0            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java  1069          auto mode
  1            /usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java  1069         manual mode
  2            /usr/lib/jvm/java-8-oracle/jre/bin/java         1            manual mode

Press enter to keep the current choice[*], or type selection number: 1

$ java -version
openjdk version "1.8.0_45-internal"
OpenJDK Runtime Environment (build 1.8.0_45-internal-b14)
OpenJDK 64-Bit Server VM (build 25.45-b02, mixed mode)

하지만 bin 도구를 설치하려고 하면 다음과 같습니다.

$ ./DS41Client.bin 

      Initializing InstallShield Wizard........
      Extracting Bundled JRE.          

                Bundled JRE is not binary compatible with host OS/Arch 
                or it is corrupt.  Testing bundled JRE failed.

무엇이 빠졌는지 말해주실 수 있나요?

답변1

마지막 오류 메시지에 나와 있듯이 바이너리에는 32비트 JRE일 수 있는 자체 JRE가 포함되어 있습니다.

64비트 버전을 사용해야 합니다 ./DS41Client.bin.

참고: 실제로 배포판의 다중 라이브러리 패키지를 설치하십시오.할 수 있다도움이 되지만 바이너리가 자체 검사를 수행하는 것 같기 때문에 작동하지 않을 것 같습니다(어쩌면 커널 버전이나 그와 유사한 것만 검사할 수도 있습니다...).

관련 정보