- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Recovery Shell LVM devices
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
11-28-2002 07:50 PM
11-28-2002 07:50 PM
The S1lvm device is for stand and s2lvm is for root.
Is it possible, by creating other device files, to mount other logical volumes. I want to do this without chroot'ing to the root lv on the disk.
I have tried this but I'm not sure that the minor numbers actually line up with and simply get not a vxfs filesystem if trying to mount through the block device I create for another logical volume.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2002 08:33 PM
11-28-2002 08:33 PM
Re: Recovery Shell LVM devices
Load the reqd lvm commands and import the vg you want to work with.
# loadfile lvchange vgimport vgcreate vgchange
# mkdir /dev/vg00
# mknod /dev/vg00/group c 64 0x000000
# vgimport /dev/vg00 /dev/dsk/cxtxdx
~ Karvendhan M
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2002 08:47 PM
11-28-2002 08:47 PM
Re: Recovery Shell LVM devices
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2002 10:10 PM
11-28-2002 10:10 PM
Re: Recovery Shell LVM devices
No way ..
Recovery shell is not fully functional like a normal root shell.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-2002 10:46 PM
11-28-2002 10:46 PM
SolutionNo Say?
I also had problems that loadfile reports not enough space but that is with 10.20 cd set.
You are saying all vg commands are link to pvcreate. Then it is 10.20 if I am correct.
use an 11 or 11i install CD. You might have received one from HP.
Last 2 months i did the same thing lot of times (successfully)
1) I have resized lvs in the same manner.
2) I have created a boot/root vg to boot the INSTALL ignite kernel on machines which didn't boot over the net there is no boot helper.
Don't try anything, Instead DO it.
~ Kars
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2002 12:42 AM
11-29-2002 12:42 AM
Re: Recovery Shell LVM devices
I you use current CD or Ignite revisions, there should enough space in the RAMFS anyway. But also with older revisions you can increase it. All this stuff is described the "System Recovery" chapter of the Software Recover Handbook.
Concerning the *s1lvm and *s2lvm device files... here some background information:
No, you cannot directly access other lvols using this feature.
The *s1lvm always points to the boot lvol on disk (normally lvol1)... it always starts at offset 2912K, which is the header size of all bootable LVM disks.
The *s2lvm initially points to the same location... but there is a tool called "ioct", which reads /stand/rootconf and configures *s2lvm to point to the root lvol (normally lvol3).
So this is what is actually done:
- mount *s1lvm to get access to the rootconf
- load/run ioct tool to configure *s2lvm
- umount *s1lvm
- mount *s2lvm as /ROOT
- mount *s1lvm as /ROOT/stand
Best regards...
Dietmar.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2002 01:25 AM
11-29-2002 01:25 AM
Re: Recovery Shell LVM devices
I can quite easily loadfile the lv/vg command required, mount whichever files lvols, newfs root and restore it.
It looks like the April 1999 CD has some real nasty gotchas.
Thanks all.