<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Rforge &#187; Backup</title>
	<atom:link href="http://rforge.org/category/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://rforge.org</link>
	<description>open source tools and statistical computing ++</description>
	<lastBuildDate>Thu, 12 Jan 2012 11:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rforge.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Rforge &#187; Backup</title>
		<link>http://rforge.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rforge.org/osd.xml" title="Rforge" />
	<atom:link rel='hub' href='http://rforge.org/?pushpress=hub'/>
		<item>
		<title>Data Backup in the AWS Cloud with rsync</title>
		<link>http://rforge.org/2011/11/16/data-backup-in-the-aws-cloud-with-rsync/</link>
		<comments>http://rforge.org/2011/11/16/data-backup-in-the-aws-cloud-with-rsync/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 21:20:39 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Amazon Web Services]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[BASH]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[demon]]></category>
		<category><![CDATA[ebs]]></category>
		<category><![CDATA[ec2]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://rforge.org/?p=722</guid>
		<description><![CDATA[After admitting that of all things Microsoft offers 25GB cloud storage for its Windows Live subscribers I will walk through my latest preliminary experiments regarding backup of important data using the using the Amazon Advanced Web Services. The storage is not free but quite cheap at around 0.1$ per GB and month. If you use [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=722&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After admitting that of all things Microsoft offers <a href="http://explore.live.com/skydrive">25GB cloud storage</a> for its Windows Live subscribers I will walk through my latest preliminary experiments regarding backup of important data using the using the Amazon <a href="aws.amazon.com">Advanced Web Services</a>. The storage is not free but quite cheap at around 0.1$ per GB and month.</p>
<p>If you use Windows and MS Office a lot use <a href="http://explore.live.com/skydrive">Skydrive</a> and don&#8217;t read on <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  There are posts which describe how to map the Skydrive like a local harddisk using MS Word.</p>
<p>On the long run I would like to mount a EBS storage like a local file tree, probably using WebDAV, but this is my first successful preliminary solution. <tt>s3cmd</tt> does not work for me.</p>
<p>Using Ubuntu/Linux <tt>rsync</tt> is a well established, reliable and easy to use tool to keep data between locations in sync. The following post marries <tt>rsync</tt> with an <a href="http://aws.amazon.com/ec2/">Elastic Cloud (EC2)</a> server instance for an hour or some. One has to set up the so called rsync daemon and attach a persistent <a href="http://aws.amazon.com/ebs/">Elastic Block Storage</a>.</p>
<p>This is another post. I will link to it later. There will also be a small script. There are some holes in this tutorial, only the direct configuration of the rsync daemon (including the script) is complete and working. I filled in some hints how to get to this stage. But will write follow ups on that.</p>
<p><a href="http://a1979shakedown.wordpress.com/2009/01/19/set-up-an-rsync-server-in-ubuntu-for-file-syncing-between-machines/">System Out</a> provided a nice tutorial of how to set up the rsync in demon mode on a server which listens for clients to sync their data.</p>
<p>Here is my version of it, with a short script at the end which should do the job.</p>
<h1>Prerequisites</h1>
<p>Of course  you need to have <tt>rsync</tt> on both machines (the server and the client); since both are Ubuntu this is the case.</p>
<p>I will write another post on how to start the server. It is completely possible and quite intuitive to achieve it in the <a href="http://aws.amazon.com">Amazon web interface</a>. When the server is running and an <em>extra</em> EBS harddisk is attached you have to connect to the server using <tt>ssh</tt><br />
<code>ssh -i PATH/TO/YOUR/PEM-KEY-FILE ubuntu@ec2-xxx-xx-xxx-xxx.compute-1.amazonaws.com</code></p>
<h1>Mount the persistent drive</h1>
<p>There are some posts about the advantages of the xfs filesystem, so I sticked to it. <a href="">Alestic</a> recommends it for all persistent EC2 cloud disks and I trust they know what they are doing. But <tt>xfs</tt> is not per default included in the Ubuntu micro instance I use for my backups. That said, in the <tt>SSH</tt> shell:</p>
<p><code>sudo apt-get install -y xfsprogs<br />
sudo modprobe xfs</code></p>
<p>If the backup volume is newly created then format it:<br />
<code>sudo mkfs.xfs /dev/xvdb</code><br />
<strong>Note:</strong> Only the <em>first</em> time. Otherwise you wipe your data, of course. Note also the device name. I attached it as <tt>/dev/sdb</tt>. Though it showed up in the Ubuntu Oneiric i386 t1.micro instance as <tt>/dev/xvdb</tt>.</p>
<p>Now mount the volume<br />
<code>echo "/dev/xvdb /media/backup xfs noatime 0 0" | sudo tee -a /etc/fstab<br />
sudo mkdir /media/backup<br />
sudo mount /media/backup<br />
sudo chown ubuntu:ubuntu /media/backup<br />
sudo chmod 777 /media/backup</code></p>
<h1>Configuration files</h1>
<p>On the server machine you need to set up a daemon to run in the background and host the <tt>rsync</tt> services.</p>
<p>Before you start the daemon you need to create some <tt>rsync</tt> daemon configuration files in the <tt>/etc</tt> directory.</p>
<p>Three files are necessary:</p>
<ol>
<li><tt>/etc/rsyncd.conf</tt>, the actual configuration file,</li>
<li><tt>/etc/rsyncd.motd</tt>, <strong>M</strong>essage <strong>O</strong>f <strong>T</strong>he <strong>D</strong>ay file (the contents of this file will be displayed by the server when a client machine connects) and </li>
<li><tt>/etc/rsyncd.scrt</tt>, the username and password pairs.</li>
</ol>
<p>To create the files on the server:<br />
<code>sudo nano /etc/rsyncd.conf</code></p>
<p>Now enter the following information into the <tt>rsyncd.conf</tt> file:</p>
<p><code>motd file = /etc/rsyncd.motd<br />
[backup]<br />
path = /media/backup<br />
comment = the path to the backup directory on the server<br />
uid = ubuntu<br />
gid = ubuntu<br />
read only = false<br />
auth users = ubuntu<br />
secrets file = /etc/rsyncd.scrt</code></p>
<p>Hit <tt>Ctrl-o</tt> to save and <tt>Ctrl-x</tt> to close nano.</p>
<p>The <tt>uid, gid, auth users</tt> are the users on the server. In the ssh session on the ec2 instance the user is <tt>ubuntu</tt>.</p>
<p>The format for the <tt>/etc/rsync.scrt</tt> file is<br />
<code>username:whatever_password_you_want</code></p>
<p>Use <tt>nano</tt> to put some arbitrary text into the <tt>/etc/rsync.motd</tt>.</p>
<p>Now you should have all the configuration information necessary, all that&#8217;s left to do is open the <tt>rsync</tt> port and start the daemon.</p>
<p>To open the port, open the <tt>/etc/default/rsync</tt> file, i.e.,</p>
<p><code>sudo nano /etc/default/rsync</code></p>
<p>and set <tt>RSYNC_ENABLE=true</tt>.</p>
<p>Here you might also specify another port than the default 873. Remember to open the port in the security group. Either with the AWS web interface in your browser or in the shell using the <tt>ec2-api-tools</tt>:<br />
<code>ec2-authorize default -p 873</code></p>
<p>Now to start the daemon,<br />
<code>sudo /etc/init.d/rsync restart</code><br />
and exit the <tt>SSH</tt> session.</p>
<h1>Syncing a folder</h1>
<p>Now you can use your local shell to push some folders or files to the server. Update the server side from the client machine with ec2-api-tools installed:<br />
<code>EXIP=`ec2din | grep INSTANCE | grep -v terminated |awk '{print $4}'`<br />
rsync -auv /home/rforge/articles ubuntu@$EXIP::backup/</code><br />
<tt>$EXIP</tt> would be the server ip address</p>
<p>This gets the IP of the server from the <tt>ec2-api-tool</tt> and passes it to <tt>RSYNC</tt>.</p>
<p>Otherwise you have to remember the IP of your instance from the web interface and substitut it for <tt>xxx.xxx.xxx.xxx</tt>:<br />
<code>rsync -auv /PATH/TO/FOLDER/ ubuntu@$xxx.xxx.xxx.xxx::backup/</code></p>
<p><tt>::backup</tt> has to match <tt>[backup]</tt> in the <tt>/etc/rsyncd.conf</tt> file. You will see the <tt>rsyncd.motd</tt> message and get prompted for the password in the <tt>rsyncd.scrt</tt> file. Then rsync starts the upload.</p>
<h1>A Script</h1>
<p>The following script should do the daemon setup after connecting to the server via <tt>ssh</tt> and mounting the volume. Keep me posted if something does not work.</p>
<p><code>echo "motd file = /etc/rsyncd.motd<br />
[backup]<br />
path = /media/backup<br />
comment = the path to the backup directory on the server<br />
uid = ubuntu<br />
gid = ubuntu<br />
read only = false<br />
auth users = ubuntu<br />
secrets file = /etc/rsyncd.scrt" &gt; rsyncd.conf<br />
sudo mv rsyncd.conf /etc/<br />
#<br />
sudo echo "Greetings! Give me the right password! Me want's it!" &gt; rsyncd.motd<br />
sudo mv rsyncd.motd /etc/<br />
#<br />
sudo echo "ubuntu:YourSecretPassword" &gt; rsyncd.scrt<br />
sudo mv rsyncd.scrt /etc/<br />
#<br />
sudo chmod 640 /etc/rsyncd.*<br />
sudo chown root:root /etc/rsyncd.*<br />
#<br />
## enable demon mode in the /etc/default/rsync file<br />
sudo cat /etc/default/rsync | sed 's/RSYNC_ENABLE=false/RSYNC_ENABLE=true/g' &gt; rsync<br />
sudo mv rsync /etc/default/<br />
sudo chown root:root /etc/default/rsync<br />
sudo chmod 644 /etc/default/rsync<br />
#<br />
sudo /etc/init.d/rsync restart # start the demon</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/722/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/722/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/722/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/722/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/722/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/722/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/722/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/722/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=722&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2011/11/16/data-backup-in-the-aws-cloud-with-rsync/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>Compressed backup of MySQL database</title>
		<link>http://rforge.org/2011/07/20/compressed-backup-of-mysql-database/</link>
		<comments>http://rforge.org/2011/07/20/compressed-backup-of-mysql-database/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 10:34:34 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[BASH]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://rforge.org/?p=674</guid>
		<description><![CDATA[Wrote several posts on this topic, but none was 100% right. The following is a blockquote from webcheatsheet.com and looks much better researched then my previous tries: Back up your MySQL Database with Compress If your mysql database is very big, you might want to compress the output of mysqldump. Just use the mysql backup [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=674&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wrote several posts on this topic, but none was 100% right. The following is a <a href="http://www.webcheatsheet.com/SQL/mysql_backup_restore.php" target="_blank">blockquote from webcheatsheet.com</a> and looks much better researched then my previous tries:</p>
<blockquote><h3>Back up your MySQL Database with Compress</h3>
<p>If your mysql database is very big, you might want to compress the output of mysqldump. Just use the mysql backup command below and pipe the output to gzip, then you will get the output as gzip file.</p>
<p><code>$ mysqldump -u [uname] -p[pass] [dbname] | gzip -9 &gt; [backupfile.sql.gz]</code><br />
If you want to extract the .gz file, use the command below:</p>
<p><code>$ gunzip [backupfile.sql.gz]</code></p>
<h3>Restoring your MySQL Database</h3>
<p>Above we backup the Tutorials database into tut_backup.sql file. To re-create the Tutorials database you should follow two steps:</p>
<p>Create an appropriately named database on the target machine<br />
Load the file using the mysql command:<br />
<code>$ mysql -u [uname] -p[pass] [db_to_restore] &lt; [backupfile.sql]</code><br />
Have a look how you can restore your tut_backup.sql file to the Tutorials database.</p>
<p><code>$ mysql -u root -p Tutorials &lt; tut_backup.sql</code><br />
To restore compressed backup files you can do the following:</p>
<p><code>gunzip &lt; [backupfile.sql.gz] | mysql -u [uname] -p[pass] [dbname]</code></p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/674/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/674/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/674/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=674&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2011/07/20/compressed-backup-of-mysql-database/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>MySQL backup</title>
		<link>http://rforge.org/2011/04/15/mysql-backup/</link>
		<comments>http://rforge.org/2011/04/15/mysql-backup/#comments</comments>
		<pubDate>Fri, 15 Apr 2011 11:27:10 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysqldump]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://rforge.org/?p=655</guid>
		<description><![CDATA[Just for the record: How to combine mysqldump and zip to archive all MySQL databases on the host. I am using a simple MySQL database server on localhost, to organise research tables before analysis. mysqldump --all-databases &#124; zip -9 allDB_backup_110415.sql.zip - mysqldump --all-databases writes the content of all databases into the pipe and zip -9 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=655&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just for the record: How to combine mysqldump and zip to archive all MySQL databases on the host. I am using a simple MySQL database server on localhost, to organise research tables before analysis.</p>
<p><code>mysqldump --all-databases | zip -9 allDB_backup_110415.sql.zip -</code></p>
<p><code>mysqldump --all-databases</code> writes the content of all databases into the pipe and<br />
<code>zip -9 Filename -</code> compresses the standard input (note the dash &#8216;-&#8217; at the end!) to &#8216;Filename&#8217; (-9 gives maximum compression).</p>
<p>The reverse following the man page of &#8216;mysqldump&#8217;:</p>
<blockquote><p>
       You can load the dump file back into the server like this:</p>
<p>           <code>shell&gt; mysql db_name &lt; backup-file.sql</code></p>
<p>       Or like this:</p>
<p>           <code>shell&gt; mysql -e "source /path-to-backup/backup-file.sql" db_name</code>
</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/655/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/655/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/655/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/655/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/655/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/655/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/655/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/655/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=655&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2011/04/15/mysql-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup MySQL database</title>
		<link>http://rforge.org/2010/05/15/backup-mysql-database/</link>
		<comments>http://rforge.org/2010/05/15/backup-mysql-database/#comments</comments>
		<pubDate>Sat, 15 May 2010 14:50:50 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://rforge.org/?p=554</guid>
		<description><![CDATA[Just for the record. The MySQL database file are located by default in /var/lib/mysql/ In order to make a backup, Ubuntuforums suggests using mysqldump DB1 to backup the database named &#8220;DB1&#8243; .<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=554&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just for the record. The MySQL database file are located by default in<br />
<code>/var/lib/mysql/</code></p>
<p>In order to make a backup, <a href="http://ubuntuforums.org/showpost.php?p=2465577&amp;postcount=2">Ubuntuforums</a> suggests using<br />
<code>mysqldump DB1</code><br />
to backup the database named &#8220;DB1&#8243; .</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/554/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=554&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2010/05/15/backup-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>Remove U3 System from SanDisk</title>
		<link>http://rforge.org/2010/04/16/remove-u3-system-from-sandisk/</link>
		<comments>http://rforge.org/2010/04/16/remove-u3-system-from-sandisk/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 11:34:24 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[sandisk]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[smart software]]></category>
		<category><![CDATA[u3]]></category>

		<guid isPermaLink="false">http://rforge.org/?p=543</guid>
		<description><![CDATA[Bought a SanDisk Cruzer 16GB and found some smart software preinstalled which did not consider smart at all. Everytime I inserted the drive on any computer a CD drive with label U3 System&#8220;was mounted containing some funny .exe files. The whole &#8220;CD drive&#8221; took several MB of diskspace. I wanted to get rid of it. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=543&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bought a SanDisk Cruzer 16GB and found some <em>smart software</em> preinstalled which did not consider smart at all. Everytime I inserted the drive on any computer a CD drive with label <em>U3 System</em>&#8220;was mounted containing some funny <em>.exe</em> files. The whole &#8220;CD drive&#8221; took several MB of diskspace.</p>
<p>I wanted to get rid of it. Fortunately, <a href="http://www.tomshardware.co.uk/forum/243608-14-remove-smart-software-sandisk-flash-drive">I was not the first one beeing disturbed</a>.</p>
<p>Sourceforge has a u3-tool which did the job:</p>
<ol>
<li><a href="http://sourceforge.net/projects/u3-tool/files/u3-tool/0.3/u3-tool-0.3.tar.gz/download">Download the tool</a> to a place where you remember it</li>
<li>Unpack the .tar.gz archive (I just rightclicked it and chose &#8220;extract here&#8221;). This creates a folder like /MyPathTo/u3-tool-0.3/</li>
<li>open a terminal and type: <code>cd /MyPathTo/u3-tool-0.3/<br />
./configure<br />
make<br />
sudo make install</code><br />
Now <em>u3-tool</em> is installed and can be used.</li>
<li>To remove the CD-like partition containing the firmware crap you need the device name of the USB disk: <code>sudo fdisk -l</code> gives the answer. In my case it is <code>/dev/sdb1</code>. Make shure you remember the right one.</li>
<li>Remove the U3 partition with <code>u3-tool -p 0 /dev/sdb1</code>where /dev/sdb1 is the device name remembered from the previous step and the option -p is followed by a zero.</li>
</ol>
<p>Done.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/543/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/543/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/543/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=543&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2010/04/16/remove-u3-system-from-sandisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>Managing Amazon S3 Online Storage with S3sync</title>
		<link>http://rforge.org/2009/11/01/managing-amazon-s3-online-storage-with-s3sync/</link>
		<comments>http://rforge.org/2009/11/01/managing-amazon-s3-online-storage-with-s3sync/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 22:35:40 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://rforge.wordpress.com/2009/11/01/managing-amazon-s3-online-storage-with-s3sync/</guid>
		<description><![CDATA[After trying to use Amazon&#8217;s S3 web service to backup files and to get a reliable download area for R functions and stuff which is not allowed to be uploaded to wordpress.com I ended up with some experimental &#8220;buckets&#8221; (= S3 online directory) and some 100 MB of files in them. It turned out that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=467&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After trying to use Amazon&#8217;s S3 web service to backup files and to get a reliable download area for R functions and stuff which is not allowed to be uploaded to wordpress.com I ended up with some experimental &#8220;buckets&#8221; (= S3 online directory) and some 100 MB of files in them.</p>
<p>It turned out that it is not possible to delete a non-empty bucket from S3, so one is to required to recurse into the directories and delete all files one by one!</p>
<p><a href="http://echeng.com/journal/2008/07/14/how-to-delete-an-s3-bucket-with-lots-of-files-in-it/">Eric Cheng</a> and other blogs appearing after a google search pointed out <strong>S3sync</strong> as a suitable tool to remove a non-empty bucket.</p>
<p>So first one has to get <strong>Ruby</strong> and then also the OpenSSL interface for Ruby: <code>sudo aptitude install ruby libopenssl-ruby</code></p>
<p>Then download s3sync (to your /home/yourself folder in this case) and unpack it: <code>cd $HOME/<br />
wget <a href="http://s3.amazonaws.com/ServEdge_pub/s3sync/s3sync.tar.gz">http://s3.amazonaws.com/ServEdge_pub/s3sync/s3sync.tar.gz</a> tar xvzf s3sync.tar.gz<br />
rm s3sync.tar.gz</code><br />
This creates a s3sync folder containing the ruby code.</p>
<p>The package <strong>ca-certificates</strong> includes PEM files of CA certificates to allow SSL-based applications to check for the authenticity of SSL connections. It is needed to have the S3 connection secure via SSL and part of the default Ubuntu installation (at least included in my Xubuntu Karmic Koala. If not: <code>sudo aptitude install ca-certificates</code></p>
<p>Before using s3sync get your <strong>access key</strong> and <strong>secret access key</strong> from Amazon. It has to be included in a file &#8220;s3config.yml&#8221; which is located in your home folder inside the directory &#8220;.s3conf&#8221; which has to be created. So:</p>
<p><code>mkdir $HOME/.s3conf</code><br />
to create the directory.</p>
<p>Open your favorite text editor and create a plain textfile called <strong>s3config.yml</strong> inside the &#8220;.s3conf&#8221; folder which contains: <code>aws_access_key_id: YourS3AccessKeyFromAmazon<br />
aws_secret_access_key: YourS3SecretAccessKeyFromAmazon<br />
SSL_CERT_DIR: /etc/ssl/certs</code></p>
<p>Prevent others from reading the configuration file containing your confidential access codes by <code>chmod 700 $HOME/.s3conf/s3config.yml</code></p>
<p>Now you can start to use <strong>s3sync</strong> and <strong>s3cmd</strong> to manipulate your S3 storage space with e.g.: <code>ruby $HOME/s3cmd.rb listbuckets</code></p>
<p>This was the first time I managed to manipulate successfully my S3 account. Ok, Djungledisk under Mac OS-X worked, but it is proprietary, though not expensive.</p>
<p><a href="http://blog.eberly.org/2006/10/09/how-automate-your-backup-to-amazon-s3-using-s3sync/">John Eberly&#8217;s blog</a> was an inspiration to get started. Follow the link to his excellent blog post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/467/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/467/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/467/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=467&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2009/11/01/managing-amazon-s3-online-storage-with-s3sync/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>cwRsync &#8211; Transparent Backups in Windows XP</title>
		<link>http://rforge.org/2009/07/23/cwrsync-transparent-backups-in-windows-xp/</link>
		<comments>http://rforge.org/2009/07/23/cwrsync-transparent-backups-in-windows-xp/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 14:11:31 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://rforge.wordpress.com/?p=208</guid>
		<description><![CDATA[The Unix tool rsync turned out to be a fast and reliable way to backup my /home folder to an USB-disk. ITeF!x provides this installation-how2. He seems to maintain the packages. The website is quite informative, though a bit confusing to me. The download link did not work today,   so I found another download location. Installation Supported [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=208&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Unix tool rsync turned out to be a fast and reliable way to <a href="http://rforge.wordpress.com/2009/06/24/syncronizing-home-folder-and-usb-memory-using-rsync/">backup my /home folder to an USB-disk</a>.</p>
<p><a href="http://www.itefix.no/i2/node/10650">ITeF!x</a> provides this installation-how2. He seems to maintain the packages. The website is quite informative, though a bit confusing to me. The download link did not work today,   so I found another <a href="http://downloads.sourceforge.net/project/sereds/cwRsync/3.1.0/cwRsync_3.1.0_Installer.zip?use_mirror=sunet">download location</a>.</p>
<h3>Installation</h3>
<p>Supported platforms: <em>Client</em> &#8211; Windows 9x/NT/2000/XP/2003, <em>Server</em> &#8211; NT/2000/XP/2003.</p>
<p>[<a href="http://downloads.sourceforge.net/project/sereds/cwRsync/3.1.0/cwRsync_3.1.0_Installer.zip?use_mirror=sunet">Download cwRsync</a>.] cwRsync comes as a zip archive containing a <a href="http://nsis.sourceforge.net/">Nullsoft Installer</a> package. Unzip downloaded file and run <em>cwRsync_x.x.x_Installer.exe</em> or <em>cwRsync_Server_x.x.x_Installer.exe</em> (server version) :</p>
<ol>
<li>Click Next at Welcome-page</li>
<li>View license agreement.</li>
<li>Select components that varies depending on package type: Client package has an optional component (<em>Secure Channel Wrapper &amp; Wizard</em>). It makes creation of secure channels to cwrsync servers an easy task.</li>
<li>Specify an installation location.</li>
<li>(<em>cwRsyncServer only</em>) Specify a service account.</li>
<li>Installation starts. By clicking &#8216;Details&#8217; button, you can get more detailed information about installation. Check if everything seems ok.</li>
</ol>
<p>You&#8217;re DONE! cwRsync is installed on your machine.</p>
<h3>Rsync&#8217;ing a USB-disk with a Windows XP folder</h3>
<p>Use your text-editor-of-choice and paste the following line into it:<br />
<code>rsync -au --exclude '.*' --exclude 'Music/' "/cygdrive/e/" "/cygdrive/h/DATA/home/"</code></p>
<p>My USB-drive showed up in the windows explorer as <strong>E:/</strong> therfore it says /cygdrive/<strong>e/</strong>. The Windows folder was <strong>H:/DATA/home/</strong> which translates into /cygdrive/<strong>h/DATA/home/</strong>. Change the paths to your specific situation.</p>
<p>Save the file as <em>syncUSB.bat</em>. The <em>.bat</em> tells Windows to execute the script in the commandline.</p>
<p>A variation of the script is<br />
<code>cwRsync\bin\rsync -au --exclude '.*' --exclude 'Music/' "/cygdrive/e/" "/cygdrive/h/DATA/home/"</code><br />
when both the <em>syncUSB.bat</em> <strong>and</strong> the installation folder of <em>cwRsync</em> are in the folder which gets updated from the USB-disk.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=208&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2009/07/23/cwrsync-transparent-backups-in-windows-xp/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>Reinstalling Applications after a Fresh Install</title>
		<link>http://rforge.org/2009/07/20/reinstalling-applications-after-a-fresh-install/</link>
		<comments>http://rforge.org/2009/07/20/reinstalling-applications-after-a-fresh-install/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 11:50:31 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[fresh install]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[reinstall]]></category>

		<guid isPermaLink="false">http://rforge.wordpress.com/?p=170</guid>
		<description><![CDATA[Once a while I am tempted to upgrade my OS or try another flavor. Now I started trying them on cheap 8-16GB USB-disks so I do not need to mess up my working system anymore&#8230; The problem always is, that after using an OS for some month a lot of applications were installed and configuered. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=170&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Once a while I am tempted to upgrade my OS or try another flavor. Now I started trying them on cheap 8-16GB USB-disks so I do not need to mess up my working system anymore&#8230;</p>
<p>The problem always is, that after using an OS for some month a lot of applications were installed and configuered. This took a lot of time. It is always <strong>a lot</strong> of work to get them all in place again and often I forgot about them, until I needed them. Preferably in a situtation without internet connection, so no way &#8220;sudo aptitude install&#8221; &#8230;</p>
<p>I was already up and going to create a script, manually punching everything which I found necessary , but then I found a preconfigured solution.</p>
<p>According to the great <a href="http://ubuntuguide.org/wiki/Ubuntu:Jaunty#Reinstalling_applications_after_a_fresh_install">Ubuntu Guide</a>:</p>
<p>If you upgrade your Ubuntu system with a fresh install, it is possible to mark the packages and services installed on your old system (prior to the upgrade) and save the settings (&#8220;markings&#8221;) into a file. Then install the new version of Ubuntu and allow the system to reinstall packages and services using the settings saved in the &#8220;markings&#8221; file. For instructions, see this <a title="http://ubuntuforums.org/showthread.php?t=1057608" rel="nofollow" href="http://ubuntuforums.org/showthread.php?t=1057608">Ubuntu forum thread</a>. In brief:</p>
<ul>
<li>On the old system: Synaptic Package Manager -&gt; File -&gt; Save Markings</li>
<li>Save the markings file to an external medium, such as USB drive.</li>
<li>Complete the backup of your system&#8217;s other important files (e.g. the /home directory) before the fresh install of the new system.</li>
<li>In the freshly installed new system, again open Synaptic Package Manager -&gt; File -&gt; Read markings and load the file on your USB drive (or other external storage) previously saved.</li>
</ul>
<p>Note: Many packages, dependencies, and compatibilities change between version of Ubuntu, so this method does not always work. <a href="https://rforge.wordpress.com/wp-admin/#Upgrading_Intrepid_to_Jaunty">Automated updates</a> remains the recommended method.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/170/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/170/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/170/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=170&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2009/07/20/reinstalling-applications-after-a-fresh-install/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
		<item>
		<title>Manage Amazon S3 Buckets</title>
		<link>http://rforge.org/2009/07/06/manage-amazon-s3-buckets/</link>
		<comments>http://rforge.org/2009/07/06/manage-amazon-s3-buckets/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 19:30:09 +0000</pubDate>
		<dc:creator>rforge</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[AWS]]></category>
		<category><![CDATA[s3]]></category>

		<guid isPermaLink="false">http://rforge.wordpress.com/?p=85</guid>
		<description><![CDATA[Yeah, delight! I was using crappy development scripts to fiddle with S3 buckets on Amazon Web Services (AWS). Creating, listing, deleting buckets and so on was not that straightforward and I found it not well documented&#8230; have a growing suspicion that I am just not capable of web-searches&#8230; OK, there is an easy way: My.Bucket [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=85&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yeah, delight!</p>
<p>I was using crappy development scripts to fiddle with S3 buckets on Amazon Web Services (AWS). Creating, listing, deleting buckets and so on was not that straightforward and I found it not well documented&#8230; have a growing suspicion that I am just not capable of web-searches&#8230;</p>
<p>OK, there is an easy way:<br />
<a href="http://s3.amazonaws.com/my.bucket/index.html">My.Bucket</a></p>
<p>A graphical user interface.</p>
<p>Unfortunately it refused to work with Ubuntu-Firefox, but did work in Windows XP-IE5.</p>
<p>Ok, another tool just found is the <a href="https://addons.mozilla.org/en-US/firefox/addon/3247">S3 manager</a> add-on to Firefox. This finally turned out to be the easiest way to connect to Amazones Web Services and create an online storage (&#8220;bucket&#8221;), edit or delete them.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rforge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rforge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rforge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rforge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rforge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rforge.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rforge.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rforge.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rforge.org&amp;blog=7577563&amp;post=85&amp;subd=rforge&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rforge.org/2009/07/06/manage-amazon-s3-buckets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2a4cc3be2c3e1c3b1442535ef7a46f42?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rforge</media:title>
		</media:content>
	</item>
	</channel>
</rss>
