
Originally Posted by
pinhodecarlos
I created a file called "cc_config.xml" with the following content
<cc_config>
<no_cpu>1</no_cpu>
</cc_config>
but nothing happens. It still uses 2 cores.
Close, but not quite. 
http://boinc.berkeley.edu/wiki/Client_configuration
So it should be
Code:
<cc_config>
<options>
<ncpus>1</ncpus>
</options>
</cc_config>

Originally Posted by
Wiki
<ncpus>N</ncpus>
Act as if there were N CPUs; i.e. to simulate 2 CPUs on a machine that has only 1. To use the number of available CPUs, set the value to -1 (was 0 which in newer clients really means zero to e.g. only allow GPU computing).