On Sun, Nov 22, 1998 at 03:53:50PM -0600, Dan Lasley wrote:
> I'm considering considering writing a Linux client-server application using
> UDP to do a disk-to-disk copy over an Ethernet network. Here's how I
> envision it working:
UDP seems like a lot of work. Use a TCP protocol, like perhaps rsh or ssh:
dd if=/dev/hda1 | rsh remotehost dd of=/dev/hda1
(Disclaimer: I didn't test that.)
Better still, mke2fs the new drive, set up an NFS server, and simply "cp -a"
the drives over. That means you can use any size of disk (as long as it's
large enough) and you don't have to bring down the "server" machine while
doing the copy.
Have fun,
Avery
-
To unsubscribe from this list: send the line "unsubscribe linux-net" in
the body of a message to [EMAIL PROTECTED]