<?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>ServerSignature Linux Community Support Blog Page &#187; backup</title>
	<atom:link href="http://support.serversignature.com/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://support.serversignature.com</link>
	<description>Linux Server Management &#38; Consulting  Services :  Contact Email - admin@serversignature.com &#124; Web: serversignature.com</description>
	<lastBuildDate>Sat, 30 Jul 2011 10:43:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>rsync all your home and mysql db to new server.</title>
		<link>http://support.serversignature.com/rsync/rsync-all-your-home-and-mysql-db-to-new-server/</link>
		<comments>http://support.serversignature.com/rsync/rsync-all-your-home-and-mysql-db-to-new-server/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 14:31:04 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=102</guid>
		<description><![CDATA[Some time you may want to backup your home directory and mysql databases to a new server, we can do that using rsync script. The below script when run from your new server will, rsync all your home dir to your new server. #!/bin/bash #by-admin@serversignature.com #Old Server IP IP=192.168.0.1 #Scrit is run from the new [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/rsync/rsync-all-your-home-and-mysql-db-to-new-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSYNC to backup your home DIR from your OLD server</title>
		<link>http://support.serversignature.com/rsync/rsync-to-backup-your-home-dir-from-your-old-server/</link>
		<comments>http://support.serversignature.com/rsync/rsync-to-backup-your-home-dir-from-your-old-server/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:45:02 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=39</guid>
		<description><![CDATA[RSYNC to backup your home DIR from your OLD server #!/bin/bash #admin@serversignature.com rsync -vrplogDtH --exclude=virtfs/ --progress -e ssh root@192.168.0.1:/home/ home/ IF USING SSH Port = 2222 rsync -ave 'ssh -p 2222' username@192.168.0.1:/home/ /home/]]></description>
		<wfw:commentRss>http://support.serversignature.com/rsync/rsync-to-backup-your-home-dir-from-your-old-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick rsync to backup your home dir and mysql databases</title>
		<link>http://support.serversignature.com/rsync/quick-rsync-to-backup-your-home-dir-and-mysql-databases/</link>
		<comments>http://support.serversignature.com/rsync/quick-rsync-to-backup-your-home-dir-and-mysql-databases/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 17:40:01 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=37</guid>
		<description><![CDATA[Quick rsync to backup your home dir and mysql databases. #!/bin/bash #RUN the below script using "nohup - run a command immune to hangups, with output to a non-tty" #admin@serversignature.com IP=192.168.0.1 rsync -vrplogDtH --exclude=virtfs/ --progress -e ssh root@$IP:/home/ /home/ rsync -vrplogDtH --progress -e ssh root@$IP:/var/lib/mysql/ /var/lib/mysql/ #Backup one large DB rsync -vrplogDtH --progress -e ssh [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/rsync/quick-rsync-to-backup-your-home-dir-and-mysql-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rsync backup to a central backup server</title>
		<link>http://support.serversignature.com/rsync/rsync-backup-to-a-central-backup-server/</link>
		<comments>http://support.serversignature.com/rsync/rsync-backup-to-a-central-backup-server/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 15:46:56 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[Rsync]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[example]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=32</guid>
		<description><![CDATA[rsync backup to a central backup server with 7 day incremental We can use &#8211; `date +%A-%D` in the script. $ echo `date +%A-%D` Saturday-10/31/09 #!/bin/sh # This script does personal backups to a rsync backup server. You will end up # with a 7 day rotating incremental backup. The incrementals will go # into [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/rsync/rsync-backup-to-a-central-backup-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

