Total


 
Thread Tools Search this Thread
Operating Systems Solaris Total
# 1  
Old 11-05-2013
Total

i want to list Total HDD count in any soalris machine..can someone suggest some commands or combinations of commands
# 2  
Old 11-05-2013
This information should be available via format command.

Something like :
echo | format | wc -l
# 3  
Old 11-05-2013
no this command will not be of any help..thanks..Smilie
Any more suggestions please
# 4  
Old 11-05-2013
Why not? What do you expect?
# 5  
Old 11-05-2013
Code:
iostat -E | egrep -c '^sd|^dad|^ssd'

will count a CDROM, too.
But not
Code:
format </dev/null | grep -c '[0-9]\.'

# 6  
Old 11-05-2013
Quote:
Originally Posted by omkar.jadhav
no this command will not be of any help..thanks..Smilie
Any more suggestions please
Peasant's suggestion will list the requested data. What's wrong with it?
# 7  
Old 11-06-2013
thank you very much for your suggestion and help..
This forum is very usefull for ppl like me who are new to Admin field.
Thanks againSmilie
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Column total

Input `0B0A RDF1+TDEV 45 BL_lmapm03 `0CE7 TDEV 59 BL_lmapm03 `0B09 RDF1+TDEV 70 BL_lmapm02 `0CE6 TDEV 59 BL_lmapm02 `0B08 RDF1+TDEV 70 BL_lmapm01 `0CE5 TDEV 59 BL_lmapm01 Output... (2 Replies)
Discussion started by: greycells
2 Replies

2. Shell Programming and Scripting

Total of columns

Input file cll_0014_spp,84,uranus,disk33,45 cll_0014_spp,84,pluto,disk3,10 cll_0014_spp,450,pluto,disk4,1 cll_0014_spp,453,pluto,disk46,19 cll_0014_spp,84,neptune,disk34,60 cll_0014_spp,450,neptune,disk4,1 cll_0014_spp,68,neptune,disk54,59 cll_1234_spp,66,satrun,1000... (6 Replies)
Discussion started by: greycells
6 Replies

3. Shell Programming and Scripting

Help with sum total number of record and total number of record problem asking

Input file SFSQW 5192.56 HNRNPK 611.486 QEQW 1202.15 ASDR 568.627 QWET 6382.11 SFSQW 4386.3 HNRNPK 100 SFSQW 500 Desired output file SFSQW 10078.86 3 QWET 6382.11 1 QEQW 1202.15 1 HNRNPK 711.49 2 ASDR 568.63 1 The way I tried: (2 Replies)
Discussion started by: patrick87
2 Replies

4. Shell Programming and Scripting

du -s *.ext (total)

How would I get a total of a wildcard of files from the 'du' command? du -s *.pdf Result: 736 11mens_bracket.pdf 64 2011_NIT_Bracket_3_13_11.pdf 80 Doing more with Less part1.pdf 1064 Doing more with Less part2.pdf 28 Parkview_1309_Garage.pdf 3964 statsheet-bracket-2011.pdf Expected... (7 Replies)
Discussion started by: AlphaLexman
7 Replies

5. Red Hat

Total Memory

Hi, I have a strange issue where the total memory on the server is showing low. At the moment 8 GB of memory is installed and only 3 GB is showing on the shell prompt. I am using the commands free -m and vmstat to check the memory. Please help me out in identifying the issue. With regards... (3 Replies)
Discussion started by: shabu
3 Replies

6. Shell Programming and Scripting

Calculate total space, total used space and total free space in filesystem names matching keyword

Good afternoon! Im new at scripting and Im trying to write a script to calculate total space, total used space and total free space in filesystem names matching a keyword (in this one we will use keyword virginia). Please dont be mean or harsh, like I said Im new and trying my best. Scripting... (4 Replies)
Discussion started by: bigben1220
4 Replies

7. UNIX for Dummies Questions & Answers

du total

Hi All Can anyone help me with the following du querry. I am trying to achieve a total size for all the zipped files in a directory. Using du -k *.gz gets me a file by file list but no handy total at the bottom. Thanks Ed (9 Replies)
Discussion started by: C3000
9 Replies

8. Shell Programming and Scripting

Running Total

HPUX 11i v2 #!/bin/sh Hi all. I have a space delimited flat file of about 9000 lines. I would like to get a running total of field 3 to the variable $TOTAL. Field 3 can be formatted as listed.... $ 0.00 $2804.15 <$ 4.14> (negative) Any ideas are most appreciated!!!! TIA!! (9 Replies)
Discussion started by: lyoncc
9 Replies

9. UNIX for Dummies Questions & Answers

grep running total/ final total across multiple files

Ok, another fun hiccup in my UNIX learning curve. I am trying to count the number of occurrences of an IP address across multiple files named example.hits. I can extract the number of occurrences from the files individually but when you use grep -c with multiple files you get the output similar to... (5 Replies)
Discussion started by: MrAd
5 Replies
Login or Register to Ask a Question