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

roblem 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+