Chris Hennessy wrote: > Well you can do it in code, or you can use a utility called taskset. > Part of > the schedutils package I believe. It allows you to set the affinity of a > process. I googled and found it. > > Chris COOL!!! for PID in `ps -eo pid`; \ do taskset -c -p $PID; done Life is good. Thank you Chris! Peter