- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- disk to disk copy through network.
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
08-01-2004 02:21 AM
08-01-2004 02:21 AM
disk to disk copy through network.
I want to make a disk copy of a root disk to a disk in another machine. Both source and destination machine have two disks each and the OS disk is not disturbed for this.
So I did this,
dd if=/dev/rdsk/srcdisk bs=1024k | ssh dstIP "dd of=/dev/rdsk/dstdsik
bs=1024k"
srcdisk is a 36GB disk and the dstdisk is a 72 GB disk. Both machines have 11.11 OS. These two machines are connected through a 10/100Mbs ethernet switch and there is no other traffic on this switch. It went on for more than 4 hours so I stopped it to check if am doing the right thing. I tried booting with the new disk and it is not completely booting, but it goes. Now my question is, will it take this much of time for copying a 36 GB. Did I miss something here. Will it boot properly If I have left it for somemore time to complete.
Thanks
-Logu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2004 04:34 AM
08-01-2004 04:34 AM
Re: disk to disk copy through network.
Theoretically everything is OK. Re time needed: such a copying via SCSI takes about 40 minutes for 36 GB on rp24xx computer with 440 MHz CPU. So for network it may take some hours. Try to change the bs parameter. I use bs=32768k for SCSI.
BTW, with such a procedure you loose half of the target disk. It will be seen as 36 GB disk after the copying completion.
If you want to copy your server, the best solution is make_recovery or make_tape_recovery.
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2004 05:36 AM
08-01-2004 05:36 AM
Re: disk to disk copy through network.
10M x 3600 = 36G
1 sec x 3600 = 1 hour
so for each second it takes to transfer the 10M file it will take that many hours to transfer the 36G.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2004 06:06 AM
08-01-2004 06:06 AM
Re: disk to disk copy through network.
You can also use make_net_recovery. It helps you save an image of your system to another system.
Bye,
Oved
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2004 10:09 AM
08-01-2004 10:09 AM
Re: disk to disk copy through network.
However, all this assumes that the two LANs are running at 100Mbit/sec in full duplex mode. Verify this with lanadmin on both ends. A simple ftp of a 100Mbyte file will also verify the link speed fairly quickly.
Copying a root disk to another machine is alwqays problematic. This will only work *IF* the two machines are identical. I/O channels must be identical, LAN cards must be identical, and of course, the machines must be the same model. Any variations and boot problems will be normal. Get a copy of Ignite/UX which is designed to accomplish exactly this task over the network (a lot faster too).
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2004 12:49 PM
08-01-2004 12:49 PM
Re: disk to disk copy through network.
Ditto Bill's reply. It is all to easy to have a 'weak link' in a network chain.
Make sure both system interafces are configured 100mb and full duplex. And even then count on 2+ hours as per 'back of the enveloppe' calculation. 'Calibrating' / checking with a know 100Mb file is a worhwhile step also.
Finally, for larger transfers I always pipe into a compress tool, over the net, and uncompress.
Hein.