Which is faster? Copy via nfs-mount or via scp?

we have a network of several machines, and we want to distribute a large catalog (about 10 GB) in each box.

It is located on the nfs server and is mounted on all machines, so the first approach is to simply use the usual one cpto copy files from the mounted to the local directory. This is easy, but unfortunately there is no progress bar because it is not intended for use on network copies (or is it?).

Use is scpintended for copying over the network, but it can encrypt everything and therefore be slow.

If one is faster, and if so, then what: cpon nfs-mount or scp?

+5
source share
1 answer

rsync, ( --progress) , scp.

-z.

+3

All Articles