Description of problem: the tux initscript uses 3 commands to determine the number of CPUs and doesn't even set LANG=C to speed up grep: NRCPUS=$(cat /proc/cpuinfo | grep '^processor[ 0-9]*:' | wc -l) This should be replaced by NRCPUS=$(/usr/bin/getconf _NPROCESSORS_ONLN)