<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.slackwiki.com/index.php?action=history&amp;feed=atom&amp;title=Rsync</id>
	<title>Rsync - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.slackwiki.com/index.php?action=history&amp;feed=atom&amp;title=Rsync"/>
	<link rel="alternate" type="text/html" href="https://www.slackwiki.com/index.php?title=Rsync&amp;action=history"/>
	<updated>2026-04-08T14:23:49Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://www.slackwiki.com/index.php?title=Rsync&amp;diff=169&amp;oldid=prev</id>
		<title>Erik: Copy from old</title>
		<link rel="alternate" type="text/html" href="https://www.slackwiki.com/index.php?title=Rsync&amp;diff=169&amp;oldid=prev"/>
		<updated>2009-06-06T21:37:33Z</updated>

		<summary type="html">&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;</summary>
		<author><name>Erik</name></author>
	</entry>
</feed>