1833108 Members
2935 Online
110051 Solutions
New Discussion

Wich hardware path?

 
GerGon
Regular Advisor

Wich hardware path?

I get one new disk, and have the follow configuration:
[root@pacifico]/dev/rdsk> ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
=====================================================================
disk 0 0/0/1/1.2.0 sdisk CLAIMED DEVICE FUJITSU MAJ3182MC
/dev/dsk/c1t2d0 /dev/rdsk/c1t2d0
disk 3 0/0/2/0.0.0 sdisk CLAIMED DEVICE HP 36.4GATLAS10K3_36_SA
disk 2 0/0/2/0.2.0 sdisk CLAIMED DEVICE FUJITSU MAJ3182MC
/dev/dsk/c2t2d0 /dev/rdsk/c2t2d0
disk 1 0/0/2/1.2.0 sdisk CLAIMED DEVICE HP DVD-ROM 305
/dev/dsk/c3t2d0 /dev/rdsk/c3t2d0

How I do to get HWPath from disk Index 3, 36Gb?

Thanks
9 REPLIES 9
Paul Sperry
Honored Contributor

Re: Wich hardware path?

it looks like the HW path is
3 0/0/2/0.0.0
Michael Tully
Honored Contributor

Re: Wich hardware path?

That path "disk 3 0/0/2/0.0.0" doesn't have a device created for it.

Try this:
# cd /dev ; insf -e

HTH
Michael
Anyone for a Mutiny ?
Iain F. Brown
Valued Contributor

Re: Wich hardware path?

Looks like you need an insf -H 0/0/2/0.0.0
John Dvorchak
Honored Contributor

Re: Wich hardware path?

Are you talking about the device file and not the Hardware path? The hardware path is 0/0/2/0.0.0 but you haven't run insf -H 0/0/2/0.0.0 to install the device files yet. Could that be what you are asking?
If it has wheels or a skirt, you can't afford it.
Sridhar Bhaskarla
Honored Contributor

Re: Wich hardware path?

After doing insf as indicated before, you will most likely get the device file as "/dev/dsk/c2t0d0" and "/dev/rdsk/c2t0d0"

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
Michael Tully
Honored Contributor

Re: Wich hardware path?

I forgot to include, that once the 'insf' command has completed, run the 'ioscan -fnC disk' command again, and the new disk device should be included in the output.
Anyone for a Mutiny ?
GerGon
Regular Advisor

Re: Wich hardware path?

It's so stranger, but the command insf -H hwpath, don't work..!!!!
BUT the insf -e work yet!!!
WHY???
Sridhar Bhaskarla
Honored Contributor

Re: Wich hardware path?

It's because the device is already existing in your ioconfig. Only the device files are missing. insf will install device files only for the new devices.

-Sri
You may be disappointed if you fail, but you are doomed if you don't try
GerGon
Regular Advisor

Re: Wich hardware path?

Oky. Thanks to all..