- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Physical Disk information
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:11 AM
12-06-2002 09:11 AM
Physical Disk information
Problem:
Need to find out what the physical sizes are of the disks installed internally to this HP 9000 HP-UX 11i system and what is installed in the external array with out downing the system.
bdf returns me wonderful lvol information but I need physical disk size info.
What command(s) can I run to get this information?
Thank you in advance!
Mark Nelson
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:15 AM
12-06-2002 09:15 AM
Re: Physical Disk information
# ioscan -fnC disk
Then just run .. (example say c2t6d0)
# /etc/diskinfo /dev/rdsk/c2t6d0
For diskarray, usually the above reflects the size of a LUN, not necessarily the size of individual disk in the array.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:15 AM
12-06-2002 09:15 AM
Re: Physical Disk information
or; ioscan -fknCdisk
will list all disk devices, to see the size of each; diskinfo /dev/rdsk/cxxxxxx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:16 AM
12-06-2002 09:16 AM
Re: Physical Disk information
e.g. diskinfo /dev/rdsk/c0t6d0
should give your root disk.
dont use the vgxx files.
to look what device files to use, do
ioscan -funCdisk and this will reveal all hte device files for your disks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:20 AM
12-06-2002 09:20 AM
Re: Physical Disk information
Use:
# ioscan -fnC disk
...to identify physical devices
# diskinfo /dev/rdsk/cXtYdZ
...will return physical size
# pvdisplay /dev/dsk/cXtYdZ
...will show used and free amount of disk associated with LVM ('pvcreate'd)
# vgdisplay -v
...will show all LVM volume groups with logical volumes *and* associated physical devices *including* which devices (disk) are alternate (pv)links.
# bdf
...summarizes mountpoints and logical volumes
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:21 AM
12-06-2002 09:21 AM
Re: Physical Disk information
sam--->disks and filesystems
print_manifest ( if you have ignite )
xstm , or cstm
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:30 AM
12-06-2002 09:30 AM
Re: Physical Disk information
# ioscan -fnCdisk
disk 2 0/0/2/0.2.0 sdisk CLAIMED DEVICE SEAGATE ST39103LC
/dev/dsk/c2t2d0 /dev/rdsk/c2t2d0
disk 3 0/4/0/0.3.0 sdisk CLAIMED DEVICE SEAGATE ST318436LC
/dev/dsk/c5t3d0 /dev/rdsk/c5t3d0
ST39103LC for instance is
ST = Seagate Technology
3 = 3.5 inch
9103 = size in mb
ST318436LC
ST = Seagate Technology
3 = 3.5 inch
18436 = size in mb
Kind regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2002 09:36 AM
12-06-2002 09:36 AM
Re: Physical Disk information
Thank you all very much.
The more interesting part for me was that I was actually able to understand your replies and apply them!
Its amazing what hands on and needing know will teach ya!
Again, thanks for all the replies!
Mark Nelson