<?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>BitFreedom</title>
	<atom:link href="http://bitfreedom.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bitfreedom.com</link>
	<description>Free software, coding, and system administration</description>
	<lastBuildDate>Tue, 27 Jul 2010 21:08:07 +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>Customized Bash Prompt</title>
		<link>http://bitfreedom.com/customized-bash-prompt/</link>
		<comments>http://bitfreedom.com/customized-bash-prompt/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:26:43 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=349</guid>
		<description><![CDATA[The following sites inspired me to explore creating a customized prompt (for bash): http://maketecheasier.com/8-useful-and-interesting-bash-prompts/2009/09/04 http://tldp.org/HOWTO/Bash-Prompt-HOWTO/ So here is mine: PS1="\$(if [[ \$? != "0" ]]; then echo \[\e[31m\]; fi)\n\$(date)\n\\[\e[1m\\]\[\$(dirs)\]\n\\[\e[m\\]" PS2="" Features: Color change on error return code The current date The current directory stack (I use pushd and popd) Commands start on their own line [...]]]></description>
			<content:encoded><![CDATA[<p>The following sites inspired me to explore creating a customized prompt (for bash):</p>
<ul>
<li><a href="http://maketecheasier.com/8-useful-and-interesting-bash-prompts/2009/09/04">http://maketecheasier.com/8-useful-and-interesting-bash-prompts/2009/09/04</a></li>
<li><a href="http://tldp.org/HOWTO/Bash-Prompt-HOWTO/">http://tldp.org/HOWTO/Bash-Prompt-HOWTO/</a></li>
</ul>
<p>So here is mine:<br />
<code><br />
PS1="\$(if [[ \$? != "0" ]]; then echo \[\e[31m\]; fi)\n\$(date)\n\\[\e[1m\\]\[\$(dirs)\]\n\\[\e[m\\]"<br />
PS2=""</code></p>
<p>Features:</p>
<ul>
<li>Color change on error return code</li>
<li>The current date</li>
<li>The current directory stack (I use <a href="http://eriwen.com/bash/pushd-and-popd/">pushd and popd</a>)</li>
<li>Commands start on their own line</li>
</ul>
<p>And that&#8217;s it!  I really don&#8217;t need the prompt to tell me what my username is or the hostname of the machine (duh!).</p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/customized-bash-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rsync Speed-up</title>
		<link>http://bitfreedom.com/rsync-speed-up/</link>
		<comments>http://bitfreedom.com/rsync-speed-up/#comments</comments>
		<pubDate>Tue, 25 May 2010 18:38:01 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/rsync-speed-up/</guid>
		<description><![CDATA[Online docs say that rsync sends only the differences and &#8220;information about structure&#8221; but my experience seems to indicate otherwise. So I ran a little test too on a file where I just changed the timestamp without changing the file contents: $ cp -a testfile-100M destfile $ rsync -av testfile-100M destfile sending incremental file list [...]]]></description>
			<content:encoded><![CDATA[<p>Online docs say that rsync sends only the differences and &#8220;information about structure&#8221; but my experience seems to indicate otherwise.  So I ran a little test too on a file where I just changed the timestamp without changing the file contents:</p>
<p>$ cp -a testfile-100M destfile</p>
<p>$ rsync -av testfile-100M destfile<br />
sending incremental file list</p>
<p>sent 56 bytes  received 12 bytes  8.00 bytes/sec<br />
total size is 104857600  speedup is 1542023.53</p>
<p>$ touch testfile-100M</p>
<p>$ rsync -av testfile-100M destfile sending incremental file list<br />
testfile-100M</p>
<p>sent 104870495 bytes  received 31 bytes  113804.15 bytes/sec<br />
total size is 104857600  speedup is 1.00</p>
<p>I didn&#8217;t time it, but the initial cp easily took 1/3rd the time the final rsync did&#8211;I would estimate more like 1/4th or 1/5th the time.  I&#8217;ve always read &#8220;speedup is 1.00&#8243; as &#8220;this is equivalent to having copied the whole file.&#8221;  Meaning I gained no speedup over just transmitting the file regularly, as calculated by the algorithm.</p>
<p>I think what might be going on is that when rsync sees the timestamp has changed it transfers the file.  But in doing so, it does a diff on the contents which is slower than just copying a file.</p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/rsync-speed-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOS Disk/Flash BIOS</title>
		<link>http://bitfreedom.com/dos-diskflash-bios/</link>
		<comments>http://bitfreedom.com/dos-diskflash-bios/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 18:55:55 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=294</guid>
		<description><![CDATA[These are some notes on making a DOS disk using FreeDOS for those of us with Linux needing to do things like flash our BIOS. wget -c http://fdos.org/bootdisks/autogen/FDOEM.144.gz gunzip FDOEM.144.gz mount -t vfat -o loop FDOEM.144 /mnt/floppy Put the driver files on the floppy (stay within the space limit) umount /mnt/floppy mkisofs -o bootcd.iso -b [...]]]></description>
			<content:encoded><![CDATA[<p>These are some notes on making a DOS disk using FreeDOS for those of us with Linux needing to do things like flash our BIOS.</p>
<p><code><br />
wget -c <a href="http://fdos.org/bootdisks/autogen/FDOEM.144.gz">http://fdos.org/bootdisks/autogen/FDOEM.144.gz</a><br />
gunzip FDOEM.144.gz<br />
mount -t vfat -o loop FDOEM.144 /mnt/floppy<br />
</code><br />
Put the driver files on the floppy (stay within the space limit)<br />
<code><br />
umount /mnt/floppy<br />
mkisofs -o bootcd.iso -b FDOEM.144 FDOEM.144<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/dos-diskflash-bios/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dragonskin Child Themes</title>
		<link>http://bitfreedom.com/dragonchild/</link>
		<comments>http://bitfreedom.com/dragonchild/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 06:50:55 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=139</guid>
		<description><![CDATA[The Dragonskin Theme now also had child themes to give your site the skin of a different colored dragon. The child themes should be included in the download for the theme, and are simply used to modify the color scheme. You select them just as any other theme. Note: The WordPress repository did not support [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="/dragonskin">Dragonskin Theme</a> now also had child themes to give your site the skin of a different colored dragon.  The child themes should be included in the download for the theme, and are simply used to modify the color scheme.  You select them just as any other theme.</p>
<p><strong>Note:</strong> The WordPress repository did not support child themes when I uploaded version 1.5.  Therefore, they will not be included in that package.  Please download them from this page below (added).  My intention for the next version is to include all of them in one package with an switching tool on the admin menu to select the one to use.</p>
<h3><a href="http://heroesonly.com/?preview=1&amp;template=dragonskin&amp;stylesheet=dragonskin-gold">Dragonskin Gold</a></h3>
<div id="attachment_141" class="wp-caption aligncenter" style="width: 310px"><a href="http://heroesonly.com/?preview=1&amp;template=dragonskin&amp;stylesheet=dragonskin-gold"><img class="size-full wp-image-141" title="Dragonskin Gold" src="http://bitfreedom.com/files/2010/01/screenshot.png" alt="Dragonskin Gold Screenshot" width="300" height="225" /></a><p class="wp-caption-text">Dragonskin Gold</p></div>
<p style="text-align: center"><a href="http://bitfreedom.com/files/2010/01/dragonskin-gold.zip">Download Dragonskin Gold 1.5</a></p>
<h3><a href="http://heroesonly.com/?preview=1&amp;template=dragonskin&amp;stylesheet=dragonskin-green">Dragonskin Green</a></h3>
<div id="attachment_144" class="wp-caption aligncenter" style="width: 310px"><a href="http://heroesonly.com/?preview=1&amp;template=dragonskin&amp;stylesheet=dragonskin-green"><img class="size-full wp-image-144" title="Dragonskin Green" src="http://bitfreedom.com/files/2010/01/screenshot1.png" alt="Dragonskin Green Screenshot" width="300" height="225" /></a><p class="wp-caption-text">Dragonskin Green</p></div>
<p style="text-align: center"><a href="http://bitfreedom.com/files/2010/01/dragonskin-green.zip">Download Dragonskin Green 1.5</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/dragonchild/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Automatically show WP-PostRatings on your posts</title>
		<link>http://bitfreedom.com/auto-wp-postratings/</link>
		<comments>http://bitfreedom.com/auto-wp-postratings/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 05:36:34 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=134</guid>
		<description><![CDATA[For the longest time, my Dragonskin Theme has had WP-PostRatings integration. Recently I removed the integration because it is easy to modify the rating plugin to accomplish the same goal. (I hope that in the future WP-PostRatings will provide a simple way to do this through the admin interface&#8211;it really isn&#8217;t that hard.) All you [...]]]></description>
			<content:encoded><![CDATA[<p>For the longest time, my <a href="/dragonskin">Dragonskin Theme</a> has had WP-PostRatings integration.  Recently I removed the integration because it is easy to modify the rating plugin to accomplish the same goal.  (I hope that in the future WP-PostRatings will provide a simple way to do this through the admin interface&#8211;it really isn&#8217;t that hard.)</p>
<p>All you need to do is open wp-postratings/wp-postratings.php and find a line that looks like this:</p>
<p><code>//add_action('the_content', 'add_ratings_to_content');</code></p>
<p>Simply uncommenting that line will put the post ratings at the bottom of every post and page.  In <a href="/dragonskin">Dragonskin</a>, I only included it on posts and at the top.  To achieve the same, make some modifications to the next block of code, so that it looks like this:</p>
<p><code><br />
function add_ratings_to_content($content) {<br />
        if (!is_feed()|!is_page()) {<br />
                $content = the_ratings('div', 0, false).$content;<br />
        }<br />
        return $content;<br />
}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/auto-wp-postratings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Akismet Class with Spamwords for phpBB2</title>
		<link>http://bitfreedom.com/akismet-class-spamwords-phpbb2/</link>
		<comments>http://bitfreedom.com/akismet-class-spamwords-phpbb2/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 22:02:24 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=125</guid>
		<description><![CDATA[I followed the instructions here for installing an akismet-based spam filter on phpBB2, but I found that it didn&#8217;t play nicely enough with the current Akismet API.  So instead, I downloaded an Akismet class and used that instead.  Basically, you should use Akismet.class.php instead of functions_akismet.php in your spamwords.php file. Install the spamwords mod Download [...]]]></description>
			<content:encoded><![CDATA[<p>I followed the instructions <a href="http://www.eadz.co.nz/blog/article/phpbb-akismet.html">here</a> for installing an akismet-based spam filter on phpBB2, but I found that it didn&#8217;t play nicely enough with the current Akismet API.  So instead, I downloaded an <a href="http://www.achingbrain.net/stuff/php/akismet">Akismet class</a> and used that instead.  Basically, you should use Akismet.class.php instead of functions_akismet.php in your spamwords.php file.</p>
<ol>
<li>Install the spamwords mod</li>
<li>Download Akismet.class.php and put this under your phpBB2 includes/ directory</li>
<li>Modify the <a href="/files/spamwords.txt">spamwords.php file so that it looks like this</a> (include your Akismet API at the top):</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/akismet-class-spamwords-phpbb2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPMU Recent Posts Widget</title>
		<link>http://bitfreedom.com/wpmu-posts-widget/</link>
		<comments>http://bitfreedom.com/wpmu-posts-widget/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 17:16:06 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=84</guid>
		<description><![CDATA[First of all, let me preface this posting by saying there are a lot of versions of a &#8220;sitewide&#8221; plugin to show recent posts.  There are however, no widgetized versions that I could find, so I made a simple one. Download WPMU Recent Posts Widget Latest version 1.1]]></description>
			<content:encoded><![CDATA[<p>First of all, let me preface this posting by saying there are a lot of versions of a &#8220;sitewide&#8221; plugin to show recent posts.  There are however, no widgetized versions that I could find, so I made a simple one.</p>
<p><a href="/files/wpmu-recent-posts-widget.php">Download WPMU Recent Posts Widget<br />
</a></p>
<p>Latest version 1.1</p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/wpmu-posts-widget/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Dragonskin WordPress Theme</title>
		<link>http://bitfreedom.com/dragonskin/</link>
		<comments>http://bitfreedom.com/dragonskin/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 06:28:01 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=64</guid>
		<description><![CDATA[Wrap your blog in the skin of a dragon! This is a dark theme that has a nice look for RPG and gaming sites. I originally developed this theme to go along with my D&#38;D fan site. It features CSS-drive drop-down menus, support for multiple authors, and fluid width for flexible resolutions. (See below for [...]]]></description>
			<content:encoded><![CDATA[<p>Wrap your blog in the skin of a dragon!  This is a dark theme that has a nice look for RPG and gaming sites.  I originally developed this theme to go along with <a href="http://heroesonly.com/">my D&amp;D fan site</a>.  It features CSS-drive drop-down menus, support for multiple authors, and fluid width for flexible resolutions.  (See below for full list of features and details.)</p>
<p><strong>If you like this theme please <a title="WordPress" href="http://wordpress.org/extend/themes/dragonskin">rate it at WordPress</a>!</strong></p>
<div id="attachment_28" class="wp-caption aligncenter" style="width: 310px"><a href="http://heroesonly.com/"><img class="size-full wp-image-28" src="http://bitfreedom.com/files/2008/10/screenshot.png" alt="dragonskin screenshot" width="300" height="225" /></a><p class="wp-caption-text">Example Site Using Dragonskin</p></div>
<p style="text-align: center;">
<!-- Begin PayPal Donations by <a href="http://wpstorm.net/">http://wpstorm.net/</a> -->
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><div class="paypal-donations"><input type="hidden" name="cmd" value="_donations" /><input type="hidden" name="business" value="MGM3AJP3LV5EE" /><input type="hidden" name="item_name" value="bitfreedom.com" /><input type="hidden" name="item_number" value="dragonskin" /><input type="hidden" name="amount" value="1.00" /><input type="hidden" name="currency_code" value="USD" /><input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." /><img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1" /></div></form>
<!-- End PayPal Donations -->
</p>
<h3>Features</h3>
<ul>
<li>Widget enabled</li>
<li>Gravatar enabled</li>
<li>Drop-down menu</li>
<li>Supports an optional header image to replace the text tile (just include an image as images/header.gif)</li>
</ul>
<h3>Integrated Support for Plugins</h3>
<ul>
<li><a title="Random Redirect" href="http://ma.tt/2007/04/random-redirect-plugin/">Random Redirect</a></li>
<li><a href="http://wordpress.org/extend/plugins/co-authors/">Coauthors</a></li>
<li><a href="http://wordpress.org/extend/plugins/smart-404/">Smart 404</a></li>
</ul>
<h3>Image Credits</h3>
<ul>
<li>Bowie J. Poag</li>
<li><a title="Brilliant Button Maker" href="http://www.lucazappa.com/brilliantMaker/buttonImage.php">Brilliant Button Maker</a> &#8211; for the 80&#215;15 badges</li>
<li><a title="The Hobbit template" href="http://templates.arcsin.se/the-hobbit-website-template/">Arcsin Website Templates</a> &#8211; for the border image</li>
</ul>
<h3>Download</h3>
<p><strong><a href="/files/2008/10/dragonskin-1.3.zip">Version 1.3</a> &#8211; January 10, 2010</strong></p>
<ul>
<li>Added image for nicer looking blockquote</li>
<li>Added comment capability back to pages (but don&#8217;t display &#8220;comments disabled&#8221; when turned off)</li>
<li>Added support for local favicon</li>
<li>Added two <a href="http://bitfreedom.com/dragonchild">child themes</a></li>
<li>Removed WP-PostRatings integration, <a href="http://bitfreedom.com/auto-wp-postratings">integration can be done by editing the plugin</a></li>
</ul>
<p><strong><a href="/files/2008/10/dragonskin-1.2.zip">Version 1.2</a> &#8211; September 22nd, 2009</strong></p>
<ul>
<li>Separated the navigation bar to a separate file for easier modification (navbar.php)</li>
<li>Reduced the post area/black scroll width to see a little more of the background</li>
<li>Reduced transfer size (dragonskin-4bit.png)</li>
<li>Expanded author profile page to include all posts listing</li>
<li>Fixed bug that occurs if you have the optional files set unreadable &#8211; won&#8217;t generate an error on files existing without permissions</li>
<li>Added support for plugins
<ul>
<li> Coauthors</li>
<li>Smart 404</li>
</ul>
</li>
<li> Replaced deprecated: link_pages, wp_list_cats, get_archives</li>
<li>Changed to display subcategories inline in drop-down menu</li>
<li> Removed code for Similar Posts plugin &#8211; the plugin includes a way to insert itself through the admin interface</li>
<li> Removed static-sidebar.php support</li>
<li> Removed clickheat support &#8211; <a href="http://wordpress.org/extend/plugins/easy-clickheat-intergration-plugin/">http://wordpress.org/extend/plugins/easy-clickheat-intergration-plugin/</a></li>
<li> Removed post-banner.php support &#8211; suggest to use <a href="http://wordpress.org/extend/plugins/smart-ads/">http://wordpress.org/extend/plugins/smart-ads/</a></li>
</ul>
<p><strong><a title="Dragonskin version 1.1" href="/archive/software/wp-themes/dragonskin-1.1.zip">Version 1.1</a> &#8211; December 9th, 2008</strong></p>
<ul>
<li>Fixed some accidental plugs for <a title="Heroes Only" href="http://heroesonly.com/">Heroes Only</a>.</li>
<li>Fixed sidebar bug on archive pages pushing sidebar below the content</li>
<li>Licensed under GPL</li>
</ul>
<p><strong><a title="Dragonskin WordPress Theme" href="/archive/software/wp-themes/dragonskin-1.0.zip">Version 1.0</a> &#8211; October 17th, 2008</strong></p>
<p><strong>If you like this theme please <a title="WordPress" href="http://wordpress.org/extend/themes/dragonskin">rate it at WordPress</a>!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/dragonskin/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
		<item>
		<title>CD/DVD Filesystem Snapshot</title>
		<link>http://bitfreedom.com/filesystem-snapshot/</link>
		<comments>http://bitfreedom.com/filesystem-snapshot/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 22:00:50 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/?p=305</guid>
		<description><![CDATA[This will work with other filesystems, not just ext2, so you may want to choose a filesystem that is similar to what you currently run (if you care). The idea is that instead of creating an ISO image that is very flexible (can be read by Windows), you create a filesystem image and burn it [...]]]></description>
			<content:encoded><![CDATA[<p>This will work with other filesystems, not just ext2, so you may want to choose a filesystem that is similar to what you currently run (if you care). The idea is that instead of creating an ISO image that is very flexible (can be read by Windows), you create a filesystem image and burn it to disc. The advantage of this is that you can preserve filesystem properties such as permissions, ownership, etc. The disadvantage is that the straightforward approach (everything on one disk) only gives you about 4.5 G of space to work with (depending on the media size).</p>
<p>(1) Create a 2 GB image:<br />
<code>sudo dd if=/dev/zero of=snapshot.img bs=1024k count=2000 &amp;</code><br />
You can create a larger image size if you need it, and your burnable media can handle it.</p>
<p>(2) Format it using ext2<br />
<code>sudo mke2fs -m 0 -q -F -b 2048 snapshot.img 1&gt;&amp;2</code><br />
Honestly, I can&#8217;t remember why I was redirecting output to stderr. Maybe I had a good reason for that. But suffice it to say, you simply want to use the file you created to make a file system. For example, instead of the above, you can use something like `mkfs -t xfs snapshot.img`</p>
<p>(3) Mount the image<br />
<code>sudo mount -t ext2 -o loop snapshot.img /mnt/snapshot</code><br />
For the mount, you want to make sure to use whatever filesystem type you created the image with.</p>
<p>(4) Copy the data, preserving information<br />
<code>sudo rsync -avH --numeric-ids --progress --stats --delete --exclude /proc/ \<br />
--exclude /sys/ --exclude /tmp/ --exclude /var/run/ --exclude /var/tmp/ \<br />
--exclude /mnt/snapshot/ / /mnt/snapshot/</code><br />
This is an example of copying the entire system (if it&#8217;s small enough to fit). In this example, you want to make sure you exclude the mount point for the snapshot, because otherwise you&#8217;ll have a recursive rsync that will go on forever. It&#8217;s definitely good to make sure you exclude /proc/ and /sys/ too. You could exclude /dev/ since today&#8217;s Linux just regenerates it on boot anyway. (If you were porting to other hardware you may want to do this to be &#8220;safe&#8221; but usually it&#8217;s safer to just keep a copy of it.) &#8211;progress and &#8211;stats are extraneous options, and if you&#8217;re a neat freak, you can use &#8211;delete-excluded too to make sure those directories are cleared out in case you accidentally copied things over.</p>
<p>(5) Unmount and burn using cdrecord<br />
<code>sudo umount /mnt/snapshot<br />
sudo cdrecord -v -eject dev=/dev/cdrom snapshot.img</code><br />
You can alternatively use any burning software to apply the image directly to burnable media.</p>
<p>Now keep in mind, that when you want to mount this CD/DVD you will need to mount it by hand, as root, using the filesystem type you burned it with. It&#8217;s a good idea to write the fs type on the CD along with whatever else you&#8217;re going to call it so you know how to mount it later.</p>
<p><code><br />
rsync --verbose --progress --stats --compress -a --delete -H --numeric-ids --exclude "#*#" --exclude "*~" --exclude "/proc/*" --exclude "/dev/*" --exclude "/var/cache/*" --exclude "/tmp/*" --exclude "/var/tmp/*" descartes:/ /mnt/backup/rsync/descartes/<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/filesystem-snapshot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CutlineNegative</title>
		<link>http://bitfreedom.com/cutlinenegative/</link>
		<comments>http://bitfreedom.com/cutlinenegative/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 07:18:51 +0000</pubDate>
		<dc:creator>Angelo</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://bitfreedom.com/cutlinenegative</guid>
		<description><![CDATA[The CutlineNegative theme for WordPress is based on the Cutline theme by Chris Pearson. It&#8217;s main feature is that it produces a gray-on-black Cutline instead of the typical black-on-white. Download CutlineNegative-1.1 ZIP file It has a few other personal tweaks, but if all you really care about is the color scheme, then you can simply [...]]]></description>
			<content:encoded><![CDATA[<p>The CutlineNegative theme for WordPress is based on the <a href="http://cutline.tubetorial.com/">Cutline</a> theme by Chris Pearson.  It&#8217;s main feature is that it produces a gray-on-black Cutline instead of the typical black-on-white.</p>
<p><a href="http://angelo.bitfreedom.com/"><img src="http://bitfreedom.com/files/2007/12/cutlinenegative-screenshot.png" alt="CutlineNegative Screenshot" /></a></p>
<p><a title="CutlineNegative-1.1 ZIP file" href="http://bitfreedom.com/files/2007/12/cutlinenegative-1_1.zip">Download CutlineNegative-1.1 ZIP file</a></p>
<p>It has a few other personal tweaks, but if all you really care about is the color scheme, then you can simply download the custom.css file instead. Simply replace custom.css in the Cutline theme with the file below.</p>
<p><a title="CutlineNegative-1.1 CSS file" href="http://bitfreedom.com/files/2007/12/cutlinenegative-custom.css">Download CutlineNegative-1.1 CSS file</a></p>
]]></content:encoded>
			<wfw:commentRss>http://bitfreedom.com/cutlinenegative/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
