Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

stress(1) [debian man page]

STRESS(1)							   User Commands							 STRESS(1)

NAME
stress - tool to impose load on and stress test systems SYNOPSIS
stress [OPTION [ARG]] ... DESCRIPTION
`stress' imposes certain types of compute stress on your system -?, --help show this help statement --version show version statement -v, --verbose be verbose -q, --quiet be quiet -n, --dry-run show what would have been done -t, --timeout N timeout after N seconds --backoff N wait factor of N microseconds before work starts -c, --cpu N spawn N workers spinning on sqrt() -i, --io N spawn N workers spinning on sync() -m, --vm N spawn N workers spinning on malloc()/free() --vm-bytes B malloc B bytes per vm worker (default is 256MB) --vm-stride B touch a byte every B bytes (default is 4096) --vm-hang N sleep N secs before free (default is none, 0 is inf) --vm-keep redirty memory instead of freeing and reallocating -d, --hdd N spawn N workers spinning on write()/unlink() --hdd-bytes B write B bytes per hdd worker (default is 1GB) --hdd-noclean do not unlink files created by hdd workers Example: stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 10s Note: Numbers may be suffixed with s,m,h,d,y (time) or B,K,M,G (size). SEE ALSO
The full documentation for stress is maintained as a Texinfo manual. If the info and stress programs are properly installed at your site, the command info stress should give you access to the complete manual. stress 1.0.1 August 2009 STRESS(1)

Check Out this Related Man Page

ffcfstress(1)						      General Commands Manual						     ffcfstress(1)

NAME
ffcfstress - constant force stress test for force-feedback devices SYNOPSIS
ffcfstress [-d <device>] [-u <update rate>] [-f <frequency>] [-a <amplitude>] [-s <strength>] [-o] DESCRIPTION
ffcfstress stress tests constant non-enveloped forces on a force feedback device. It simulates a moving spring force by applying a fre- quently updated constant force effect. Beware, the stress test may damage your device! OPTIONS
At least one option is required. -d <device> The device to test (by default /dev/input/event0). -u <update rate> The update rate in Hz (25 by default). -f <frequency> The spring center motion frequency in Hz (0.1 by default). -a <amplitude> The spring center motion amplitude, between 0.0 and 1.0 (1.0 by default). -s <strength> The spring strength factor (1.0 by default). -o Dummy option, useful when all defaults should be used. SEE ALSO
ffmvforce(1), fftest(1), jstest(1). AUTHOR
ffcfstress was written by Oliver Hamann. This manual page was written by Stephen Kitt <steve@sk2.org>, for the Debian GNU/Linux system (but may be used by others). It was last modified for ffcfstress dated February 15, 2002. ffcfstress March 8, 2009 ffcfstress(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

does any bodys know how to ?

how do i get rid of tsr's in my system i think that it has hit my hdd and keeps messing up my root partion tell me if i'm wrong. (6 Replies)
Discussion started by: amicrawler2000
6 Replies

2. HP-UX

hdds physically

Hi, I've a HP-UX 10x running on HP9000 box and also I have 3 scsi hdd(9Gb), one of them is working. I need to check the other 2 hdd physically. Is there an utility to check them from unix or another way to do it? Thanks.... (5 Replies)
Discussion started by: efrenba
5 Replies

3. UNIX for Dummies Questions & Answers

things root can't do

Hey all my co-workers and I are trying to put together a list of things root "Can't" do on any *NIX OS, so I wanted to come here and see what all we could come up with. Here are two to start this off: write to a read only mount FS kill a tape rewind Please add what you know. Thanks,... (5 Replies)
Discussion started by: sunadmn
5 Replies

4. UNIX for Dummies Questions & Answers

command topas

hi, everybody i have a problem about performane in unix when i run topas, there 1 form show, there are many parameter about memory,cpu,.... i want to know detail about those example : MEMORY Real,MB 12287 % Comp 25.0 % Noncomp 75.8 % Client 0.5 comp mean ? 25 mean ? 25MB or 25%memory... (6 Replies)
Discussion started by: tokienlua
6 Replies

5. AIX

How to access process and cpu info on AIX?

Hi, may be this is an AIX noob question: my current C++ application runs on Linux and is quite memory consuming. Therefore, the application writes a logfile after it has finished containing memory information, CPU information, information on the running other processes besides my application... (5 Replies)
Discussion started by: DarthVader77
5 Replies

6. Solaris

100% wait and heavy wsvc_t for new harddrive

Hi, recently we had an hdd failing in my SVM mirror, throwing hard errors; engineer on site swapped the hdd (he did it all right, from as I see - he broke the mirror, unconfigured the hdd, replaced it with the new one, configured and attached as metadevice). But, after this it began to throw i/o... (7 Replies)
Discussion started by: masloff
7 Replies

7. Programming

write() issue during a low level hdd access

Hi, I am trying to write zeroes to the hdd using a c program. I don't want to use the dd or ddrescue or any such inbuilt program because of reasons like real time progress, writing custom patterns. (my program is more like an erasure application, but does only zero fill). here are the steps... (35 Replies)
Discussion started by: sponnusa
35 Replies

8. UNIX for Advanced & Expert Users

calculate logical layout values for hdd

Please advice me how to calculate logical layout values in hdd from below table. Physical Layout ----------------- Bytes per Sector : 512 Sectors per Track : 480-1272 Number of Heads : 4 Number of Disks : 2 Logical Layout --------------- Number of Heads : 16 Number of Sectors /... (9 Replies)
Discussion started by: presul
9 Replies

9. AIX

Free PP Allocation problem

Firstly, I can't stress enough how much of a newb I am to AIX or Linux in general so please be very patient. I am strictly a MS man, however I now need to administer an IBM power series blade server which sits on top of an AIX VIOS. The VIOS version I am running is 2.1.2.0 and it is mirrored on two... (18 Replies)
Discussion started by: broonster
18 Replies

10. UNIX for Advanced & Expert Users

Load average in squeeze too low

sorry, not yelling, its just copied from a bug report and this prob is driving me crazy... ran stress --cpu 4 on a xeon and no problem the load went up to 4, but running mysql server for example the load is almost 0.00, where the same mysql server with same throughput gets 0.8 on another lenny... (15 Replies)
Discussion started by: suffeks
15 Replies

11. Shell Programming and Scripting

perl regex help needed

Hi, I want to validate strings in perl, the string may contains characters from a-zA-Z0-9 and symbols +-_.:/\ To validate such a string I computed a regex if ($string =~ m/^/) { print "valid"; } else { print "invalid"; } but this regex also validates strings that contain... (8 Replies)
Discussion started by: zing_foru
8 Replies

12. HP-UX

How to clone a 382-workstations hdd?

Hi there, I got a pretty old HP 382 workstation, and the hdd is pretty LOUD ... ;) So I thought I clone it to an much quiter one. I tried this: - removed the loud hdd - connected it to an system running knoppix 7.0.4 (hdd is recognized with UFS filesystem; Clonezilla couldn't handle the... (9 Replies)
Discussion started by: pelegrine
9 Replies

13. AIX

Regarding Upgrading RAM in AIX 6.1

Hi Folks, Currently we are having the below configuration in one of our AIX 6.1 server. RAM:- 8 GB Paging space :- 19 GB CPU processor:- 1 CPU type: 64 bit But we would like to upgrade the configuration to below to improve the system performance and resolve some memory issues. ... (11 Replies)
Discussion started by: sumanmca2006
11 Replies

14. Fedora

Fstab for 2nd hdd, how to?

once again, mounting another volume or hdd the fstab-file is giving me a headache. May someone could give me a hint how to configure the fstab-file properly to use the hdd. The following ls -l /dev/disk/by-uuidis giving me this Thats the UUID for /dev/sdb1 with the name "save"... (6 Replies)
Discussion started by: 1in10
6 Replies

15. Shell Programming and Scripting

Code that has to end no matter what

Since this is maxxing out my CPU, is there anything I can add that will make sure stress always ends? echo "CPU Stress Test" >> CPU_Stress_Test.txt echo "stress --cpu 8 --io 4 --vm 2 --vm-bytes 128M --timeout 1m" >> CPU_Stress_Test.txt echo >> CPU_Stress_Test.txt date +"%Y-%m-%d-%H-%M" >>... (9 Replies)
Discussion started by: drew77
9 Replies