Operating System - Linux
1752800 Members
5504 Online
108789 Solutions
New Discussion юеВ

which one is fastest smb/nfs/ftp/scp

 
SOLVED
Go to solution
Maaz
Valued Contributor

which one is fastest smb/nfs/ftp/scp

Dear Experts,
have to move large file across linux boxes.

which one is fastest (for upload/download)
1, ftp server
2, samba server
3, nfs server
4, ssh server

security it not an issue. these machines are totally isolated(testing machines) in the labs.

Regards
Maaz
7 REPLIES 7
Change_happens
Honored Contributor
Solution

Re: which one is fastest smb/nfs/ftp/scp

as per me nfs is fastest.
Steven Schweda
Honored Contributor

Re: which one is fastest smb/nfs/ftp/scp

Why not run the experiment to find the actual
answer, instead of asking for opinions from
people who can know but little of your
environment?

You left out "rcp".

> security it not an issue. [...]

Then I'd expect ssh/scp to add some
unnecessary overhead.

Samba was intended for use with Windows
systems. I wouldn't drag it into a
Linux-Linux transaction.

If your CPUs are faster than your network,
you might find it helpful to compress the
data before the transfer (and expand them
after). If your CPUs are very fast, you
might gain more from bzip2, which probably
compresses better than gzip.
Ivan Ferreira
Honored Contributor

Re: which one is fastest smb/nfs/ftp/scp

I normally use rsh to move large files. This is because in that way, I can control the block size of the transfer using the dd command, for example:


sourcehost# dd if=bigfile bs=256k | rsh dsthost dd of=/path/to/bigfile bs=256k

Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Maaz
Valued Contributor

Re: which one is fastest smb/nfs/ftp/scp

Thanks everyone for help.
Yes I have experiment all, but I used to ask questions because by design I am unfortunately not a techy.

And I have always found very rich suggestions/advices from this forum.

Regards
Yogeeraj_1
Honored Contributor

Re: which one is fastest smb/nfs/ftp/scp

hi Maaz,

if possible also look into the possibility of compressing the files before the transfer. You should experience a considerable gain in the transfer times in either option selected.

good luck!
kind regards
yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Dennis Handly
Acclaimed Contributor

Re: which one is fastest smb/nfs/ftp/scp

>Ivan: I can control the block size of the transfer using the dd command, for example:
>dd if=bigfile bs=256k | rsh dsthost dd of=/path/to/bigfile bs=256k

Does this really work? I would have thought this would be limited by the size of the pipe.
On HP-UX the size is a trivial 8 Kb.
Steven Schweda
Honored Contributor

Re: which one is fastest smb/nfs/ftp/scp

> if possible also look into the possibility
> of compressing the files before the
> transfer. [...]

Whoa. Why didn't I think of that?

No, wait...