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?
|
|
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?
|
|||
|
|
closed as not programming related by Kev Jan 7 '09 at 17:47 |
|
|
I'm a big fan of rsync, mostly because it can resume an interrupted transfer. |
||||||
|
|
|
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. |
||
|
|
|
|
Easiest way in my opinion:
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. |
||
|
|
|
|
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? |
||
|
|
|
|
A gigabit ethernet, all of the protocols in the world don't mean a hoot without bandwidth. |
||
|
|
|
|
Local Network for usability and speed a samba share should do just fine. |
||
|
|
|
|
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. |
||
|
|
|
Never underestimate the bandwidth of a large portable hard drive! |
||||||||||
|
|
|
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. |
|||
|
|
|
For sharing folders DropBox is a good alternative too. |
||||
|
|
|
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. |
||
|
|
|
|
is this OUT and OUT quick or just quickish? |
||
|
|
|
|
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. |
||
|
|