- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Duplicating system-disk HP-UX 11.0
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-12-2001 07:56 AM
01-12-2001 07:56 AM
I'm relativelly new in this forum, and tough I looked around in the old messages, I still not found an answer that match to my problem :
I've HP-UX 11.0 installed with a lot of application on a Laptop for demonstration to customer. The Laptop can held 2 physical HDU's at the same time. I've some spare disks (identical to the one that is loaded) and I want to duplicate the existing disk to a spare, so I can load some product update and new applicacations on this one for demonstration, without having the risk that my existing stuff will be corrupted or no longer work. Can anybody tell me more about tools like cpio or pvmove (does it really move, or can it also copy volumes ?) ?
Thanks in advance for all the tips.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 08:18 AM
01-12-2001 08:18 AM
Re: Duplicating system-disk HP-UX 11.0
For duplicating system one of the tool is ignite-ux make_recovery, if You have tape. I think You can make it with dd , or in older version of Offline Diagnostics was a diskcopy tool . This was the best .
regards, Saa
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 08:45 AM
01-12-2001 08:45 AM
Re: Duplicating system-disk HP-UX 11.0
sorry, but it can be applied to me.. It's a "laptop" and I've no external tape drive to connect (and don't want to bye one).
I'm working with the version 11.0 and I've no access to older system tools (if they can be helpful).
I'm not sure that I've to create first a new file-system on the second HDU. Hold in mind that this disk have to boot the system after the succesful copy/mirror of the old disk ....
Thank you nevertheless for the infos
Beat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 08:59 AM
01-12-2001 08:59 AM
Solutionhere is a fool proof way to duplicate your disk:
dd if=/dev/rdsk/c0t6d0 of=/dev/rdsk/c0t4d0 bs=2k
you can get device names by doing an ioscan -fnCdisk
CAUTION:
be careful to type in the infile and outfile correctly. This command will not prompt you for any info. It is a 'bit' type command and it will destroy anything on the outfile once your type the command.
I use this command with cron to duplicate main server disks every night.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 09:10 AM
01-12-2001 09:10 AM
Re: Duplicating system-disk HP-UX 11.0
Even without your tip, I'll had probably do the job with the 'dd' command. But I was'nt sure if it needs any preparing of the destination device... I'll try the command soon and give here a feedback as soon as it works.
Beat
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2001 09:16 AM
01-12-2001 09:16 AM
Re: Duplicating system-disk HP-UX 11.0
dd is ok but i would use bigger blocksize (bs=64k) for better performance.
Also note that if the source disk is in use and has mounted filesystems you will need to fsck at the copied disk.
Regards