<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>Rsync - Revision history</title>
		<link>https://www.slackwiki.com/index.php?title=Rsync&amp;action=history</link>
		<description>Revision history for this page on the wiki</description>
		<language>en</language>
		<generator>MediaWiki 1.40.0</generator>
		<lastBuildDate>Wed, 08 Apr 2026 14:23:47 GMT</lastBuildDate>
		<item>
			<title>Erik: Copy from old</title>
			<link>https://www.slackwiki.com/index.php?title=Rsync&amp;diff=169&amp;oldid=prev</link>
			<guid isPermaLink="false">https://www.slackwiki.com/index.php?title=Rsync&amp;diff=169&amp;oldid=prev</guid>
			<description>&lt;p&gt;Copy from old&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:Tutorials]]&lt;br /&gt;
Rysnc is a great tool for backing up things, downloading things and&lt;br /&gt;
keeping up with Slackware -current. Why? Because say you have a lot of&lt;br /&gt;
files in /home/$USER/slackware/ that you want to update, say with the&lt;br /&gt;
newest -current. ( These files would be the files off of your&lt;br /&gt;
Slackware 10.1 disk, on the folder /slackware on the root of the&lt;br /&gt;
Slackware disk) rsync would only download what is new and can also&lt;br /&gt;
erase what is no longer there, this could save a lot of bandwidth. So&lt;br /&gt;
where do we begin? Lets use a Slackware mirror and actually update&lt;br /&gt;
your Slackware 10.1 cd , to -current. So we will use a Slackware&lt;br /&gt;
mirror:&lt;br /&gt;
&lt;br /&gt;
 rsync inferno.bioinformatics.vt.edu::&lt;br /&gt;
&lt;br /&gt;
The above command would list the modules on the rsync server. Well&lt;br /&gt;
what is a module? A module is something that people export their files&lt;br /&gt;
and directories to in a module format. So someone running a rsync&lt;br /&gt;
server could make a module called &amp;quot;slackware&amp;quot; and export&lt;br /&gt;
&amp;quot;/home/slackware/&amp;quot;.  Then the user could download all or some of the&lt;br /&gt;
files in that module. Now lets list the files and directories of the&lt;br /&gt;
module we need:&lt;br /&gt;
&lt;br /&gt;
 rsync inferno.bioinformatics.vt.edu::slackware&lt;br /&gt;
&lt;br /&gt;
See from the above you can see the slackware versions we could all&lt;br /&gt;
download. Since we have our slackware 10.1 in /home/$USER/slackware&lt;br /&gt;
and we want to upgrade to -current, we could use this command:&lt;br /&gt;
&lt;br /&gt;
 rsync -rvz --delete inferno.bioinformatics.vt.edu::slackware/slackware-current/slackware/ /home/$USER/slackware/&lt;br /&gt;
&lt;br /&gt;
Now this command looks weird at first, but lets examine. First the -r&lt;br /&gt;
means recursive ( Meaning it goes through all the sub directories and&lt;br /&gt;
downloads ). Next we see -v which means verbose, so we can see what is&lt;br /&gt;
going on, next the -z. This means compress, it will compress the&lt;br /&gt;
things so it will shorten the bandwidth requirement. The --delete&lt;br /&gt;
means that it will delete anything that the server doesn't have, this&lt;br /&gt;
would make an exact mirror copy:)! That pretty much sums that command&lt;br /&gt;
up.&lt;br /&gt;
&lt;br /&gt;
So since this was a simple rsync tutorial and pretty much told you how&lt;br /&gt;
to download Slackware -current an efficient way, read UPGRADE.txt to&lt;br /&gt;
find out how to fully upgrade your box:)&lt;br /&gt;
&lt;br /&gt;
Thanks for reading, Sandy&lt;/div&gt;</description>
			<pubDate>Sat, 06 Jun 2009 21:37:33 GMT</pubDate>
			<dc:creator>Erik</dc:creator>
			<comments>https://www.slackwiki.com/Talk:Rsync</comments>
		</item>
</channel></rss>