Benutzer-Werkzeuge

Webseiten-Werkzeuge


linux:allgemein:tipps_und_tricks:java_virtual_machine

java virtual machine

  • Fehler 1:
$ ./IRGENDWAS_1.bin
Preparing to install...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
No Java virtual machine could be found from your PATH
environment variable.  You must install a VM prior to
running this program.
  • Lösung 1:
$ export PATH=/path/to/java-vm/bin:$PATH
$ export JAVADIR=/usr/local/jdk1.6.0/


  • Fehler 2:
$ ./IRGENDWAS_1.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
/bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory

Launching installer...

rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
rm: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
  • Lösung 2:
$ cp IRGENDWAS_1.bin IRGENDWAS.bin.bak
$ cat IRGENDWAS.bin.bak | sed "s/export LD_ASSUME_KERNEL/#xport LD_ASSUME_KERNEL/" > IRGENDWAS_2.bin
linux/allgemein/tipps_und_tricks/java_virtual_machine.txt · Zuletzt geändert: 09.07.2013 21:43 (Externe Bearbeitung)