The install script say :
Lotus Domino for Unix Install Program
./install: line 210: which: command not found
./install: line 212: which: command not found
Unable to locate Perl on this system.
The install script say :
Lotus Domino for Unix Install Program
./install: line 210: which: command not found
./install: line 212: which: command not found
Unable to locate Perl on this system.
Subject: unable to install Domino 653/654 on Fedora3
you need to install the perl packages on the system.
i’m not sure fedora is a supported system anyway.
Subject: RE: unable to install Domino 653/654 on Fedora3
Yes I have installed the Perl 5-8, but no change at all
I have replaced the install script by the install script from the V7Beta3
The install worked perfectly, now the domino654 is working perfectly with this fedora 3
Subject: RE: unable to install Domino 653/654 on Fedora3
Hi,
your problem is NOT Perl - it is a little program called “which” - this one is not installed on your system…
This little program is a little “helper program” for other programs like install routines with the following description:
“Displays where a particular program in your path is located”
Get the following file:
ftp://195.220.108.108/linux/fedora/core/3/i386/os/Fedora/RPMS/which-2.16-4.i386.rpm
and install with:
rpm -ivh {downloaded rpm-file}
Now it will work for sure…
By the way: If you want to apply a Language Pack i think you will get a error message like this: (Because you are from France i saw…)
“Unable to load native library: /tmp/isjawBpbr/lib/i386/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference”
To resolve this problem you need to do the following:
Create a file called “libcwait.c”
Insert the following lines into it:
#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;
}
Compile it with command: “gcc -shared -o libcwait.so -O -g libcwait.c”
Move libcwait.so to “/usr/lib”
Enter “export LD_PRELOAD=/usr/lib/libcwait.so” on the console
Retry the Language-Pack-Installer…
Good Luck -
Martin
Subject: RE: unable to install Domino 653/654 on Fedora3
Thanks this works for me on Centos !