- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: mirroring my boot 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
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
тАО02-21-2002 05:27 AM
тАО02-21-2002 05:27 AM
mirroring my boot disk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:30 AM
тАО02-21-2002 05:30 AM
Re: mirroring my boot disk
follow this link:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,11866,0xb5fca14d9abcd4118fef0090279cd0f9,00.html
or search the forums for "mirror root boot disks"
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:31 AM
тАО02-21-2002 05:31 AM
Re: mirroring my boot disk
The document ID is: KBAN00000514
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:36 AM
тАО02-21-2002 05:36 AM
Re: mirroring my boot disk
So you'll need to vgreduce the empty disk out of vg00 before running the pvcreate -B
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:36 AM
тАО02-21-2002 05:36 AM
Re: mirroring my boot disk
2. mkboot /dev/rdsk/c#t#d#
3. vgextend /dev/vg00 /dev/dsk/c#t#d#
4. lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c#t#d#
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:37 AM
тАО02-21-2002 05:37 AM
Re: mirroring my boot disk
http://us-support3.external.hp.com/cki/bin/doc.pl/sid=4350885f1de9197c52/screen=ckiSearchResults
and you want to go to:
XIII) How to create a mirrored boot disk
in this document.
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:37 AM
тАО02-21-2002 05:37 AM
Re: mirroring my boot disk
Go there
http://www.introcomp.co.uk/hpux/index.html
Steve Steel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:38 AM
тАО02-21-2002 05:38 AM
Re: mirroring my boot disk
http://us-support3.external.hp.com/cki/bin/doc.pl/screen=ckiSearchResults?nodeId=c0&mode=id&searchString=KBAN00000514
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-21-2002 05:38 AM
тАО02-21-2002 05:38 AM
Re: mirroring my boot disk
Here are the steps. Let us assume your primary root disk is /dev/dsk/c0t6d0 and the mirror would be /dev/dsk/c0t5d0. proceed like this,
pvcreate -B /dev/rdsk/c0t5d0
vgextend /dev/vg00 /dev/dsk/c0t5d0
mkboot -a "hpux -lq (;0)/stand/vmunix"
lvextend -m 1 /dev/vg00/lvol1 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol3 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol2 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol4 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol5 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol6 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol7 /dev/dsk/c0t5d0
lvextend -m 1 /dev/vg00/lvol8 /dev/dsk/c0t5d0
lvlnboot -b /dev/vg00/lvol1
lvlnboot -r /dev/vg00/lvol3
lvlnboot -s /dev/vg00/lvol2
lvlnboot -d /dev/vg00/lvol2
lvlnboot -R
lvlnboot -v /dev/vg00
This should show that the disk /dev/dsk/c0t6d0 and /dev/dsk/c0t5d0 are bootable.
vgdisplay -v /dev/vg00 should show that there are two disks in the VG and each lv has extents on two pv's.
mirror any other lv that you have on /dev/vg00
Hope this helps.
Regds