- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HW path for root disk ?
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
02-18-2009 09:02 AM
02-18-2009 09:02 AM
I'm writing a shell script for autoinstall HP-UX through Ignite configuration files.
Could you help me to discover the HW path of the root disk by model ?
I've found the following informations in my environments:
MODEL / HWPath
BL860c 0/2/1/0.0.0.0.0
J6000 10/0/15/1.6.0
rx1620 0/1/1/0.0.0
rx2620 0/1/1/0.0.0
rx4640 0/1/1/0.0.0
Thanks for your help
--
Regards,
Cedrick GAILLARD
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 09:03 AM
02-18-2009 09:03 AM
Re: HW path for root disk ?
lvlnboot -v
Notice the rx servers root disk is the same by default on all three of those.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 09:09 AM
02-18-2009 09:09 AM
Re: HW path for root disk ?
Anyway, the path is fixed for most servers.
Example:
BL860c
0/2/1/0.0.0.0.0 (left slot)
0/2/1/0.0.0.1.0 (right slot)
But it could be different, if you are using hardware based RAIDs and/or optinal smartarray controllers!
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 09:10 AM
02-18-2009 09:10 AM
Re: HW path for root disk ?
http://docs.hp.com/en/B2355-90675/ch01s05.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 09:20 AM
02-18-2009 09:20 AM
Re: HW path for root disk ?
rx4640
0/1/1/0.1.0 (top slot)
0/1/1/0.0.0 (bottom slot in simplex config.)
0/1/1/1.0.0 (bottom slot in duplex config.)
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 09:32 AM
02-18-2009 09:32 AM
Re: HW path for root disk ?
steven => i know how to find the root disk of my servers, it's not the question.
Avinash V Rao => Understanding the HWpath will not help me.
Torsten => i only search the HW path for a base system, no additional controller.
do you have any system not in my list ?
could you indicate the root disk please ?
the idea is to have a listing for use in the shell script i'm writing.
Thanks,
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 09:44 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 10:12 AM
02-18-2009 10:12 AM
Re: HW path for root disk ?
There is no default disk for the OS, you can also install the OS on external disks and use the internal for data.
Keep this in mind while scripting.
Anyway, for each server you can find this information in the (install or user) guide.
This documents lists the pathes (page 54 ++) for many rx and rp servers from 8xxx and 7xxx family:
http://docs.hp.com/en/5991-6027/5991-6027.pdf
Do you need the pathes for some specific servers?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2009 01:08 PM
02-18-2009 01:08 PM
Re: HW path for root disk ?
On the rx systems please try
#dmesg | grep -i boot
this shall show the disk from which the currect disk has boted.
Alteranatively also can try if the system has the boot disks set properly as
#setboot | grep -i primary
#setboot | grep -i alternate
regards
sujit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2009 12:36 AM
02-19-2009 12:36 AM
Re: HW path for root disk ?
I want to install all servers on the first system disk by default but it will be possible, of course, to confirm/modify this choice.
i've no specific server in mind but I try to have an exhaustive list.
I will search through docs.hp.com, thanks for the pdf.
Regards,
Cedrick Gaillard