Copy Files Across a Network/Internet in LINUX


/ Published in: Bash
Save to your folder(s)

tar is usually used for achiving applications, but what we are going to do in this case is tar it then pipe it over an ssh connection. tar handles large file trees quite well and preserves all file permissions, etc, including those UNIX systems which use ACLs, and works quite well with symlinks.


Copy this code and paste it in your HTML
  1. tar -cf - /some/file | ssh host.name tar -xf - -C /destination

URL: http://www.crucialp.com/resources/tutorials/server-administration/how-to-copy-files-across-a-network-internet-in-unix-linux-redhat-debian-freebsd-scp-tar-rsync-secure-network-copy.php

Report this snippet


Comments


You need to login to view comments.