Operating System - HP-UX
1827845 Members
1261 Online
109969 Solutions
New Discussion

hp-ux 11.11 boot question

 
SOLVED
Go to solution
jiangjun
Advisor

hp-ux 11.11 boot question

when I study the hp-ux lvm,what's the mean of follow information:
hpux -lq (;0)/stand/vmunix,
thank!
4 REPLIES 4
Grayh
Trusted Contributor

Re: hp-ux 11.11 boot question

The command you gave is used to Create a System Mirrior Disk.

Check the following:-

#ioscan -fnC disk (identify mirror disk)
#pvcreate -Bf /dev/rdsk/c2t5d0 (make a bootable physical volume)
#mkboot -l /dev/rdsk/c2t5d0 (create LVM disk layout)
****#mkboot -a "hpux -lq (;0)/stand/vmunix"
/dev/rdsk/c2t5d0 (-lq = switch off quorum)***

The option -lq is to switch off the quorum
jiangjun
Advisor

Re: hp-ux 11.11 boot question

Then what's the mean for "(;0)",and if I want to boot from the backup kernel,which the command used?
thank!
Torsten.
Acclaimed Contributor
Solution

Re: hp-ux 11.11 boot question

The (0;) specifies the area on the disk where boot files can be found - this is historical and not needed.

For booting a previous kernel use

ISL> hpux /stand/vmunix.prev

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!   
jiangjun
Advisor

Re: hp-ux 11.11 boot question

thank a lot