- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- boot alternate disk w/o console
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
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
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
тАО10-13-2011 12:43 PM
тАО10-13-2011 12:43 PM
Anyone know if there is a way to boot off a secondary disk from the command line? IE: without a console?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2011 12:47 PM
тАО10-13-2011 12:47 PM
SolutionThe easiest way would be to just switch the primary and alternate boot paths as specified via 'setboot'.
For example:
# setboot
Primary bootpath : 0/0/1/1.0.0
Alternate bootpath : 0/0/2/0.0.0
So, if I want to boot from the alternate disk, HW path 0/0/2/0.0.0, I would just switch the primary and alternate.
setboot -p 0/0/2/0.0.0
setboot -a 0/0/1/1.0.0
Now if I do a 'setboot' I see the entries reversed.
# setboot
Primary bootpath : 0/0/2/0.0.0
Alternate bootpath : 0/0/1/1.0.0
Now when the system boots it will boot from the primary path, which used to be the alternate.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2011 12:47 PM
тАО10-13-2011 12:47 PM
Re: boot alternate disk w/o console
please do 'man setboot' to see if that answers your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО10-13-2011 01:06 PM
тАО10-13-2011 01:06 PM
Re: boot alternate disk w/o console
Thanks Patrick! I appreciate your courteous and thorough answer.