If you are looking for processor generation, so you need to choose commands with processor intensity. For example, random number generation.
Try the following:
dd if=/dev/urandom of=/dev/null
Add from this line for each CPU core. If you have a dual-core processor, use:
dd if=/dev/urandom of=/dev/null & dd if=/dev/urandom of=/dev/null &
Check jobs with
jobs
Quit using kill %1
(where% 1 is job number 1)
The bndr
source share