This is a discussion on What's the simplest way to copy files between networked PCs? within the Linux Networking forums, part of the Linux Forums category; HI, I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake 9.1). It's ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
HI,
I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake 9.1). It's a one-time operation and I'd rather avoid installing, configuring and running NFS on either PC. Both PCs are networked and I can ping PC1-PC2 and vice versa. Please advise ! Thanks! |
|
|||
|
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1 Michael Badt wrote: | HI, | I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake | 9.1). It's a one-time operation and I'd rather avoid installing, | configuring and running NFS on either PC. | Both PCs are networked and I can ping PC1-PC2 and vice versa. | Please advise ! | | Thanks! | if you already have apache setup, just plonk whatever on your webserver. - -- Fred Emmott Really, I'm not out to destroy Microsoft. That will just be a completely unintentional side effect. --- Linus Torvalds -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQE/pNt1Dvn9hyzHIq4RAoUxAJ9e3DywDYOtX0NEyJPzGsZVQ9diDA CdGC3s W9jaylzpoittyk8zx+v/OBk= =egW0 -----END PGP SIGNATURE----- |
|
|||
|
Michael Badt wrote:
> HI, > I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake > 9.1). It's a one-time operation and I'd rather avoid installing, > configuring and running NFS on either PC. > Both PCs are networked and I can ping PC1-PC2 and vice versa. > Please advise ! > > Thanks! > Use 'scp' which is part of the ssh suite. It should be installed on both distros by default. man scp. HTH. |
|
|||
|
Michael Badt wrote:
> HI, > I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake > 9.1). It's a one-time operation and I'd rather avoid installing, > configuring and running NFS on either PC. > Both PCs are networked and I can ping PC1-PC2 and vice versa. > Please advise ! > > Thanks! > rcp or use an nfs mount. |
|
|||
|
>>>>> "Michael" == Michael Badt <mibadt@actcom.net.il> writes:
Michael> HI, I need to copy some large files from PC1 (Knoppix Michael> 3.3) to PC2 (Mandrake 9.1). It's a one-time operation and Michael> I'd rather avoid installing, configuring and running NFS Michael> on either PC. Both PCs are networked and I can ping Michael> PC1-PC2 and vice versa. Please advise ! in my experience, rsync is good and fast for numbers of files or to copy a directory structure recursively. i use scp for one-off, simple/single file transfers. in addition, there's plain old ftp, which is usually enabled by default. mp -- cat: /home/powem/.signature: No such file or directory |
|
|||
|
Or ftp........
"Michael Powe" <michael+gnus@trollope.org> wrote in message news:bo3qga11i86@enews4.newsguy.com... > >>>>> "Michael" == Michael Badt <mibadt@actcom.net.il> writes: > > Michael> HI, I need to copy some large files from PC1 (Knoppix > Michael> 3.3) to PC2 (Mandrake 9.1). It's a one-time operation and > Michael> I'd rather avoid installing, configuring and running NFS > Michael> on either PC. Both PCs are networked and I can ping > Michael> PC1-PC2 and vice versa. Please advise ! > > in my experience, rsync is good and fast for numbers of files or to > copy a directory structure recursively. i use scp for one-off, > simple/single file transfers. in addition, there's plain old ftp, > which is usually enabled by default. > > mp > > -- > cat: /home/powem/.signature: No such file or directory |
|
|||
|
Michael Powe wrote:
> in my experience, rsync is good and fast for numbers of files or to > copy a directory structure recursively. i use scp for one-off, > simple/single file transfers. in addition, there's plain old ftp, > which is usually enabled by default. (1) scp has a -r option to download directories (2) My experience is exactly the opposite of yours -- "plain old ftp" is usually disabled by default. -- Timothy Murphy e-mail (<80k only): tim /at/ birdsnest.maths.tcd.ie tel: +353-86-2336090, +353-1-2842366 s-mail: School of Mathematics, Trinity College, Dublin 2, Ireland |
|
|||
|
On Sun, 02 Nov 2003 20:28:19 +1000, bards <bards1888@yahoo.com.au.au> wrote:
> Michael Badt wrote: >> HI, >> I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake >> 9.1). It's a one-time operation and I'd rather avoid installing, >> configuring and running NFS on either PC. >> Both PCs are networked and I can ping PC1-PC2 and vice versa. >> Please advise ! >> >> Thanks! >> > > Use 'scp' which is part of the ssh suite. It should be installed on both > distros by default. > > man scp. scp is safest (encrypted) and may be fastest (if compression is enabled). For example, I can often transfer files about twice the speed of my wireless or adsl connection using scp with compression. -- David Efflandt - All spam ignored http://www.de-srv.com/ http://www.autox.chicago.il.us/ http://www.berniesfloral.net/ http://cgi-help.virtualave.net/ http://hammer.prohosting.com/~cgi-wiz/ |
|
|||
|
"Michael Badt" <mibadt@actcom.net.il> wrote in message news:pan.2003.11.02.10.21.07.926925@actcom.net.il. .. > HI, > I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake > 9.1). It's a one-time operation and I'd rather avoid installing, > configuring and running NFS on either PC. > Both PCs are networked and I can ping PC1-PC2 and vice versa. > Please advise ! > > Thanks! > Possibilities : rcp, scp (scp may be ready to go ) ftp (may require setting up) http ( may require setting up) email (may be quicker or convenient, if its already set up ) mc : mc is a file manager, like the old xtree gold. run mcserv on one machine first, and run mc on the other, create the network link under mc (F9, file, network link ) and then you can copy back and forth, rename, delete, make directories on both ends You can also use mc as a ftp client. |
|
|||
|
> I need to copy some large files from PC1 (Knoppix 3.3) to PC2 (Mandrake
> 9.1). It's a one-time operation and I'd rather avoid installing, > configuring and running NFS on either PC. > Both PCs are networked and I can ping PC1-PC2 and vice versa. > Please advise ! Most distros have the OpenSSH daemon ready to go. Try connecting from one PC to the other with: sftp user@IP If that doesn't work try 'sshd' to start the OpenSSH daemon, then attempt sftp. -- Jem Berkes http://www.sysdesign.ca/ |