Operating System - HP-UX
1833852 Members
1944 Online
110063 Solutions
New Discussion

the disk model of internal disks

 
niftysw
Occasional Contributor

the disk model of internal disks

How can I get the disk model of internal disks on HP-UX? The system is rx4640.

Best regards,
3 REPLIES 3
nijokj
Trusted Contributor

Re: the disk model of internal disks

ioscan -fnC disk will provide you the information like this,
ioscan -fnC disk
Class I H/W Path Driver S/W State H/W Type Description
===========================================================================
disk 0 2/0/1/1/0.0.0 sdisk CLAIMED DEVICE HP 146 GST3146855LC
/dev/dsk/c0t0d0 /dev/dsk/c0t0d0s2 /dev/rdsk/c0t0d0 /dev/rdsk/c0t0d0s2
/dev/dsk/c0t0d0s1 /dev/dsk/c0t0d0s3 /dev/rdsk/c0t0d0s1 /dev/rdsk/c0t0d0s3


and if you do ;

diskinfo -v /dev/rdsk/c0t0d0
SCSI describe of /dev/rdsk/c0t0d0:
vendor: HP 146 G
product id: ST3146855LC
type: direct access
size: 143374744 Kbytes
bytes per sector: 512
rev level: HPC8
blocks per disk: 286749488
ISO version: 0
ECMA version: 0
ANSI version: 3
removable media: no
response format: 2
will give you detailoed information.

the disks which are internel their hardware path will look like 2/0/1/1/0.0.0 this type.
the disks which are connected by SAN ,the hardware path should be like this
2/0/13/1/0/4/0.188.76.214.2.14.0

Re: the disk model of internal disks

As mentioned by nijokj disk model can be identified by ioscan command.
When you run ioscan -fnC disk command there should a Description field which says the disk model number for all connected disks.
P Arumugavel
Respected Contributor

Re: the disk model of internal disks

It there is IR volume is built-in, ioscan can not recognise the physical disks configured in RAID.

diskifo would show the device type as LOGICAL VOLUME, instead of DIRECT ACCESS.

In this scenarion, you may need to use sautil. saconfig to view the physical disks and RAID controller details.

check the controller device file in ioscan, /dev/ciss*

#sautil /dev/ciss*
#saconfig /dev/ciss*

Rgds...