You are not logged in.
I have a intel core2 duo with 32bit Arch.
I allow paralleling work in bios. In the system I see 2 processor and both are working. But they don't work together. I mean when processor A is comming up then processor B is comming down. When A working at 80% then B working only at 20%. I think they rotate with their work but never working together.
Offline
Multicore is difficult, because many things are hard to do in parallel. In other words: Many tasks will only use one processor.
But just to see both processors at 99% you can do the following:
Open two terminals. Execute in both terminals the following code:
while [ 1 ]; do echo -n; done
This is a simple infinite loop in bash, which will "print nothing" and "stress" your CPUs. (Use Ctrl+C to end the loop.)
Offline
or:
openssl speed aes-256-cbc
openssl speed aes-256-cbc -multi 2
to see the benefits.
Offline
More productively, you can use the relevant settings and put both cores to use when building from source.
Offline
I know that if I wanna do somthing parallel I need have programs which has been written parallel. But when I try Fedora (I think it was 11) I think I saw some programs works as parallel.
Offline
That has nothing to do with the distribution, the same programs should also work under arch parallel.
Offline
Almost all programs are still serial (only use 1 processor at a time), Nagian is right that this has nothing to do with the distribution.
Offline