[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

PROBLEMA CON EL ISTALADOR DRAE



No se si ya te han dado la solución. Por si acaso te la envío.
El problema es la versión de java que usa el instalador y la que tu
tienes.
necesitas una librería que tendrás que compilar del siguiente texto:
#include <errno.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <sys/wait.h>
pid_t
__libc_wait (int *status)
{
int res;
asm volatile ("pushl %%ebx\n\t"
              "movl %2, %%ebx\n\t"
              "movl %1, %%eax\n\t"
              "int \$0x80\n\t"
              "popl %%ebx"
              : "=a" (res)
              : "i" (__NR_wait4), "0" (WAIT_ANY), "c" (status),
"d" (0), "S" (0));
return res;
}
copialo tal cual en un archivo y llamale por ejemplo libcwait.gcc
compilalo con el comando :
gcc -O2 -shared -o ~/libcwait.so -fpic -xc PATHQUETENGAS/libcwait.gcc
ejecuta:
export LD_ASSUME_KERNEL=2.4.19
export LD_PRELOAD=~/libcwait.so
ya podrás lanzar el instalador.
esta solución es la aportada por un programador de RedHat para el
instalador de Oracle pero a mi me ha ido de perlas con el DRAE.
espero que te sirva.
              mercedesjorge



Reply to: