How to read EMC disk space


 
Thread Tools Search this Thread
Operating Systems Solaris How to read EMC disk space
# 1  
Old 01-20-2010
How to read EMC disk space

Hi

I am using Solaris8.I want to find the total disk space of my server.Can anyone please tell that which field in below mentioned code signifies the disk space and whether this space is in Mb or GB.
Code:
 
  c11t0d52 <EMC-SYMMETRIX-5264 cyl 4 alt 2 hd 15 sec 64>
          /sbus@6,0/fcaw@1,0/sd@0,34
  c11t0d53 <EMC-SYMMETRIX-5264 cyl 4 alt 2 hd 15 sec 64>
          /sbus@6,0/fcaw@1,0/sd@0,35
  emcpower0a <EMC-SYMMETRIX-5264 cyl 18311 alt 2 hd 15 sec 64>
          /pseudo/emcp@0
  emcpower1a <EMC-SYMMETRIX-5264 cyl 18311 alt 2 hd 15 sec 64>
          /pseudo/emcp@1
  emcpower2a <EMC-SYMMETRIX-5264 cyl 18311 alt 2 hd 15 sec 64>
          /pseudo/emcp@2

Cheers,
Ankur
# 2  
Old 01-21-2010
You can't, from the above. Probably you will need to use format to see the cylinder size from the partition table eg for c11t0d52 .
# 3  
Old 01-26-2010
You will probably need to use Navisphere or whatever software your EMC device is using to match the LUN's and check the LUN sizes.
# 4  
Old 01-26-2010
Quote:
Originally Posted by mainegeek
You will probably need to use Navisphere or whatever software your EMC device is using to match the LUN's and check the LUN sizes.
what if we don't choose to download and install the management software?
# 5  
Old 01-26-2010
Quote:
Originally Posted by incredible
what if we don't choose to download and install the management software?
My answer is based on my personal experience. I manage a CX500 and you launch Navisphere by hitting the controller via a web browser--no software to install. In my case:
http://emcspa

Since sharmaankur85 output appears to be mounting the LUN's via powermt (based on the device names) I assume sharmaankur85 has the same option. Powermt is an EMC licensed product and works hand-in-hand with Navisphere.

On the solaris side you can try to gleem some data out of powermt:

Code:
# powermt display dev=all

I tried it on one of my porduction systems but it does not produce device sizes either.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Solaris 10 booting from EMC SAN DISK

Hi All, I have server : Sun-Fire-V490 configured with Solaris 10 zfs .. and I have configured three mirror the third one from EMC storage. root@server # zpool status -v pool: rpool state: ONLINE status: The pool is formatted using an older on-disk format. The pool can ... (8 Replies)
Discussion started by: top.level
8 Replies

2. UNIX for Dummies Questions & Answers

How much disk space?

Hi, I have this : uname -a Linux servername 2.6.18-194.11.3.el5PAE #1 SMP Mon Aug 23 15:57:10 EDT 2010 i686 i686 i386 GNU/Linux df -k Sys. de fich. 1K-blocs Occupied Disponible Capacity Monted on /u01/applis 10321208 3190160 6606760 33% /applis Does it mean... (1 Reply)
Discussion started by: big123456
1 Replies

3. Shell Programming and Scripting

disk space

Hi, I am new to shell scripting, and want to monitor disk space using shell script continously on server, which will shoot mail after crossing threshold limit Please suggest. Regards Manoj (1 Reply)
Discussion started by: manoj.solaris
1 Replies

4. Shell Programming and Scripting

Disk Space

Hi This is my script for disk space monitoring clear if then echo "You must be root user to execute the script" fi ALERT_LEVEL=10 CONSUMPTION_LEVEL= `df -k | awk {'print $5'} | cut -d '%' -f1 | sed "1 d"` for i in $CONSUMPTION_LEVEL do FILE_SYSTEM=`df -k | awk {'print $1'} |... (3 Replies)
Discussion started by: chrs0302
3 Replies

5. Filesystems, Disks and Memory

disk space

Hello All- Am new member to this forum. Have some unix experience. But true believer in it compared to windows. Have a question regarding the disk space. I know a command to check the total disk space utilization using: df -k . but what is the command to check the same disk space by... (6 Replies)
Discussion started by: milkyway
6 Replies

6. Shell Programming and Scripting

Disk Space

HI ... I am New to the Unix...I am trying to write a script to check the disk space. But i am not able to write it. I know the command to check the disk space df -k,but unable to write the script..Can any body help me... Thanks in advance... (3 Replies)
Discussion started by: Kingkon
3 Replies

7. HP-UX

Disk Space

Hi Experts. I had 100% disk full , even though i have removed 2 GB space still dbf command shows 100%. How to rectify that. Appreciate your prompt help. Thanks (1 Reply)
Discussion started by: test10002
1 Replies

8. Solaris

Disk space?

I'm a Unix newbie running Solaris 9. After installing a fresh copy on a 40GB drive I noticed the available disk space is 2% free or approximately 200MB available. Is that possible? Did I do something wrong? (4 Replies)
Discussion started by: jbarbuto
4 Replies

9. UNIX for Dummies Questions & Answers

available disk space on disk device???

Hello, Can someone please tell me which command to use to determine the available disk space on a given disk device? I have to write a shell script that compresses files and stores them in a specific location but I am not sure how "conservative" I should be? Thanks in advance! Al. (4 Replies)
Discussion started by: alan
4 Replies

10. Filesystems, Disks and Memory

Disk Space -

I know I have posted this question before, but I still just don't understand how to determine disk space. This server is an IBM RS6000 running on AIX version 4.2.1. I in essence need to know the following if anyone can assist me. 1) I need to know how many drives are configured in the... (2 Replies)
Discussion started by: Docboyeee
2 Replies
Login or Register to Ask a Question