- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How can we find that which disk is booted on HP s...
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-01-2005 07:32 AM
12-01-2005 07:32 AM
Thanks in advance.
We need to find that,which path the server is booted..Is it primary or secondary path?
Please provide the details.
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 07:37 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 07:58 AM
12-01-2005 07:58 AM
Re: How can we find that which disk is booted on HP server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 08:06 AM
12-01-2005 08:06 AM
Re: How can we find that which disk is booted on HP server?
That is when the method proposed by Jim should be used:
# echo "boot_string/S" | adb /stand/vmunix /dev/mem (or /dev/kmem)
However, there is a "gotcha" there as well in that the box might not have booted from the default "/stand/vmunix". If the adb command above returns NULL or garbaged values then that means that the symbol table in /stand/vmunix does not correspond to the running kernel's memory image in /dev/kmem.
You then have to repeat the command using /stand/vmunix.prev, /stand/vmunix.save, or any other kernel files found in /stand until adb returns meaningful strings.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 08:31 AM
12-01-2005 08:31 AM
Re: How can we find that which disk is booted on HP server?
You can try thist to know , from which disk the system is booted up:
# echo "boot_string/S" | adb64 stand/vmunix /dev/kmem
The output will be like this :
-----------------------------
boot_string:
boot_string: disk(0/0/1/1.0.0.0.0.0.0;0)/stand/vmunix
hth,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2005 09:31 AM
12-01-2005 09:31 AM
Re: How can we find that which disk is booted on HP server?
Thanks for the help and providing the great support.