LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Any good cpu stress test for Debian (non GUI) ? (https://www.linuxquestions.org/questions/linux-software-2/any-good-cpu-stress-test-for-debian-non-gui-4175576963/)

Hot Beef 04-07-2016 10:07 PM

Any good cpu stress test for Debian (non GUI) ?
 
Know of any good cpu stress test for Debian (non GUI) ?
Just want to test some things..

TobiSGD 04-08-2016 12:23 AM

Any good cpu stress test for Debian (non GUI) ?
 
I usually use mprime for stressing the CPU (using small FFTs) or CPU+RAM (using larger FFTs).

Habitual 04-08-2016 08:27 AM

stress package?

beachboy2 04-08-2016 10:49 AM

Hot Beef,

Several suggestions here:

http://www.cyberciti.biz/faq/stress-...ith-stress-ng/

ondoho 04-09-2016 02:21 AM

stress

jlliagre 04-09-2016 03:07 AM

Here is a shell function that fully load the given number of CPUs for the given number of seconds (default one CPU for 60 seconds):

Code:

# Usage: lc [number_of_cpus_to_load [number_of_seconds] ]
lc() {
  (
    pids=""
    cpus=${1:-1}
    seconds=${2:-60}
    echo loading $cpus CPUs for $seconds seconds
    trap 'for p in $pids; do kill $p; done' 0
    for ((i=0;i<cpus;i++)); do while : ; do : ; done & pids="$pids $!"; done
    sleep $seconds
  )
}


przemo 04-09-2016 05:44 AM

http://www.overclockers.com/forums/s...d-Benchmarking

Hot Beef 04-09-2016 07:05 AM

Thanks guys. I think ill try measuring the compile time and maybe try the super pi to compare my new VPS provider to others.
Not like it really matters for me but still curious. I think some good ones were mentioned here that weren't easily googled on the first page. :)

Can't run it too long though, they might get angry! :o


All times are GMT -5. The time now is 03:25 AM.