Sponsored Content
Top Forums UNIX for Advanced & Expert Users Separated hard disks for Operating System and applications - better IO performance ? Post 302462134 by jgt on Wednesday 13th of October 2010 10:53:13 AM
Old 10-13-2010
I just checked a system, that has 43 signed on users running a call centre application.
Code:
HP Proliant, Drive 0 = 2 disks RAID1                                           
             Drive 1 = 6 disks RAID10                                          
                                                                               
10:45:49 device             MB     %busy   avque   r+w/s  blks/s   avwait  avserv 
Average  c0b0t0d0p1s2    29966        5      8.6     13      155      32.5     4.3 
Average  c0b0t0d0p1      34699        5      8.6     13      155      32.5     4.3 
Average  c0b0t1d0p1s0    19531        0      1.4      0        0       2.1     5.7 
Average  c0b0t1d0p1s1    39062        2      2.4      7       93       5.2     3.6 
Average  c0b0t1d0p1s2   151323        2      2.5      5      102       5.9     4.0 
Average  c0b0t1d0p1     209924        3      3.1     13      196       6.3     3.0

Surprisingly the root file system is the busiest.

Last edited by jgt; 10-13-2010 at 11:59 AM.. Reason: align columns
 

8 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

External Lacie USB hard disks

I'm trying to mount a USB Lacie external hardrive in my Linux system but am having trouble doing so, I'm also having trouble mounting my USB ZIP 250 drive. It is totally me being stupid, but I'm new to unix and am having a few teathing problems. the command I'm using is the following mount... (4 Replies)
Discussion started by: electrode101
4 Replies

2. Solaris

Hard disks in solaris

I need to insert a new hard disk into a Sun Fire v210 machine. The (only) internal disk which is already in the machine is part number XRA-SC1CB-73G10K (DISK DRIVE ASSY. 73GB, 10K RPM, with SPUD BRACKET). I also have nearly endless access to IBM hard disks at extremely low prices and would there... (2 Replies)
Discussion started by: sprellari
2 Replies

3. Solaris

Get onyl local hard disks

How can I get only the local hard disks in Solaris? I've tried iostat -x, iostat -E, etc, but it shows the cdroms, dvds, external storage... I want only the local physical hard disks. Thanks. (2 Replies)
Discussion started by: psimoes79
2 Replies

4. AIX

Mount points to hard disks

Hi I am oracle DBA and sometimes need to see on which disks oracle data files are residing . How can we check that . The file system is jfs on aix 5.2.0.0 The method is use is to use mount |grep oracle_dir_name or lsfs mount_point_name command to see what /dev/logical_volume_name is mounted... (1 Reply)
Discussion started by: clifford
1 Replies

5. Solaris

Hard/Transfer errors in disks

Could you please explain us what are these transport/hard errors... when i ran the following command, iostat -E | grep Errors i got the following: sd240 Soft Errors: 37 Hard Errors: 1144 Transport Errors: 0 sd578 Soft Errors: 0 Hard Errors: 890 Transport Errors: 0 Please... (5 Replies)
Discussion started by: sundar3350
5 Replies

6. Shell Programming and Scripting

How to get number of attached hard disks in HP-UX

how do i get the number of attached hard disks in HP-UX (1 Reply)
Discussion started by: achak01
1 Replies

7. Solaris

Determining number of hard disks in the system

Hello to all, what is the command in Solaris/Unix which I can use to determine how many hard disks exist in the system? I have tried with different command such as df -lk and similar but cannot know for sure how many actual disks are installed. Commands like # fdisk -l | grep Disk and #... (14 Replies)
Discussion started by: Mick
14 Replies

8. AIX

How to reclaim hard disks and IP's in AIX?

Hello I recently received a request to reclaim hard disks and IP addresses within an AIX system(s). THe file systems are no longer in use and the client has indicated that it is OK to remove them and reclaim the disks and release the IP's. Now, since the file systems belong to a Volume group I... (8 Replies)
Discussion started by: Joseph Sabo
8 Replies
TIME(1) 																   TIME(1)

