- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to migrate disks to different system
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
01-06-2003 12:06 PM
01-06-2003 12:06 PM
I have a situation where an old visualize C180 system will not boot up. When its powered up nothing comes up on the screen; I figure it must be a bad processor or motherboard.. Its no longer under maintenace.. The user has a ton of data in 2 external cabinets housing about 10 hard drives. On the old system these were all arranged in one logical volume.
Can anyone give me some advice on how to move this data to a differeent system?
I very much appreciate it!!
John Henrikson
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:08 PM
01-06-2003 12:08 PM
Re: how to migrate disks to different system
You'll need to have some knowledge of the layout as it was on the old system in order to use vgimport to rebuild the VG's on the new host (this assumes that they were separate VG's - not part of VG00). Do a man on vgimport.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:09 PM
01-06-2003 12:09 PM
Re: how to migrate disks to different system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:10 PM
01-06-2003 12:10 PM
Re: how to migrate disks to different system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:13 PM
01-06-2003 12:13 PM
Re: how to migrate disks to different system
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 12:16 PM
01-06-2003 12:16 PM
Re: how to migrate disks to different system
Well then, if you've got the old layout it's just a matter of connecting the cabinets and doing vgimport like so:
vgimport -v /dev/vg01 /dev/dsk/c0t1d0 /dev/dsk/c0t3d0
Hope this helps,
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 01:57 PM
01-06-2003 01:57 PM
Re: how to migrate disks to different system
thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2003 05:40 PM
01-06-2003 05:40 PM
Re: how to migrate disks to different system
I'm home and have no reference materials so take this with a grain of salt:
You don't need to create anything (no vgcreate, pvcreate, nothing). The lvm structures are already present on the disk. You will need to create the directory for the vg device files, like
mkdir /dev/vg02
Then you need to create the special file, like
mknod /dev/vg02 c 64 0x020000
Then you issue the vgimport command and identify the device files that make up the VG.
That's from memory but it should be close. Check the man pages, for vgimport in particular.
I'll check tomorrow to see if you have further questions.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2003 03:13 AM