<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux &#124; egrep &#187; copy</title>
	<atom:link href="https://www.linuxegrep.com/tag/copy/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.linuxegrep.com</link>
	<description>Extended search for information</description>
	<lastBuildDate>Tue, 08 Jan 2019 06:23:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.2</generator>
		<item>
		<title>Rsync: The powerful network copy tool</title>
		<link>https://www.linuxegrep.com/archives/tool/networking/rsync-the-powerful-network-tool/</link>
		<comments>https://www.linuxegrep.com/archives/tool/networking/rsync-the-powerful-network-tool/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 21:23:30 +0000</pubDate>
		<dc:creator>meharo</dc:creator>
				<category><![CDATA[Networking Tools]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[filesystem]]></category>

		<guid isPermaLink="false">http://www.findlinuxhelp.com/?p=25</guid>
		<description><![CDATA[rsync is a small, light weight, easy to use linux command line tool which can transfer N number of files from source to destination over any kind of network. Especially when copying files over limited bandwidth, rsync is much faster and reliable. rsync is basically used for two filesystem/directory tree synchronization which are placed in [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: justify;"><em>rsync</em> is a small, light weight, easy to use linux command line tool which can transfer N number of files from source to destination over any kind of network. Especially when copying files over limited bandwidth, rsync is much faster and reliable.</p>
<p style="text-align: justify;"><span id="more-25"></span></p>
<p style="text-align: justify;"><em>rsync</em> is basically used for two filesystem/directory tree synchronization which are placed in two different network locations. It also can be used for website mirroring.</p>
<p style="text-align: justify;">Here find some simple example usages of <em>rsync</em> :</p>
<h4>1. Copying/syncing the contents of one directory called &#8220;/src&#8221; to another directory called &#8220;/dst&#8221; :</h4>
<pre lang="bash">rsync -a /src/ /dst</pre>
<p style="text-align: justify;">Note: &#8220;-a&#8221; option represents <em>archive mode</em>, which preserves most of the file attributes when copying.</p>
<p style="text-align: justify;">If you miss a trailing slash (/) after source directory, it will create the directory as &#8220;/dst/src&#8221; in the destination and will transfer the files into it.</p>
<h4>2. Copying the contents of a directory called &#8220;/src&#8221; in computer 1 to another directory called &#8220;/dst&#8221; in computer 2 :</h4>
<pre lang="bash">rsync -a -e ssh /src/ computer2:/dst</pre>
<p style="text-align: justify;">Assume you are in computer 1, you can execute the above command to copy files to computer 2 using &#8220;ssh&#8221;. It will establish an ssh connection from computer 1 to computer 2 and transfer files over that connection. Also, it will ask you ssh login details on computer 2 to establish the connection before start transferring the data.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.linuxegrep.com/archives/tool/networking/rsync-the-powerful-network-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

 Served from: linuxegrep.com @ 2026-05-07 11:44:15 by W3 Total Cache -->