vote up 0 vote down star

I need to transfer large files from Linux to Windows. Security is no requirement, since both machines are in a local network.

Should I use ftp or samba or any other protocol?

flag

closed as not programming related by Kev Jan 7 '09 at 17:47

13 Answers

vote up 7 vote down check

I'm a big fan of rsync, mostly because it can resume an interrupted transfer.

link|flag
+1 for rsync, if you want fast transfer without the overhead of SSH security. – seanhodges Jan 7 '09 at 17:02
+1, although a capable FTP client can also resume a transfer. – slim Jan 7 '09 at 17:14
Yeah, if you want to use the network, rsync is the way to go. Otherwise, sneakernet's probably faster... – Peter Stone Jan 7 '09 at 17:26
vote up 0 vote down

If you're using a network, the most important thing is the speed of the network.

That sounds obvious, but it's easy to overlook.

If you're on WiFi, the time you can save by simply plugging everything into the same wired switch instead, makes is well worth the effort.

link|flag
vote up 0 vote down

Easiest way in my opinion:

  1. Set up SSH on your Linux machine.
  2. Download and install WinSCP on your Windows machine.
  3. Run WinSCP, you can transfer files in both direction.

You didn't ask for security, but you'll get it as a bonus anyway. For small edit of any file (or large but the editor is rudimentary) on your Linux machine, you can even do it from WinSCP.

link|flag
vote up 0 vote down

If one of the boxes has a file server (samba or windows) then simply allow read or write depending on which way your transferring. This is local network right?

link|flag
vote up 0 vote down

A gigabit ethernet, all of the protocols in the world don't mean a hoot without bandwidth.

link|flag
vote up 0 vote down

Local Network for usability and speed a samba share should do just fine.

link|flag
vote up 0 vote down

SCP and SFTP are both good proposals and cranky security folks will allocate kudos for the added security. But if you don't [have to] care about that, I am fairly sure FTP will give you faster transfer times since there's no encryption going on.

Either way, an additional way to speed up transfers of large files is to script the transfer process to compress the file before transfer and then decompress on completion on the target host. Even though both pscp and scp support on the fly compression, I think you will get better throughput using a cross-platform [de-]compressor like gzip/gunzip on the file.

link|flag
I think on a wired LAN, the time taken to compress a large file would outweigh the transfer time benefits. Plus many large files are already compressed as far as they'll go (images, movies). – slim Jan 7 '09 at 17:13
vote up 7 vote down

Never underestimate the bandwidth of a large portable hard drive!

link|flag
Or even, over long distances, of a station-wagon with a trunkful of magnetic tapes! – ChrisW Jan 7 '09 at 16:40
@ChrisW - you're showing your age. Nowadays, that would be "an SUV full of USB drives". – Paul Tomblin Jan 7 '09 at 16:42
@Paul: Funny and true. – Nicholas Jan 7 '09 at 16:47
Less than you'd imagine. Picking an arbitrary USB2 HDD, I found a quoted sustained transfer rate of 36MB/s) = 288 Mb/s. Bear in mind that you have to write on, move, read off; suddenly it's not that much faster than 100Mb/s ethernet. – slim Jan 7 '09 at 17:27
Over distance of course, the equation changes. But that wasn't the question. – slim Jan 7 '09 at 17:28
vote up 2 vote down

If you go the scp / ftp /sftp route, one thing to consider is that you would need some type of client utility on the Windows machine i.e. putty, ftp client (although ftp exists on the command prompt). I'm not certain, but I don't think you would need to have a client application if you are using Samba, so factor in whether you care about adding extra software to your windows machines and possibly teaching someone how to use them.

link|flag
I've done both, and the extra time in setting up Putty will be MORE than made up by the difference in file transfer speed between the two methods. – Harper Shelby Jan 7 '09 at 16:35
vote up 1 vote down

For sharing folders DropBox is a good alternative too.

link|flag
The problem with getdropbox.com is that it sends things out to the Internet instead of keeping them in your internal net. That's going to be way slower, even if it's convenient as hell. – Paul Tomblin Jan 7 '09 at 16:30
DropBox would be a good solution if the machines weren't already on the same local network. Even assuming a good high speed line to the net, the overhead of this round trip would be huge, and the chances of something going wrong increase too. – ZombieSheep Jan 7 '09 at 16:31
vote up 3 vote down

In my experience, using scp (I've used Putty's pscp in the past) is a LOT faster than using Samba. Setting up SSH on the Linux box should be fairly painless, and then using the Putty (or other Windows SSH) client to pull them over is pretty easy.

link|flag
vote up 0 vote down

is this OUT and OUT quick or just quickish?

link|flag
vote up 0 vote down

For large files, I'd probably suggest using some method that will support resuming on failure/interruption. FTP is a good bet, although I would probably go the whole hog and use SFTP.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.