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
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
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
тАО01-11-2005 04:10 AM
тАО01-11-2005 04:10 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2005 04:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2005 04:15 AM
тАО01-11-2005 04:15 AM
Re: diskinfo
diskinfo -v /dev/rdsk/cxtxdx
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2005 04:24 AM
тАО01-11-2005 04:24 AM
Re: diskinfo
So, if you're looking to get information from /dev/dsk/c9t1d1, you need to run the command "diskinfo /dev/rdsk/c9t1d1" .
Notice that it's "rdsk" and not "dsk" - the "r" refers to "raw" or the "character" device for the same disk that dsk refers to.
To clear this up...
/dev/dsk/c9t1d1 and
/dev/rdsk/c9t1d1 are the same exact device, the first is a block interface, adn the latter is the raw (character) device.
To see that this is true, do the following
"ls -al /dev/dsk/c9t1d1 /dev/rdsk/c9t1d1"
You'll see that they are almost exactly the same except for the first character is a "b" for block device on the "dsk" interface, and the first character is a "c" for character (term used interchangeably for raw) device. Also notice that while the minor numbers are exactly the same, the major numbers are different.
It all means that there are two different interfaces to each disk on HPUX - some commands want the raw(character) device and some want the block device interface. Which ones want which? The man pages will almost always tell you - if not, the commands themselves will generally tell you if they want the other type when given the wrong types.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-11-2005 04:24 AM
тАО01-11-2005 04:24 AM