<?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:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>My Thought Spot &#187; Linux</title>
	<atom:link href="http://www.mythoughtspot.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mythoughtspot.com</link>
	<description>A place to store my thoughts until I figure out what to do with them.</description>
	<lastBuildDate>Tue, 06 Jul 2010 11:53:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.4" -->
		<copyright>2006-2008 </copyright>
		<managingEditor>david@mythoughtspot.com (David Peach)</managingEditor>
		<webMaster>david@mythoughtspot.com (David Peach)</webMaster>
		<category>posts</category>
		<ttl>1440</ttl>
		<itunes:keywords>personal, random</itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>A very random show highlighting recent posts on the MyThoughSpot.com website. There really is no telling what you will find when you listen to this podcast.</itunes:summary>
		<itunes:author>David Peach</itunes:author>
		<itunes:category text="Society &amp; Culture">
	<itunes:category text="Personal Journals"/>
</itunes:category>
<itunes:category text="Society &amp; Culture">
	<itunes:category text="Philosophy"/>
</itunes:category>
		<itunes:owner>
			<itunes:name>David Peach</itunes:name>
			<itunes:email>david@mythoughtspot.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>clean</itunes:explicit>
		<itunes:image href="http://www.mythoughtspot.com/wp-content/uploads/icon_helmet.jpg" />
		<image>
			<url>http://www.mythoughtspot.com/wp-content/uploads/icon_helmet_sm.jpg</url>
			<title>My Thought Spot</title>
			<link>http://www.mythoughtspot.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Dodged a bullet in the shape of a hard drive</title>
		<link>http://www.mythoughtspot.com/2009/11/26/dodged-a-bullet-in-the-shape-of-a-hard-drive/</link>
		<comments>http://www.mythoughtspot.com/2009/11/26/dodged-a-bullet-in-the-shape-of-a-hard-drive/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 04:45:44 +0000</pubDate>
		<dc:creator>dpeach</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[slackware]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.mythoughtspot.com/?p=1581</guid>
		<description><![CDATA[A few months ago I had trouble installing a newer version of Linux on my computer. This is my main machine and houses the vast majority of our data. After the install failed I tried a different distribution of Linux. While most everything worked fine, there was one issue that haunted me. The hard drive [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago I had trouble installing a newer version of Linux on my computer. This is my main machine and houses the vast majority of our data. After the install failed I tried a different distribution of Linux. While most everything worked fine, there was one issue that haunted me. The hard drive partition that we have our photos stored on would not mount (I could not read from it). In fact as soon as I tried to mount the partition the whole machine would lock up instantly. Two other partitions on that drive worked without any problems.</p>
<p>I was hoping that the newer version of <a title="Kubuntu" href="http://www.kubuntu.org/">Kubuntu</a> would take care of the problem. After installing it I was still getting the same behavior I had experienced with <a title="Slackware Linux" href="http://slackware.com/">Slackware</a>; instant lockup as soon as I tried to touch the partition.</p>
<p>In preparation for a new external hard drive purchase I decided to dig into this problem.</p>
<p>With the drive completely unmounted (even the partitions that were working fine) I ran an fsck check on the partitions. Since the partition is an ext3 file system I ran the following command:</p>
<pre style="text-align: left; padding-left: 30px;">sudo fsck.ext3 /dev/sdb2</pre>
<p><img class="alignright size-full wp-image-1582" title="Western Digital External Hard Drive" src="http://www.mythoughtspot.com/wp-content/uploads/2009/11/wd_hd.jpg" alt="Western Digital External Hard Drive" />Sudo gives me root privileges. fsck.ext3 is the fs (file system) ck (check) specific for ext3 formatted partitions. The /dev/sdb2 means that I ran it on my second drive and second partition of that drive.</p>
<p>After putting in my root password I got a bunch of output that said:</p>
<pre style="padding-left: 30px;">Free blocks count wrong for group #XX ...</pre>
<p>It asked it I wanted to fix it and I replied yes to the couple of hundred requests.</p>
<p>Apparently the drive was not cleanly unmounted. By running fsck I allowed it to clean up the corrupted table that said where all the data lived. While my drive is a traditional internal drive, this is a good lesson as to why you should always eject USB drives, or any type of media, before popping them out of your computer. That is true for whatever operating system you are running.</p>
<p>I am pleased to have recovered the 28 GB of photos that I had on there. I have most of them backed up in various locations, but do not have a full backup in one place. Since today is Thanksgiving I guess I should say I am thankful for having finally gotten to the bottom of this and that tomorrow is Black Friday and I am able to pick up an external HD that will back up all the computers on my network with room to spare.</p>
<p>Now, where is that coupon code for those online backup solutions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mythoughtspot.com/2009/11/26/dodged-a-bullet-in-the-shape-of-a-hard-drive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Famous Friday: OpenOffice.org Training</title>
		<link>http://www.mythoughtspot.com/2007/10/06/famous-friday-openofficeorg-training/</link>
		<comments>http://www.mythoughtspot.com/2007/10/06/famous-friday-openofficeorg-training/#comments</comments>
		<pubDate>Sun, 07 Oct 2007 04:15:40 +0000</pubDate>
		<dc:creator>dpeach</dc:creator>
				<category><![CDATA[Websites]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenOffice.org]]></category>

		<guid isPermaLink="false">http://www.mythoughtspot.com/2007/10/06/famous-friday-openofficeorg-training/</guid>
		<description><![CDATA[I have been an OpenOffice.org fan since 2000. It has been better and worse as a product at different times in its history. There are forums in which I have participated and spewed as much knowledge as I can to other members. I have been somewhat of an OOo evangelist and have given presentations at [...]]]></description>
			<content:encoded><![CDATA[<p>I have been an <a href="http://www.openoffice.org" title="OpenOffice.org" target="_blank">OpenOffice.org</a> fan since 2000. It has been better and worse as a product at different times in its history. There are <a href="http://www.oooforum.org" title="OOo Forum" target="_blank">forums in which I have participated</a> and spewed as much knowledge as I can to other members. I have been somewhat of an OOo evangelist and have given presentations at different meetings (Linux enthusiast groups and corporate groups) as to why people should seriously consider OOo.</p>
<p><a href="http://openoffice.blogs.com/" title="OpenOffice.org Training" target="_blank">I started reading a blog</a> a few months back that has helped me with some of the more detailed uses of OOo. Though I certainly don&#8217;t have as much heavy daily use for OOo as some people, I have enjoyed reading <a href="http://openoffice.blogs.com/" title="OpenOffice.org Training" target="_blank">Solveig Haugland&#8217;s OpenOffice.org Training blog</a>. She has some very detailed how-to articles at the site as well as some great articles on <a href="http://openoffice.blogs.com/openoffice/switching_to_openoffice/index.html" title="Switching to OOo" target="_blank">how to make the transition to OOo</a>.</p>
<p>If you see an article that does not apply to you at the time, just skim over it and know that it is there. You might be surprised by how often you find yourself going back to the site to check out a how-to that you previously skimmed over. Solveig has a great way of <a href="http://openoffice.blogs.com/openoffice/2006/09/starting_page_n.html" title="Page numbering help in OOo" target="_blank">simplifying a complex process</a>.</p>
<p>There is a lot of good stuff in her archives. Be sure to search around for tutorials. I used to hit the forums when I needed help. Now, before I go to the forums, <a href="http://openoffice.blogs.com/" title="OpenOffice.org Training" target="_blank">I check out Solveig&#8217;s site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mythoughtspot.com/2007/10/06/famous-friday-openofficeorg-training/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
