- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Multiple Versions of HP-UX and seperate disks
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-05-2001 06:03 PM
11-05-2001 06:03 PM
Multiple Versions of HP-UX and seperate disks
What I have attempted to do is while booted in 11i environment I have tried mounting the 10.2 disk. I had created a /SD_DISK6 directory with root privi and I received and error that the ???device was not recognized???. Here is the command syntax I followed.
$ mount /dev/dsk/c3t6d0 /SD_DISK6
Can anyone help me with this or tell me if there is a better way of doing this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:14 PM
11-05-2001 07:14 PM
Re: Multiple Versions of HP-UX and seperate disks
If the second disk is supposed to be part
of it's own /dev/vg00 volume group I doubt
whether you can actually mount it possibly
due to the characteristics that have been
placed on the disk, LIF, different LVM and
not being part of the current lvmtab. Not
that I think this will work either, have you
tried to do this the other way around by
booting off the 11i system and trying to mount
the 10.20 disk?
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 09:39 PM
11-05-2001 09:39 PM
Re: Multiple Versions of HP-UX and seperate disks
if the 10.20 disk is a Volumegroup disk,
then you cannot mount it like a physical disk.
Instead, try this:
#boot with 10.20 disk
#vgexport -p -f /tmp/vg1020.file -m /tmp/vg1020.map /dev/vg00
#copy the vg1020.* files to a tape or another
system using ftp.
#boot with 11.x disk
#mkdir /dev/vg1020
#mknod /dev/vg1020/group c 64 0x??0000
#copy the map file into the system
#vgimport -v -m /tmp/vg1020.map /dev/vg1020
#now you have the 1020 lv's under volumegroup vg1020.
#mount the LV's you need on temporary mountpoints
eg: mount /dev/vg1020/lvol3 /1020root
#now you can copy the files you need.
Once done, blow away the vg1020 (vgexport /dev/vg1020).
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 09:43 PM
11-05-2001 09:43 PM
Re: Multiple Versions of HP-UX and seperate disks
since both HDD have the OS their vg's will be vg00. so u can't import one disk to another.
To do your task make the backup of files to be copied, boot in another version of hp-ux extract from backup.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2001 02:47 AM
11-06-2001 02:47 AM
Re: Multiple Versions of HP-UX and seperate disks
The trick is vgimport.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2001 02:50 AM
11-06-2001 02:50 AM
Re: Multiple Versions of HP-UX and seperate disks
You should be able to import the 10.20 disk into a different VG under 11.0, i.e.:
mkdir /dev/VGNAME
mknod /dev/VGNAME/group c 64 0x0nn0000
vgimport /dev/VGNAME /dev/dsk/c3t6d0
vgchange /dev/VGNAME
then mount the LVs on that VG:
mkdir /1020root
mount /dev/VGNAME/lvol3 /1020root
etc...
Hope this helps.
-Santosh