- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Dual boot procedure
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
07-24-2002 07:26 AM
07-24-2002 07:26 AM
Is there a way to have a look or read an unknown disk to see the content. In my case, let say how to see the content of the alternate disk? We just want to validate that there is really bootable disk with the vg stucture and filesystem to activate dual boot.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:31 AM
07-24-2002 07:31 AM
Re: Dual boot procedure
there is a way, if you discontinue booting process, you can type in the following command:
> sea(rch) IPL
normally sea(rch) seeks all bootable media, but search IPL checks, if there is a boot sector on the medium. Is that your question?
Allways stay on the bright side of life!
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:35 AM
07-24-2002 07:35 AM
Re: Dual boot procedure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:36 AM
07-24-2002 07:36 AM
Re: Dual boot procedure
mkdir /dev/vg00copy
mknod /dev/vg00copy/group c 64 0xnn0000 < make sure nn is unique among other group files
vgimport -s -m /tmp/vg00map /dev/vg00copy
vgchange -a y /dev/vg00copy
You can then mount the lvols that exist under vg00copy and examine to your heart's content.
HTH,
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:37 AM
07-24-2002 07:37 AM
Re: Dual boot procedure
# vgimport -v /dev/vgtemp /dev/dsk/c2t2d0
# vgchange -a y /dev/vgtemp
==> activate it
Now you can "vgdisplay" it and mount the LVs.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:39 AM
07-24-2002 07:39 AM
Solution# lifls -l /dev/rdsk/c0t5d0
Auto would contain the hw path to the disk and the name of the kernel:
hpux (;0) /stand/vmunix
Which operating system does a particular disk contain? Not sure of a quick way to tell you how to do this, without booting from the disk and running uname -a.
Cheryl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:39 AM
07-24-2002 07:39 AM
Re: Dual boot procedure
to check wether the *other* disk contains IPL and such enter:
- to find the device names:
ioscan -fnkC disk
- to test/show the boot software:
lifls /dev/rdsk/cXtYdZ
where you would substitute X, Y, and Z with the proper instance, target and LUN numbers from the output of the "ioscan".
The next step would be to "vgimport" the other disk to be able to "mount" the file-systems and then be able to list the files on them...
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 07:41 AM
07-24-2002 07:41 AM
Re: Dual boot procedure
I think what you want to run is
lvlnboot -v
This will search all disks for boot info.
You want to see entries for
Boot
Root
Swap
Dump
for both PVs (primary & alt)
If you do see all 4 on the alt devices - it's a boot disk.
Then you want to do a
pvdisplay -v /dev/dsk/cxtydz
where cxtydz is the device name for the second disk. This will show what, if any, LVs are on that disk
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2002 08:46 AM
07-24-2002 08:46 AM
Re: Dual boot procedure
George