translating device to filesystem in solaris10


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users translating device to filesystem in solaris10
# 1  
Old 01-09-2009
translating device to filesystem in solaris10

Greetings,

I have a oracle database server and i keep getting grid control message

Metric=Disk Device Busy (%)
Metric Value=98.66
Disk Device=ssd430
Severity=Critical
Message=Disk Device ssd430 is 98.66% busy.

so I am trying to correlate the ssd430 to the filesystem. I understand this server is attached to SAN storage . and doing a grep on /etc/path_to_inst

gives the below info.


"/pci@9,600000/SUNW,qlc@2/fp@0,0/ssd@w500000e01a1596d1,0" 430 "ssd"

however I am not able to trnslate where to go from here so that I can at least find which san disk is the bottleneck.

I appreciate any suggestion.

thanks in advance
pk
# 2  
Old 01-10-2009
Does /etc/vfstab not help? All filesystems are there and /etc/mnttab lists all of the mounted devices.
# 3  
Old 01-13-2009
somehow i do not see the reference for ssd430 in /etc/vfstab.
# 4  
Old 01-13-2009
compare the output of iostat -x and iostat -xn
iostat -x output ssd430 like names
iostat -xn output cxtxdx like names.

then find the cxtxdx name in /etc/fstab, if it is not zfs.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Portable way of translating epoch time

echo $(date +%s) | awk '{ print strftime("%c", $2"-"$3"-"$NF"/"$4); }' The above command only seems to work on newer versions of awk or systems with gawk installed. how can i translate the epoch time into a human readable format using a portable method? also, date -d@$epochtime does not... (3 Replies)
Discussion started by: SkySmart
3 Replies

2. Solaris

Solaris 10 swap device and filesystem

Hi all, Q1) Due to application requirement, i am required to have more swap space. Currently my swap is on a partition with 32GB. I have another partition with 100GB, but it already has a UFS filesystem on it. Can i just swap -d /dev/dsk/current32gb and swap -a /dev/dsk/ufs100gb ? Will... (17 Replies)
Discussion started by: javanoob
17 Replies

3. Shell Programming and Scripting

Translating script to perl

awk/shell: UWARNING=90 UCRITICAL=97 PXNAME=$(echo $line | awk -F, '{print $1}') SVNAME=$(echo $line | awk -F, '{print $2}') FRUPERCENT=$(echo $line | awk -F, '{print ($5 / $7) * 100}') ... (6 Replies)
Discussion started by: SkySmart
6 Replies

4. Debian

Device error 71, won't mount root filesystem

I have a Debian OpenBox that boots from any usb port. The Debian LXDE will only boot from one specific port. It needs to look at all of them to find and be root, and mount the root filesystem by UUID. Both are full installs to 16GB flash drives. That is not being done. It says during boot... (0 Replies)
Discussion started by: patrick013
0 Replies

5. Shell Programming and Scripting

Please help translating this to shell

Hello Im new here, I just got my first VPS and I really need help converting this .bat to shell script so i can run my program. @echo off @title DiamondMS v117 set CLASSPATH=.;dist\* java -client -Dnet.sf.odinms.wzpath=wz server.Start pause I have no idea what im doing to convert this... (12 Replies)
Discussion started by: valleric
12 Replies

6. UNIX for Dummies Questions & Answers

translating physical/virtual addresses

Hi all, I am new to Linux kernel/user space programming having been an assembly programmer in my previous life. I am now using 2.6.x kernel on an embedded CPU that has a few dedicated hardware blocks (including more CPU running just C-code, i.e., no operating system). There is a single DRAM... (1 Reply)
Discussion started by: agaurav
1 Replies

7. UNIX for Dummies Questions & Answers

Translating the same file

I want to strip off '\032' character from a file using: tr -d '\032' < oldfile > newfile this outputs the contents of oldfile to newfile, but I wanna do that in the same file i.e. remove the \032 character from the old file. I tried: tr -d '\032' < oldfile > oldfile But the... (3 Replies)
Discussion started by: gagan8877
3 Replies

8. Shell Programming and Scripting

Translating/Replacing characters in a file

Hi, i have a given file named hugo.dat. In this file there are several lines that contain characters like } and ~ Now, i need a script that replaces the character } to ü and character ~ to ß Can anyone help for a working ksh script? Kind Regards FranzB (3 Replies)
Discussion started by: FranzB
3 Replies

9. UNIX for Dummies Questions & Answers

device to filesystem?

On a HP-UX box, I can execute the sar command which will give me the device, %busy, etc. I would like to know how to take a given device name and determine on which filesystem it's located when I do a bdf. I've done some searching through the posts but so far have not had any luck in... (2 Replies)
Discussion started by: jimedwards
2 Replies
Login or Register to Ask a Question