Results 1 to 1 of 1
-
15th Jun 2014, 02:36 PM #1
How to Copy Files Across a Network/Internet in UNIX/LINUX (Redhat, Debian, FreeBSD, etc) - scp tar rsync
One of the many advantages of Linux/UNIX is how many ways you can do one thing. This tuturial is going to show you some of the many ways you can ttransfer files over a network connection.
In this article/tutorial we will cover rsync, scp, and tar. Please note that there are many other ways these are just some of the more common ones. The methods covered assume that SSH is used in all sessions. These methods are all much more secure and reliable than using rcp or ftp. This tutorial is a great alternative for those looking for an FTP alterative to transfering files over a network.
Code:scp
scp syntax
Code:scp [-Cr] /some/file [ more ... ] host.name:/destination/file -or- scp [-Cr] [[user@]host1:]file1 [ more ... ] [[user@]host2:]file2
The -r switch is used when you want to recursively go through directories. Please note you must specify the source file as a directory for this to work.
scp encrypts data over your network connection, but by using the -C switch you can compress the data before it goes over the network. This can significantly decrease the time it takes to copy large files.
Tip: By default scp uses 3DES encryption algorithm, all encryption algorithms are slow, but some are faster than others. Using -c blowfish can speed things up.
What scp shouldn't be used for:
1. When you are copying more than a few files, as scp spawns a new process for each file and can be quite slow and resource intensive when copying a large number of files.
2. When using the -r switch, scp does not know about symbolic links and will blindly follow them, even if it has already made a copy of the file. The can lead to scp copying an infinite amount of data and can easily fill up your hard disk, so be careful.
Code:rsync
Code:rsync -e ssh [-avz] /some/file [ more ... ] host.name:/destination/file
Code:rsync -ave ssh source.server:/path/to/source /destination/dir
Switches:
-a Archive mode, most likely you should always keep this on. Preserves file permissions and does not follow symlinks.
-v Verbose, lists files being copied
-z Enable compression, this will compress each file as it gets sent over the pipe. This can greatly decrease time depending on what sort files you are copying.
-e ssh Uses ssh as the transport, this should always be specified.
Disadvantages of using rsync:
1. Picky syntax, use of trailing slashes can be confusing.
2. Have to remember that you are using ssh.
3. rsync is not installed on all computers.
Code:tar
the syntax is slightly different as we are piping it to ssh:
Code:tar -cf - /some/file | ssh host.name tar -xf - -C /destination
Code:tar -czf - /some/file | ssh host.name tar -xzf - -C /destination
The second tar command uses the -C switch which changes directory on the target host. It takes the input from stdin. The -x switch extracts the archive.
The second way of doing the transfer over a network is with the -z option, which compresses the stream, decreasing time it will take to transfer over the network.
Some people may ask why tar is used, this is great for large file trees, as it is just streaming the data from one host to another and not having to do intense operations with file trees.
If using the -v (verbose) switch, be sure only to include it on the second tar command, otherwise you will see double output.
Using tar and piping can also be a great way to transfer files locally to be sure that file permissions are kept correctly:
Code:tar cf - /some/file | (cd /some/file; tar xf -)
Why tar shouldn't be used:
1. The syntax can be hard to remember
2. It's not as quick as to type scp for a small number of files
3. rsync will beat it hands down for a tree of files that already exist in the destination.
There are several other ways of copying over a network, such as FTP, NAS, and NFS but these all requre specialised software installed on either the receiving or sending end, and hence are not as useful as the above commands.Areon Reviewed by Areon on . How to Copy Files Across a Network/Internet in UNIX/LINUX (Redhat, Debian, FreeBSD, etc) - scp tar rsync One of the many advantages of Linux/UNIX is how many ways you can do one thing. This tuturial is going to show you some of the many ways you can ttransfer files over a network connection. In this article/tutorial we will cover rsync, scp, and tar. Please note that there are many other ways these are just some of the more common ones. The methods covered assume that SSH is used in all sessions. These methods are all much more secure and reliable than using rcp or ftp. This tutorial is a great Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
How to Copy all .txt/.csv files in One File
By EnCiPh3r in forum Tutorials and GuidesReplies: 6Last Post: 30th Sep 2011, 07:47 PM -
How to copy all file names of a folder
By cotufa-ssdd in forum Tutorials and GuidesReplies: 10Last Post: 8th Sep 2011, 01:03 AM -
How to share files on win VPS
By m107 in forum Technical Help Desk SupportReplies: 2Last Post: 19th Dec 2009, 06:13 PM -
Mandelson To Introduce Plan To Kick File Sharers Off The Internet
By DeathKnell in forum News & Current EventsReplies: 1Last Post: 29th Oct 2009, 11:00 AM -
How to Copy images
By vgnheart in forum Server ManagementReplies: 7Last Post: 21st Sep 2009, 10:03 AM
themaCreator - create posts from...
Version 3.22 released. Open older version (or...