tags 395051 + unreproducible thanks On Tue, Oct 24, 2006 at 17:44:55 +0200, Jean-Luc Coulon (f5ibh) wrote: > With this setting, whe I start the wrapper, it exhausts all the available > memory, all the swap and the system is competely unresponsive. So I'm > unable to kill or have any action on the running processes.
This sounds like your wrapper is acting as a fork bomb (i.e. invoking itself recursively). The following script, installed and invoked as "gnum" works fine for me. #! /bin/bash export LANG=fr_FR.UTF-8 export LC_CTYPE="fr_FR.UTF-8" export LC_NUMERIC=C export LC_TIME="fr_FR.UTF-8" export LC_COLLATE="fr_FR.UTF-8" export LC_MONETARY="fr_FR.UTF-8" export LC_MESSAGES="fr_FR.UTF-8" export LC_PAPER="fr_FR.UTF-8" export LC_NAME="fr_FR.UTF-8" export LC_ADDRESS="fr_FR.UTF-8" export LC_TELEPHONE="fr_FR.UTF-8" export LC_MEASUREMENT="fr_FR.UTF-8" export LC_IDENTIFICATION="fr_FR.UTF-8" export LC_ALL= /usr/bin/gnumeric HTH, Ray -- The Linux movement has been independent of anything Microsoft is doing. It's one of those cosmic movements in the industry, like the emergence of the Internet, or microprocessors. Irving Wladawsky-Berger, IBM VP in http://www.informationweek.com/793/ibm.htm -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

