<?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>RixBuntu</title>
	<atom:link href="http://rixbuntu.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rixbuntu.wordpress.com</link>
	<description>Rix goes open source</description>
	<lastBuildDate>Tue, 23 Aug 2011 20:39:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rixbuntu.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>RixBuntu</title>
		<link>http://rixbuntu.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rixbuntu.wordpress.com/osd.xml" title="RixBuntu" />
	<atom:link rel='hub' href='http://rixbuntu.wordpress.com/?pushpress=hub'/>
		<item>
		<title>make every letter in &#8220;word count&#8221; count</title>
		<link>http://rixbuntu.wordpress.com/2010/11/11/make-every-letter-in-word-count-count/</link>
		<comments>http://rixbuntu.wordpress.com/2010/11/11/make-every-letter-in-word-count-count/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 16:28:32 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=282</guid>
		<description><![CDATA[The word count command (wc) is a utility that will count the bytes, characters, words, or lines of standard input, a file, or several files. Without passing any options, wc returns line, word and byte counts for its input.  Say we have a file called foo.txt with the following contents: foo foo If we run [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=282&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The word count command (wc) is a utility that will count the bytes, characters, words, or lines of standard input, a file, or several files.</p>
<p>Without passing any options, <strong>wc</strong> returns line, word and byte counts for its input.  Say we have a file called foo.txt with the following contents:</p>
<blockquote><p><code>foo<br />
foo</code></p></blockquote>
<p>If we run <strong>wc</strong> against this file we will get:</p>
<blockquote><p>
<code>$ wc foo.txt</code><br />
<code>2 2 8 foo.txt</code>
</p></blockquote>
<p>Notice, however that the byte count is two bytes too many for what you&#8217;d expect.  A quick glance at the content of the file tells us that there are only 6 characters, and therefore only 6 bytes in the file.  Even if we try to run<strong> wc</strong> with the character specific option &#8220;-m&#8221;, we get the same:</p>
<blockquote><p>
<code>$ wc -m foo.txt</code><br />
<code>8 foo.txt</code>
</p></blockquote>
<p>The same thing happens whether we use the &#8220;-c&#8221; option for bytes or the &#8220;-m&#8221; option for characters.  This is because of the unseen newline character at the end of each line.  Even if we <strong>echo</strong> a line of text to <strong>wc</strong>, we get the same effect.</p>
<blockquote><p>
<code>$ echo foobar | wc -m</code><br />
<code>7</code>
</p></blockquote>
<p>If you want a true count of the characters, you have to take the newlines into account.  We can remove the newlines from <strong>echo</strong> easily enough with <strong>tr</strong>:</p>
<blockquote><p>
<code>$ echo foobar | tr -d '\n' | wc -m</code><br />
<code>6</code>
</p></blockquote>
<p>Actually, we can do it even easier, by using <strong>echo</strong>&#8216;s &#8220;-n&#8221; option which removes the newline characters from standard output:</p>
<blockquote><p>
<code>$ echo -n foobar | wc -m</code><br />
<code>6</code>
</p></blockquote>
<p>But if you want to pass a file to <strong>wc</strong> and get an output that doesn&#8217;t take the newlines into account, you&#8217;re probably stuck using <strong>tr</strong></p>
<blockquote><p>
<code>$ cat foo.txt | tr -d '\n' | wc -m</code><br />
<code>6</code>
</p></blockquote>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/282/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=282&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2010/11/11/make-every-letter-in-word-count-count/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>Five Brilliant Ubuntu-based Distros You Never Knew Existed</title>
		<link>http://rixbuntu.wordpress.com/2010/06/02/five-brilliant-ubuntu-based-distros-you-never-knew-existed/</link>
		<comments>http://rixbuntu.wordpress.com/2010/06/02/five-brilliant-ubuntu-based-distros-you-never-knew-existed/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 04:47:12 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=280</guid>
		<description><![CDATA[From linux-mag.com: ﻿The major derivatives of Ubuntu are well known, but what about the others? Just because they aren’t as popular doesn’t mean they don’t have something to offer! We introduce five of the least known, yet simply outstanding distributions. The article gives a nice overview of DEFT &#8211; the Digital Evidence &#38; Forensic Toolkit: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=280&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>From <a href="http://www.linux-mag.com/id/7700/1/" target="_blank">linux-mag.com</a>:</p>
<blockquote><p>﻿The major derivatives of Ubuntu are well known, but what about the others? Just because they aren’t as popular doesn’t mean they don’t have something to offer! We introduce five of the least known, yet simply outstanding distributions.</p></blockquote>
<p>The article gives a nice overview of</p>
<ul>
<li><strong>DEFT</strong> &#8211; the Digital Evidence &amp; Forensic Toolkit: a distro running LXDE and targeting foresnic work with packages like Sleuthkits’s Autopsy, ophcrack and ClamAV</li>
<li><strong>Element</strong> &#8211; a home theater PC distro targeted at HDTVs</li>
<li><strong>Jolicloud</strong> &#8211; you guessed it: a cloud-based distro for netbook users</li>
<li><strong>moonOS</strong> &#8211; an elegantly, artsy distro using the little-known Enlightenment window manager.  it looks to have even more style than Fluxbuntu did back when it was an actively developed distro.</li>
<li><strong>wattOS</strong> &#8211; a lightweight, power-efficient distro (think DSL, Puppy and Tiny Core) recommended for recycled PCs</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=280&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2010/06/02/five-brilliant-ubuntu-based-distros-you-never-knew-existed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>How healthy is your hard drive?</title>
		<link>http://rixbuntu.wordpress.com/2009/12/15/how-healthy-is-your-hard-drive/</link>
		<comments>http://rixbuntu.wordpress.com/2009/12/15/how-healthy-is-your-hard-drive/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 07:00:38 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=273</guid>
		<description><![CDATA[Checking the SMART information on your hard drive It looks like Ubuntu 9.10 comes with some handy tools for checking the health of your hard drive. Palimpsest &#8211; GUI tool devkit-disks &#8211; CLI tool Check out this blog on linux.com for screenshots of Palimpsest.  Although, beware, launchpad currently shows a bug related to the error [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=273&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Checking the SMART information on your hard drive</h3>
<p>It looks like Ubuntu 9.10 comes with some handy tools for checking the health of your hard drive.</p>
<ul>
<li>Palimpsest &#8211; GUI tool</li>
<li>devkit-disks &#8211; CLI tool</li>
</ul>
<p>Check out <a href="http://www.linux.com/community/blogs/new-hard-drive-utility-in-ubuntu-910-palimpsest.html" target="_blank">this blog on linux.com</a> for screenshots of Palimpsest.  Although, beware, launchpad currently shows a <a href="https://bugs.launchpad.net/ubuntu/+source/libatasmart/+bug/438136" target="_blank">bug</a> related to the error that shows up in the screenshots.</p>
<p>If you happen to get what you think is a false positive for SMART value 5 &#8220;Reallocated Sector Count&#8221;, check it with the command line tool <strong>devkit-disks</strong> by running:</p>
<p><code>sudo devkit-disks --show-info /dev/sda</code></p>
<p>Changing the <strong>/dev/sda</strong> to match whatever disk you want to check against.  If you&#8217;re not sure what /dev device to look at, you can run</p>
<p><code>sudo fdisk -l</code></p>
<p>To get information on all the hard drives in your system.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/273/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/273/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/273/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=273&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/12/15/how-healthy-is-your-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>digital shredding</title>
		<link>http://rixbuntu.wordpress.com/2009/11/11/digital-shredding/</link>
		<comments>http://rixbuntu.wordpress.com/2009/11/11/digital-shredding/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 22:46:45 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=264</guid>
		<description><![CDATA[As a general disclaimer: Use this information at your own risk, and don’t blame me if you screw everything up. I posted recently in wipe your&#8230; about secure document deletion.  Until today, I hadn&#8217;t tried any of the methods mentioned in that post for securely deleting individual files.  So, since I needed to securely delete [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=264&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a general <strong>disclaimer</strong>: <em>Use this information at your own risk, and <strong>don’t blame me if you screw everything up.</strong></em></p>
<p>I posted recently in <a href="http://rixbuntu.wordpress.com/2009/09/25/wipe-your/">wipe your&#8230;</a> about secure document deletion.  Until today, I hadn&#8217;t tried any of the methods mentioned in that post for securely deleting individual files.  So, since I needed to securely delete some files, I finally gave it a go.  I used <strong>shred</strong> to delete some files.</p>
<p><span id="more-264"></span></p>
<p>To delete an individual file, try this command:</p>
<p><code>shred -uzv -n 1 [filename]</code></p>
<p>The options are as follows:</p>
<ul>
<li><strong>-u</strong> dictates removal of the file after the command finishes (although, I&#8217;m not sure why you <em>wouldn&#8217;t</em> want to remove a file after you have shredded it)</li>
<li><strong>-n</strong> followed by a number, dictates the number of passes (without this option, <strong>shred</strong> defaults to 25 passes)</li>
<li><strong>-v</strong> dictates a verbose output</li>
<li><strong>-z</strong> dictates a final pass (beyond the passes indicated with -n) of all zeros</li>
</ul>
<p>I use just one pass, but lots of people cling to the belief that magnetic moments can be recovered if not sufficiently overwritten.  After reading <em><a href="http://groups.google.com/group/nwalug/browse_thread/thread/3d0288f06ff4daf/88f44c0dcb148573?hl=en&amp;ie=UTF-8&amp;q=nwalug+wiping&amp;pli=1" target="_blank">Overwriting Hard Drive Data: The Great Wiping Controversy</a></em>, however, I gave up the notion of needing multiple passes.  I use the <strong>-n 1</strong> option to overwrite the data with a random string and then follow it up with the <strong>-z</strong> option to essentially cover <strong>shred</strong>&#8216;s tracks and make the drive space read like it had never been written to.</p>
<p>While the command above worked really well for deleting individual files (or even multiple files within a directory by using the star wild card &#8220;*&#8221; for the filename) it made for slow work drilling down through a very intricate directory structure to shred all the files in a given directory.  Unfortunately (or perhaps fortunately) <strong>shred</strong> doesn&#8217;t have a recursive option.</p>
<p>So I had to get creative.  I tried using <strong>find</strong> and piping the results to <strong>xargs shred</strong>, but I quickly discovered that <strong>xargs</strong> doesn&#8217;t have a convenient way of dealing with spaces in file names, (and I had lots of those).  So I went one step further and used the following command:</p>
<p><code>find [top-directory] -type f | sed 's/ /\\ /g' | xargs shred -zu -n 1</code></p>
<p>The <strong>find</strong> command pipes the stream to <strong>sed</strong> which replaces all of the spaces with escaped spaces and then pipes that output to <strong>xargs shred</strong>.  After you have recursively deleted all of the files in your directory using the above command, you can then remove the folders recursively with this command:</p>
<p><code>rm -rf [top-directory]</code></p>
<p>The <strong>-r</strong> option makes <strong>rm</strong> (short for &#8220;remove&#8221;) run recursively, and the <strong>-f</strong> option forces it to delete everything without prompting you.</p>
<p><strong>WARNING</strong>: these are<strong> very dangerous</strong> commands.  Just like I mentioned in <a href="../2009/09/25/wipe-your/">wipe your&#8230;</a>, use these commands <strong>at your own risk</strong>.  They result in <strong>permanent deletion</strong> of the files and directories in question.  Once you have run these commands, <em>there is no going back</em>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/264/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/264/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/264/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=264&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/11/11/digital-shredding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>Save online videos to your hard drive (using the tools you already have)</title>
		<link>http://rixbuntu.wordpress.com/2009/11/10/save-online-videos-to-your-hard-drive/</link>
		<comments>http://rixbuntu.wordpress.com/2009/11/10/save-online-videos-to-your-hard-drive/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 07:00:53 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=216</guid>
		<description><![CDATA[Linux Journal had a tech tip on how to save an online video to your hard drive: Tech Tip: Save an Online Video with your Browser (no extensions needed) This totally works. However, I found a simpler solution than their method. So far, every Flash video I play ends up in /tmp as an extention-less [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=216&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Linux Journal had a tech tip on how to save an online video to your hard drive: <a href="http://www.linuxjournal.com/content/save-online-video-browser-no-extensions" target="_blank">Tech Tip: Save an Online Video with your Browser (no extensions needed)</a></p>
<p>This totally works.  However, I found a simpler solution than their method.  So far, every Flash video I play ends up in /tmp as an extention-less file that begins with &#8220;Flash&#8221;.  Try running<br />
<code><br />
ls /tmp | grep Flash<br />
</code><br />
If you get just one return, then you can run<br />
<code><br />
find /tmp -name "Flash*" -exec cp '{}' flash.flv ';'<br />
</code><br />
This will find anything in /tmp that starts with &#8220;Flash&#8221; and copy it to your home folder as &#8220;flash.flv&#8221;.  Of course, you still have to wait until the video finishes buffering before running the <strong>find</strong> command.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=216&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/11/10/save-online-videos-to-your-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert any video file to DVD</title>
		<link>http://rixbuntu.wordpress.com/2009/11/09/convert-any-video-file-to-dvd/</link>
		<comments>http://rixbuntu.wordpress.com/2009/11/09/convert-any-video-file-to-dvd/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 21:07:50 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[convert]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[dvdauthor]]></category>
		<category><![CDATA[avi]]></category>
		<category><![CDATA[mkv]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[mpg]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[vob]]></category>
		<category><![CDATA[titleset]]></category>
		<category><![CDATA[video_ts]]></category>
		<category><![CDATA[brasero]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=217</guid>
		<description><![CDATA[Previously I posted, pointing to a tutorial on converting AVI files to DVD. The tutorial below builds on that one, using different tools for the conversion of the input file to an MPG format.  Please be aware that the DVD created by following these steps will not have a menu. Step 1: Convert the file [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=217&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Previously I posted,  <a title="AVI to DVD" href="http://rixbuntu.wordpress.com/2008/10/04/avi-to-dvd/">pointing to a tutorial on converting AVI files to DVD</a>.  The tutorial below builds on that one, using different tools for the conversion of the input file to an MPG format.  Please be aware that the DVD created by following these steps will not have a menu.</p>
<p><span id="more-217"></span></p>
<h3>Step 1: Convert the file to MPG</h3>
<p>Instead of using <strong>transcode</strong> to rip apart the input file and then multiplexing the new files back together with <strong>mplex</strong>, you can use <strong>ffmpeg</strong> to do the full conversion.  It should work for any video file.  I have had success using it on AVI, MKV and FLV files, regardless of the codecs inside the wrapper.</p>
<p>For the sake of this tutorial, we will generate an output file with the name &#8220;output.mpg&#8221; that we will then reference in other commands.  Change &#8220;input.file&#8221; to the name of the file that you want to convert.</p>
<p><code>ffmpeg -i input.file -target dvd -copyts -aspect 16:9 output.mpg</code></p>
<blockquote><p>Note: if your file&#8217;s aspect ration is 4:3, use that ratio instead of 16:9.  Also, if you need PAL instead of NTSC, change the <code>-target dvd</code> to <code>-target pal-dvd</code>.</p></blockquote>
<p>Now if you get an error (like many Ubuntu 9.04 users have) indicating “Unknown encoder ‘mpeg2video’”, try this trick that I found at <a title="ffmpeg Unknown encoder 'mpeg2video'" href="http://www.somekindofpaper.info/articles/2009/08/18/ffmpeg-unknown-encoder-mpeg2video.html" target="_blank">the Paper Inside blog</a>.  Basically, it wipes out the <strong>ffmpeg</strong> that you currently have (with stripped libraries) and reinstalls it with the unstripped libraries.  Be sure to capture the full line on the last command, as it goes on for quite a bit.</p>
<p><code>sudo apt-get purge ffmpeg</code></p>
<p><code>sudo apt-get update</code></p>
<p><code>sudo apt-get install libavcodec-unstripped-52 libavdevice-unstripped-52 libavformat-unstripped-52 libavutil-unstripped-49 libpostproc-unstripped-51 libswscale-unstripped-0 ffmpeg</code></p>
<blockquote><p>Note: Paper Inside&#8217;s command installs <code>libavcodec-unstripped-<strong>51</strong></code> and mine installs <code>libavcodec-unstripped-<strong>52</strong></code>.  I guess the repos must have changed since his post, as I couldn&#8217;t find 51.  The 52 library worked perfectly for me, though.</p></blockquote>
<h3>Step 2: Make a folder for your your titlesets to go into</h3>
<p>The folder needs to be in the same location as your MPG file you just made.  For this example, we&#8217;ll create a folder called DVD:</p>
<p><code>mkdir DVD</code></p>
<h3>Step 3: Make an XML file</h3>
<p>Again, in the same location as the file and folder you just made, create a text file called dvdauthor.xml:</p>
<p><code>touch dvdauthor.xml</code></p>
<p>And then populate that file with the following content, using your favorite text editor:</p>
<p><code>&lt;dvdauthor dest="DVD"&gt;<br />
&lt;vmgm /&gt;<br />
&lt;titleset&gt;<br />
&lt;titles&gt;<br />
&lt;pgc&gt;<br />
&lt;vob file="output.mpg" chapters="0,5:00,10:00,15:00,20:00"/&gt;<br />
&lt;/pgc&gt;<br />
&lt;/titles&gt;<br />
&lt;/titleset&gt;<br />
&lt;/dvdauthor&gt;<br />
</code></p>
<blockquote><p>Note the double quotes around the name of your MPG file.  You can make the chapters at whatever increments you want by editing the time values.  Also, if you want your finished DVD to play more than one video, just add a second pgc section to you dvdauthor.xml file like this:<br />
<code>&lt;dvdauthor dest="DVD"&gt;<br />
&lt;vmgm /&gt;<br />
&lt;titleset&gt;<br />
&lt;titles&gt;<br />
&lt;pgc&gt;<br />
&lt;vob file="output.mpg" chapters="0,5:00,10:00,15:00,20:00"/&gt;<br />
&lt;/pgc&gt;<strong><br />
&lt;pgc&gt;<br />
&lt;vob file="output2.mpg" chapters="0,5:00,10:00,15:00,20:00"/&gt;<br />
&lt;/pgc&gt;</strong><br />
&lt;/titles&gt;<br />
&lt;/titleset&gt;<br />
&lt;/dvdauthor&gt;<br />
</code></p></blockquote>
<h3>Step 4: Convert the MPG file to DVD titlesets</h3>
<p>This <strong>dvdauthor</strong> command will populate the DVD folder you made with an AUDIO_TS and VIDEO_TS folder and populate the VIDEO_TS folder with the .vob and other files necessary for DVD playback.<br />
<code><br />
dvdauthor -x dvdauthor.xml<br />
</code></p>
<h3>Step 5: Convert the titlesets into an ISO</h3>
<p>This <strong>mkisofs</strong> command will take the DVD titleset folder you just made and copy it over to an ISO file that will be ready to burn to a DVD.  The syntax for <strong>mkisofs</strong> is pretty straightforward, though different from some other input/output tools.  In order to generate my .iso files, I use the following options in <strong>mkisofs</strong>:</p>
<ul>
<li><strong>-o</strong> to indicate the output file location and name</li>
<li><strong>-V</strong> to set the volume label on the .iso file (which some DVD players and media players will display when they begin playing the DVD or ISO file)</li>
<li><strong>-dvd-video</strong> to generate a DVD-Video compliant UDF file system</li>
</ul>
<p>In the command below, change the output argument (after the <strong>-o</strong>) to whatever you want the ISO file to be called and the volume label argument (after the <strong>-V</strong>) to whatever you want the volume label to read. The final argument is the input, and it references the DVD folder that we made above (the one we populated with our titlesets,) so leave it the same unless you put your titlesets somewhere else.  If so, remember that the input for <strong>mkisofs</strong> should reference the folder that <em>contains</em> the AUDIO_TS and VIDEO_TS folders.</p>
<p><code>mkisofs -dvd-video -o mydvd.iso -V MYDVD DVD</code></p>
<h3>Step 6: Burn the ISO file to a disc</h3>
<p>Now you have a DVD image ready to be burned to a DVD disc.  You can check the image before burning by opening it with VLC.  It should play in VLC just like any other video file.  And while there are probably command line tools for burning to DVD, I always use Brasero&#8217;s &#8220;burn image&#8221; option.  You can burn the ISO to a DVD-RW disc to try it out in your DVD player before committing the image to a DVD-R.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=217&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/11/09/convert-any-video-file-to-dvd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>Get your goodies for Karmic</title>
		<link>http://rixbuntu.wordpress.com/2009/11/06/get-your-goodies-for-karmic/</link>
		<comments>http://rixbuntu.wordpress.com/2009/11/06/get-your-goodies-for-karmic/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 21:34:04 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[karmic koala]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=230</guid>
		<description><![CDATA[Get ubuntu-restricted-extras and a lot more.  Check out the Ubuntu Karmic Koala 9.10 Post Installation Guide.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=230&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Get ubuntu-restricted-extras and a lot more.  Check out the<a href="http://www.my-guides.net/en/content/view/172/26/" target="_blank"> Ubuntu Karmic Koala 9.10 Post Installation Guide</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/230/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/230/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/230/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=230&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/11/06/get-your-goodies-for-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>What&#8217;s in a name?  Whatever you want to put there.</title>
		<link>http://rixbuntu.wordpress.com/2009/11/02/whats-in-a-name-whatever-you-want-to-put-there/</link>
		<comments>http://rixbuntu.wordpress.com/2009/11/02/whats-in-a-name-whatever-you-want-to-put-there/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 07:00:51 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=181</guid>
		<description><![CDATA[Bulk rename files &#8211; from the GUI or the command line When I started usng Xubuntu last year, I was really impressed with the Thunar file manager&#8217;s plug-in for renaming multiple files.  In fact, when I switched over to using Gnome, I made sure to install Thunar to keep that amazing functionality.  I use it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=181&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>Bulk rename files &#8211; from the GUI or the command line</h3>
<p>When I started usng Xubuntu last year, I was really impressed with the Thunar file manager&#8217;s plug-in for <a href="http://thunar.xfce.org/pwiki/documentation/bulk_renamer" target="_blank">renaming multiple files</a>.  In fact, when I switched over to using Gnome, I made sure to install Thunar to keep that amazing functionality.  I use it all the time for cleaning up directories of media: pictures from digital cameras, music files, videos.  You can use it for folders as well as files.</p>
<p><span id="more-181"></span>For Ubuntu-type users (regardless of your distro), assuming you&#8217;re not already running an XFCE distro, you can find Thunar in the repositories.  Install it with Synaptic Package Manager or at the command line with</p>
<p><code>sudo apt-get install thunar</code></p>
<p>But what if you want to do some bulk renaming from the command line?  With an amazing tool like Thunar&#8217;s Bulk Rename, you probably wouldn&#8217;t have to, but one of the best things about free software is that you can almost always find another way to skin the cat.</p>
<p>I recently ran across the appropriately named <strong>rename</strong> command.  Check out this tutorial on how to make Perl-based Debian package work for you: <a href="http://tips.webdesign10.com/how-to-bulk-rename-files-in-linux-in-the-terminal" target="_blank">How to bulk rename files from the terminal</a>.</p>
<p>And it also looks like KDE has a GUI bulk renamer called <a href="http://www.krename.net/" target="_blank">Krename</a>.</p>
<p>Try them all and let the rename game begin.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/181/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/181/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/181/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=181&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/11/02/whats-in-a-name-whatever-you-want-to-put-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>Use chntpw to reset a lost Windows password</title>
		<link>http://rixbuntu.wordpress.com/2009/10/31/use-chntpw-to-reset-a-lost-windows-password/</link>
		<comments>http://rixbuntu.wordpress.com/2009/10/31/use-chntpw-to-reset-a-lost-windows-password/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 07:00:28 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=171</guid>
		<description><![CDATA[Check out the following articles for how to use a Linux tool called chntpw (which being translated means: change NT password) to delete a Windows password. Changing NT passwords with Linux and CHNTPW Change Windows Password from Ubuntu/Ubuntu Live CD I have used a live-cd that I found here to delete passwords before.  Basically, it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=171&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Check out the following articles for how to use a Linux tool called <strong>chntpw</strong> (which being translated means: <strong>ch</strong>ange <strong>NT p</strong>ass<strong>w</strong>ord) to delete a Windows password.</p>
<ul>
<li><a href="http://www.thelinuxsociety.org.uk/content/changing-nt-passwords-with-linux-and-chntpw" target="_blank">Changing NT passwords with Linux and CHNTPW</a></li>
<li><a href="http://agnipulse.com/2009/01/change-windows-password-from-ubuntuubuntu-live-cd/" target="_blank">Change Windows Password from Ubuntu/Ubuntu Live CD</a></li>
</ul>
<p>I have used a live-cd that I found <a title="Offline NT Password &amp; Registry Editor" href="http://home.eunet.no/pnordahl/ntpasswd/" target="_self">here</a> to delete passwords before.  Basically, it boots up a minimal Linux instance and uses the <strong>chntpw</strong> to delete the passwords.  This tool has the added benefit of automatically finding the location of the SAM file.  The guides above, however, have the benefit of working from any live-cd that has an internet connection (so you can use apt-get to install chntpw).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=171&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/10/31/use-chntpw-to-reset-a-lost-windows-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
		<item>
		<title>Karmic Koala released today</title>
		<link>http://rixbuntu.wordpress.com/2009/10/29/karmic-koala-released-today/</link>
		<comments>http://rixbuntu.wordpress.com/2009/10/29/karmic-koala-released-today/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 23:04:58 +0000</pubDate>
		<dc:creator>Rix</dc:creator>
				<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://rixbuntu.wordpress.com/?p=175</guid>
		<description><![CDATA[Get it via torrent.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=175&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Get it via <a href="http://releases.ubuntu.com/karmic/" target="_blank">torrent</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rixbuntu.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rixbuntu.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rixbuntu.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rixbuntu.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rixbuntu.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rixbuntu.wordpress.com/175/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rixbuntu.wordpress.com/175/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rixbuntu.wordpress.com/175/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rixbuntu.wordpress.com&amp;blog=4320678&amp;post=175&amp;subd=rixbuntu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rixbuntu.wordpress.com/2009/10/29/karmic-koala-released-today/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b1588abe3cbb6089412a4f73afefecb0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Rix</media:title>
		</media:content>
	</item>
	</channel>
</rss>