NAME
time - time a simple command or give resource usage SYNOPSIS
time [options] command [arguments...] DESCRIPTION
The time command runs the specified program command with the given arguments. When command finishes, time writes a message to standard output giving timing statistics about this program run. These statistics consist of (i) the elapsed real time between invocation and ter- mination, (ii) the user CPU time (the sum of the tms_utime and tms_cutime values in a struct tms as returned by times(2)), and (iii) the system CPU time (the sum of the tms_stime and tms_cstime values in a struct tms as returned by times(2)). OPTION
-p When in the POSIX locale, use the precise traditional format "real %f user %f sys %f " (with numbers in seconds) where the number of decimals in the output for %f is unspecified but is sufficient to express the clock tick accuracy, and at least one. ENVIRONMENT
The variables LANG, LC_ALL, LC_CTYPE, LC_MESSAGES, LC_NUMERIC, NLSPATH and PATH are used. The last one to search for command. The remain- ing ones for the text and formatting of the output. EXIT STATUS
If command was invoked, the exit status is that of command. Otherwise it is 127 if command could not be found, 126 if it could be found but could not be invoked, and some other nonzero value (1-125) if something else went wrong. SEE ALSO
times(2), GNU VERSION
Below a description of the GNU 1.7 version of time. Disregarding the name of the utility, GNU makes it output lots of useful information, not only about time used, but also on other resources like memory, I/O and IPC calls (where available). The output is formatted using a format string that can be specified using the -f option or the TIME environment variable. The default format string is %Uuser %Ssystem %Eelapsed %PCPU (%Xtext+%Ddata %Mmax)k %Iinputs+%Ooutputs (%Fmajor+%Rminor)pagefaults %Wswaps When the -p option is given the (portable) output format real %e user %U sys %S is used. The format string The format is interpreted in the usual printf-like way. Ordinary characters are directly copied, tab, newline and backslash are escaped using , and \, a percent sign is represented by %%, and otherwise % indicates a conversion. The program time will always add a trail- ing newline itself. The conversions follow. All of those used by tcsh(1) are supported. Time %E Elapsed real time (in [hours:]minutes:seconds). %e (Not in tcsh.) Elapsed real time (in seconds). %S Total number of CPU-seconds that the process spent in kernel mode. %U Total number of CPU-seconds that the process spent in user mode. %P Percentage of the CPU that this job got, computed as (%U + %S) / %E. Memory %M Maximum resident set size of the process during its lifetime, in Kbytes. %t (Not in tcsh.) Average resident set size of the process, in Kbytes. %K Average total (data+stack+text) memory use of the process, in Kbytes. %D Average size of the process's unshared data area, in Kbytes. %p (Not in tcsh.) Average size of the process's unshared stack space, in Kbytes. %X Average size of the process's shared text space, in Kbytes. %Z (Not in tcsh.) System's page size, in bytes. This is a per-system constant, but varies between systems. %F Number of major page faults that occurred while the process was running. These are faults where the page has to be read in from disk. %R Number of minor, or recoverable, page faults. These are faults for pages that are not valid but which have not yet been claimed by other virtual pages. Thus the data in the page is still valid but the system tables must be updated. %W Number of times the process was swapped out of main memory. %c Number of times the process was context-switched involuntarily (because the time slice expired). %w Number of waits: times that the program was context-switched voluntarily, for instance while waiting for an I/O operation to com- plete. I/O %I Number of file system inputs by the process. %O Number of file system outputs by the process. %r Number of socket messages received by the process. %s Number of socket messages sent by the process. %k Number of signals delivered to the process. %C (Not in tcsh.) Name and command line arguments of the command being timed. %x (Not in tcsh.) Exit status of the command. GNU OPTIONS
-f FORMAT, --format=FORMAT Specify output format, possibly overriding the format specified in the environment variable TIME. -p, --portability Use the portable output format. -o FILE, --output=FILE Do not send the results to stderr, but overwrite the specified file. -a, --append (Used together with -o.) Do not overwrite but append. -v, --verbose Give very verbose output about all the program knows about. GNU STANDARD OPTIONS
--help Print a usage message on standard output and exit successfully. -V, --version Print version information on standard output, then exit successfully. -- Terminate option list. BUGS
Not all resources are measured by all versions of Unix, so some of the values might be reported as zero. The present selection was mostly inspired by the data provided by 4.2 or 4.3BSD. GNU time version 1.7 is not yet localized. Thus, it does not implement the POSIX requirements. The environment variable TIME was badly chosen. It is not unusual for systems like autoconf or make to use environment variables with the name of a utility to override the utility to be used. Uses like MORE or TIME for options to programs (instead of program path names) tend to lead to difficulties. It seems unfortunate that -o overwrites instead of appends. (That is, the -a option should be the default.) Mail suggestions and bug reports for GNU time to bug-utils@prep.ai.mit.edu Please include the version of time , which you can get by running time --version and the operating system and C compiler you used. SEE ALSO
tcsh(1), times(2), wait3(2) AUTHORS
David Keppel Original version David MacKenzie POSIXization, autoconfiscation, GNU getoptization, documentation, other bug fixes and improvements. Arne Henrik Juul Helped with portability Francois Pinard Helped with portability 2000-12-11 TIME(1)
All times are GMT -4. The time now is 02:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy