Bluehost.com Web Hosting $6.95

What's the simplest way to copy files between networked PCs?

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 ...


Go Back   Usenet Forums > Linux Forums > Linux Networking

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 11-02-2003
Michael Badt
 
Posts: n/a
Default What's the simplest way to copy files between networked PCs?

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!

Reply With Quote
  #2 (permalink)  
Old 11-02-2003
Fred Emmott
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

-----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-----

Reply With Quote
  #3 (permalink)  
Old 11-02-2003
bards
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

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.

Reply With Quote
  #4 (permalink)  
Old 11-02-2003
ray
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

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.

Reply With Quote
  #5 (permalink)  
Old 11-02-2003
Michael Powe
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

>>>>> "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
Reply With Quote
  #6 (permalink)  
Old 11-02-2003
Phil Jones
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

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



Reply With Quote
  #7 (permalink)  
Old 11-02-2003
Timothy Murphy
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

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
Reply With Quote
  #8 (permalink)  
Old 11-02-2003
David Efflandt
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

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/
Reply With Quote
  #9 (permalink)  
Old 11-03-2003
Leon.
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?


"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.


Reply With Quote
  #10 (permalink)  
Old 11-03-2003
Jem Berkes
 
Posts: n/a
Default Re: What's the simplest way to copy files between networked PCs?

> 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/
Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 10:27 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0