0

I am using Ubuntu 12.04 and I want to stress test my system but most of benchmarks are specific in nature. Either they are benchmarking Disk or CPU or Memory usage etc. But is there anything which can generate load like the real systems do i.e CPU,Memory and Disk all together.

fixer1234
  • 28,064
A-B
  • 136

3 Answers3

0

I would recommend checking out Passmark burn in test for linux. They provide a 30 day evaluation which may suit your needs. An alternative would be to run stress tests for each of the components at the same time.

0

Use parallel:

 parallel -j 3 -- test1 test2 test3 

This will run the three specific tests, test[1-3], simultaneously.

If you want to extend that, you may write a small script which keeps executing each test as soon as it has finished:

 while true; do test1; done

This will give you a (theoretically infinite) long stretch of time over which your system is stressed.

MariusMatutiae
  • 48,517
  • 12
  • 86
  • 136
0

Try the utility stress {link}

If you more interested in stress-testing the hardware (as opposed to how Ubuntu handles a heavy load), try running Stresslinux {link}.

Tronic
  • 253