<?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>blog.autopsy.se &#187; Linux</title>
	<atom:link href="http://blog.autopsy.se/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.autopsy.se</link>
	<description>basically; it sucks. everything sucks. but.. in a good way..</description>
	<lastBuildDate>Wed, 23 Nov 2011 18:25:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>New server case sucks! Part one</title>
		<link>http://blog.autopsy.se/2010/05/new-server-case-sucks-part-one/</link>
		<comments>http://blog.autopsy.se/2010/05/new-server-case-sucks-part-one/#comments</comments>
		<pubDate>Mon, 17 May 2010 13:55:58 +0000</pubDate>
		<dc:creator>ube</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[case]]></category>
		<category><![CDATA[heatsink]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[RAID]]></category>

		<guid isPermaLink="false">http://blog.autopsy.se/?p=102</guid>
		<description><![CDATA[Well, been a long time since I did anything computer related, at least something that takes more than five minutes to fix (excluding surfing the web from my couch). But now I decided to replace my Antec P182 case with a Chenbro ES34069. I've been looking for a mini-itx case and was considering on going [...]]]></description>
			<content:encoded><![CDATA[<p>Well, been a long time since I did anything computer related, at least something that takes more than five minutes to fix (excluding surfing the web from my couch). But now I decided to replace my Antec P182 case with a Chenbro ES34069.<span id="more-102"></span></p>
<p>I've been looking for a mini-itx case and was considering on going for some atom based mobo, but then I found the ZOTAC G43-ITX SOCKET 775 MINI-ITX which has everything I need to convert from my old system: 5 SATA ports and socket 775. So with a little bit of luck I can use my "old" Q6600 processor. The specs for the mobo states only 65W TDP but I've found a <a href="http://www.zotacusa.com/forum/topic/2434-g43itx-a-e-65w-tdp-max/" target="_blank">post at their forums</a> stating that with sufficient cooling everyting "should" be ok. So problem one done.</p>
<p>Problem two:<br />
I need to find a low profile heatsink that supports 95W processors. I should probably get the Chenbro case and the mobo and then do some measurements on which height  the heatsink can have.</p>
<p><a href="http://blog.flowbuzz.com/2008/06/building-thing-nas-project-part-2.html" target="_blank">Found this build description online</a> so I know what I have to look forward to for now.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.autopsy.se/2010/05/new-server-case-sucks-part-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl 5.8.8 sucks, or the lack of Perl 5.10 on my box sucks! Really</title>
		<link>http://blog.autopsy.se/2009/01/perl-588-sucks-or-the-lack-of-perl-510-on-my-box-sucks-really/</link>
		<comments>http://blog.autopsy.se/2009/01/perl-588-sucks-or-the-lack-of-perl-510-on-my-box-sucks-really/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 01:44:34 +0000</pubDate>
		<dc:creator>ube</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Named Capture]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[RegExp]]></category>
		<category><![CDATA[Sucks! (Really!)]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://blog.autopsy.se/?p=55</guid>
		<description><![CDATA[Been struggling with a regexp using perl since I couldn't get sed to work as I wanted (mainly "+" sucks with sed). These are my tests: # echo cold.case.S01E12.qweqwe &#124;perl -pe 's/^(?:(.*)\.(\d+)x(\d+).*)&#124;(?:(.*)\.S(\d+)E(\d+)).*$/\1 \2 \3 \4 \5 \6 \7/' cold.case    01 12 #echo cold_case.1x12 &#124; perl -pe 's/^(?:(.*)\.(\d+)x(\d+).*)&#124;(?:(.*)\.S(\d+)E(\d+)).*$/\1 \2 \3 \4 \5 \6 \7/' cold_case 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Been struggling with a regexp using perl since I couldn't get sed to work as I wanted (mainly "+" sucks with sed).</p>
<p><span id="more-55"></span></p>
<p>These are my tests:</p>
<p># echo cold.case.S01E12.qweqwe |perl -pe 's/^(?:(.*)\.(\d+)x(\d+).*)|(?:(.*)\.S(\d+)E(\d+)).*$/\1 \2 \3 \4 \5 \6 \7/'<br />
cold.case    01 12<br />
#echo cold_case.1x12 | perl -pe 's/^(?:(.*)\.(\d+)x(\d+).*)|(?:(.*)\.S(\d+)E(\d+)).*$/\1 \2 \3 \4 \5 \6 \7/'<br />
cold_case 1 12</p>
<p>Notice the three spaces in front of cold.case? It's because I can't get perl to do an alternate match. A friend came up with the following line:<br />
perl -pe 's/(?:^(?&lt;a&gt;.*)\.(?&lt;b&gt;[0-9])+x(?&lt;c&gt;[0-9]+).*$)|(?:^(?&lt;a&gt;.*)\.S(?&lt;b&gt;[0-9]+)E(?&lt;c&gt;[0-9]+).*$)/$+{a} $+{b} $+{c}/'<br />
Which works just fine, if you're running Perl 5.10, and I'm not! Or, it's not in the Gentoo repository yet. So I'll have to wait. Crap!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.autopsy.se/2009/01/perl-588-sucks-or-the-lack-of-perl-510-on-my-box-sucks-really/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mdadm sucks</title>
		<link>http://blog.autopsy.se/2008/12/mdadm-sucks/</link>
		<comments>http://blog.autopsy.se/2008/12/mdadm-sucks/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 02:47:54 +0000</pubDate>
		<dc:creator>ube</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mdadm]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[Sundsvall]]></category>
		<category><![CDATA[Sweden]]></category>

		<guid isPermaLink="false">http://blog.autopsy.se/?p=10</guid>
		<description><![CDATA[A couple of months ago my box at home died. I came back home for vacation two days ago and started to check why it doesn't start.. One of the disks had been marked as failed (or acctually two, but only one is dead), I was wondering of removing all the data by re-creating the [...]]]></description>
			<content:encoded><![CDATA[<p>A couple of months ago my box at home died. I came back home for vacation two days ago and started to check why it doesn't start.. One of the disks had been marked as failed (or acctually two, but only one is dead), I was wondering of removing all the data by re-creating the array and scrapping ~3Tb data.. But when I woke up from a nap this evening I thought that maybe the -f flag works with mdadm as well:</p>
<p># mdadm -A -f /dev/md0 /dev/sd[acdefgh]1</p>
<p>Did the trick, it resetted the failed status on sdh1</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.autopsy.se/2008/12/mdadm-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

