<?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>rsync &#8211; lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</title>
	<atom:link href="https://lifelinux.com/tag/rsync/feed/" rel="self" type="application/rss+xml" />
	<link>https://lifelinux.com</link>
	<description>All About Linux !</description>
	<lastBuildDate>Tue, 23 Aug 2011 10:06:12 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.5.3</generator>
	<item>
		<title>Rsync With A Non-Standard SSH Port</title>
		<link>https://lifelinux.com/rsync-with-a-non-standard-ssh-port/</link>
					<comments>https://lifelinux.com/rsync-with-a-non-standard-ssh-port/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Tue, 23 Aug 2011 09:59:05 +0000</pubDate>
				<category><![CDATA[Sys Admin]]></category>
		<category><![CDATA[port ssh for rsync]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[rsync command]]></category>
		<category><![CDATA[rsync examples]]></category>
		<category><![CDATA[Rsync With A Non-Standard SSH]]></category>
		<category><![CDATA[rsync with different port for SSH]]></category>
		<category><![CDATA[rsync with ssh port]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[synchronize files]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=978</guid>

					<description><![CDATA[<p>How do I tell rsync to use a different port for SSH ? # rsync -av -e "ssh -p [port_number]" user@ip:/path/to/source/ /path/to/destination/ Example, i will copy data from root@209.141.56.112:/root/backup/ to /home/lifelinux/backup/ with source server has ssh port is 2222. Type the following command # rsync -av -e "ssh -p 2222" root@209.141.56.112:/root/backup/ /home/lifelinux/backup/</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/rsync-with-a-non-standard-ssh-port/">Rsync With A Non-Standard SSH Port</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p>How do I tell <strong>rsync</strong> to use a different port for SSH ?</p>
<pre>
# rsync -av -e "ssh -p [port_number]" user@ip:/path/to/source/ /path/to/destination/
</pre>
<p><span id="more-978"></span><br />
Example, i will copy data from root@209.141.56.112:/root/backup/ to /home/lifelinux/backup/ with source server has ssh port is 2222. Type the following command</p>
<pre>
# rsync -av -e "ssh -p 2222" root@209.141.56.112:/root/backup/ /home/lifelinux/backup/
</pre>
<g:plusone href="https://lifelinux.com/rsync-with-a-non-standard-ssh-port/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/rsync-with-a-non-standard-ssh-port/">Rsync With A Non-Standard SSH Port</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/rsync-with-a-non-standard-ssh-port/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Copy Hidden Files On Linux</title>
		<link>https://lifelinux.com/how-to-copy-hidden-files-on-linux/</link>
					<comments>https://lifelinux.com/how-to-copy-hidden-files-on-linux/#respond</comments>
		
		<dc:creator><![CDATA[lifeLinux]]></dc:creator>
		<pubDate>Tue, 23 Nov 2010 10:29:05 +0000</pubDate>
				<category><![CDATA[Bash Shell]]></category>
		<category><![CDATA[File System]]></category>
		<category><![CDATA[command line tool]]></category>
		<category><![CDATA[copy hidden files on Linux]]></category>
		<category><![CDATA[cp command]]></category>
		<category><![CDATA[dot files]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[rsync command]]></category>
		<category><![CDATA[rsync copy hidden files]]></category>
		<guid isPermaLink="false">http://www.lifelinux.com/?p=67</guid>

					<description><![CDATA[<p>Q. Is there an easy way to recursively copy all files include hidden files in a directory to another directory? A. Using rsync command is a better solution. rsync -av --progress /source /destination With: -a: Archive Mode -v: Verbose Mode &#8211;progress: Show progress during transfer. Another solution, you may also use cp command and pattern [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-copy-hidden-files-on-linux/">How To Copy Hidden Files On Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p></p><p><strong>Q</strong>. Is there an easy way to recursively copy all files include hidden files in a directory to another directory?</p>
<p><strong>A</strong>. Using rsync command is a better solution.<span id="more-67"></span></p>
<pre>rsync -av --progress /source /destination</pre>
<p><strong>With:</strong></p>
<p>-a: Archive Mode</p>
<p>-v: Verbose Mode</p>
<p>&#8211;progress: Show progress during transfer.</p>
<p>Another solution, you may also use <strong>cp command</strong> and pattern matches, type the following command:</p>
<pre>cp -R ./[^.]* /destination</pre>
<g:plusone href="https://lifelinux.com/how-to-copy-hidden-files-on-linux/" size="standard"  annotation="none"   ></g:plusone><p>The post <a rel="nofollow" href="https://lifelinux.com/how-to-copy-hidden-files-on-linux/">How To Copy Hidden Files On Linux</a> appeared first on <a rel="nofollow" href="https://lifelinux.com">lifeLinux: Linux Tips, Hacks, Tutorials, Ebooks</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://lifelinux.com/how-to-copy-hidden-files-on-linux/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
