Page 1 sur 1

Probleme d'install Domino 6 sur Linux Redhat 8

MessagePublié: 28 Nov 2003 à 12:46
par Yves
Bonjour,Quelqu'un a t'il déjà rencontré ce problème :Je lance l'installation de Domino 6.0.2 (peu importe la verion en fait, le problème est le même avec une 6.0.1 ou une 5.0.x) sur une redhat 8.Lorsque l'installation se lance, j'ai le message d'erreur (de validation des paramètres) suivant :>>There is not enough disk space for the program directory at/opt/lotus72821k is required, and only Disponiblek would be available.The installation cannot proceed for the local host.<<Il y a cependant largement assez d'espace libre sur mon serveur.Je suis bien loggé sous l'identité root.????Merci d'avance si quelqu'un a la solution.Yves

Re: Probleme d'install Domino 6 sur Linux Redhat 8

MessagePublié: 01 Déc 2003 à 08:53
par s001001
Salut,la technote 191956 parle ce ce pb mais en version 5.x (jusqu'a la 5.012 corrigé depuis)essaye qd même ce qu'il propose :Problem When installing Domino R5 on Linux, you find that the installation script generates the following error message:"Error validating installation settings:There is not enough disk space for the program directory at /shield/cludom/lotus71010k is required, and only k would be available. The installation cannot proceed for the local host." Solution The installation script uses "df -k" to calculate the hard-drive free space. Since the introduction of the new package rpm fileutils-4.0, the display result of this command has changed, which causes the above error.To correct the problem, you can modify the script linux/tools/lib/MiscUtil.pl in the function GetPathData as follows:Replace :} elsif ( $arch =~ /^linux/ ) {$cmd = "/bin/df -k $existPath";With :} elsif ( $arch =~ /^linux/ ) {$cmd = "/bin/df -kP $existPath";This change has been included in the 5.0.12 version of Domino. a+