<?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>kcirick&#039;s Arch Linux Blog</title>
	<atom:link href="http://archlinux.me/kcirick/feed/" rel="self" type="application/rss+xml" />
	<link>http://archlinux.me/kcirick</link>
	<description>Just another Arch Linux Blog site</description>
	<lastBuildDate>Tue, 25 Jan 2011 01:32:39 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Macbook Fn hotkeys with DWM</title>
		<link>http://archlinux.me/kcirick/2011/01/07/macbook-fn-hotkeys-with-dwm/</link>
		<comments>http://archlinux.me/kcirick/2011/01/07/macbook-fn-hotkeys-with-dwm/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 04:59:32 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=84</guid>
		<description><![CDATA[Every since I started using DWM (I suspect I will post about this later), I&#8217;ve been looking for ways to minimize dependence on external programs, such as dmenu or conky. Getting rid of pommed is another thing, because I don&#8217;t need many of the functionalities that pommed have. All I need is to map a [...]]]></description>
				<content:encoded><![CDATA[<p>Every since I started using DWM (I suspect I will post about this later), I&#8217;ve been looking for ways to minimize dependence on external programs, such as dmenu or conky. Getting rid of pommed is another thing, because I don&#8217;t need many of the functionalities that pommed have. All I need is to map a couple of function keys to useful applications. Here I will just give an example on how to map the previous, next, and play/pause button on macbooks (F7, F9, and F8 respectively). To do this in DWM, you need to edit config.h as such:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#include &amp;lt;X11/XF86keysym.h&amp;gt;</span>
&nbsp;
<span style="color: #993333;">static</span> <span style="color: #993333;">const</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>mpdprev<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #ff0000;">&quot;ncmpcpp&quot;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;prev&quot;</span><span style="color: #339933;">,</span> NULL <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #993333;">static</span> <span style="color: #993333;">const</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>mpdtoggle<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #ff0000;">&quot;ncmpcpp&quot;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;toggle&quot;</span><span style="color: #339933;">,</span> NULL <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #993333;">static</span> <span style="color: #993333;">const</span> <span style="color: #993333;">char</span> <span style="color: #339933;">*</span>mpdnext<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #ff0000;">&quot;ncmpcpp&quot;</span><span style="color: #339933;">,</span> <span style="color: #ff0000;">&quot;next&quot;</span><span style="color: #339933;">,</span> NULL <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #993333;">static</span> Key keys<span style="color: #009900;">&#91;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span>
   ...
   <span style="color: #009900;">&#123;</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span>     XF86XK_AudioPrev<span style="color: #339933;">,</span>          spawn<span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>.<span style="color: #202020;">v</span> <span style="color: #339933;">=</span> mpdprev <span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
   <span style="color: #009900;">&#123;</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span>     XF86XK_AudioPlay<span style="color: #339933;">,</span>          spawn<span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>.<span style="color: #202020;">v</span> <span style="color: #339933;">=</span> mpdtoggle <span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
   <span style="color: #009900;">&#123;</span> <span style="color: #0000dd;">0</span><span style="color: #339933;">,</span>     XF86XK_AudioNext<span style="color: #339933;">,</span>          spawn<span style="color: #339933;">,</span> <span style="color: #009900;">&#123;</span>.<span style="color: #202020;">v</span> <span style="color: #339933;">=</span> mpdnext <span style="color: #009900;">&#125;</span> <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Using this method, I can now use function keys to brighten/darken LCD screen, control MPD, turn volume up/down, and eject cd&#8217;s!</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2011/01/07/macbook-fn-hotkeys-with-dwm/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fan control on Macbook</title>
		<link>http://archlinux.me/kcirick/2010/09/05/fan-control-on-macbook/</link>
		<comments>http://archlinux.me/kcirick/2010/09/05/fan-control-on-macbook/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 20:35:38 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=70</guid>
		<description><![CDATA[One thing that is not working very well on Macbooks is the fan control. On top of the machine running warmer than under OS-X, the fans don&#8217;t kick in until it&#8217;s very hot. To remedy this, you can write a program to do this. I got a source code of existing package called cmp-daemon (http://aur.archlinux.org/packages.php?ID=21391) [...]]]></description>
				<content:encoded><![CDATA[<p>One thing that is not working very well on Macbooks is the fan control. On top of the machine running warmer than under OS-X, the fans don&#8217;t kick in until it&#8217;s very hot.</p>
<p>To remedy this, you can write a program to do this. I got a source code of existing package called cmp-daemon (<a href="http://aur.archlinux.org/packages.php?ID=21391">http://aur.archlinux.org/packages.php?ID=21391</a>) and tailored it to my machine (The fan RPM is a linear function of CPU temperature, but you might want to change it to step function, for example).</p>
<p>The set-up is pretty simple. There is the source code cmp-daemon.c, and a bash script to start|stop|restart the daemon: cmp-daemon.sh (see attachments). Just follow these steps:</p>
<ol>
<li>Edit cmp-daemon.c to your liking</li>
<li>Compile:
<pre style="border:1px solid #999999;background: #f6f9fc">$ gcc -Wall cmp-daemon.c -o cmp-daemon</pre>
</li>
<li>Copy the compiled program:
<pre style="border:1px solid #999999;background: #f6f9fc"># cp cmp-daemon /usr/sbin/</pre>
</li>
<li>Copy the daemon script (make sure it is executable):
<pre style="border:1px solid #999999;background: #f6f9fc"># cp cmp-daemon.sh /etc/rc.d/cmp-daemon</pre>
</li>
<li>Start daemon:
<pre style="border:1px solid #999999;background: #f6f9fc"># /etc/rc.d/cmp-daemon start</pre>
<p>or edit /etc/rc.conf:</p>
<pre style="border:1px solid #999999;background: #f6f6fc">DAEMONS=(.. cmp-daemon ..)</pre>
</li>
</ol>
<p><b>Attachments:</b><br />
cmp-daemon.c (<a href="http://www.physics.carleton.ca/~rueno/files/arch/cmp-daemon.c">Download</a>):<br />
cmp-daemon.sh (<a href="http://www.physics.carleton.ca/~rueno/files/arch/cmp-daemon.sh">Download</a>):</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/09/05/fan-control-on-macbook/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Arch on Macbook</title>
		<link>http://archlinux.me/kcirick/2010/09/03/arch-on-macbook/</link>
		<comments>http://archlinux.me/kcirick/2010/09/03/arch-on-macbook/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 01:43:02 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=67</guid>
		<description><![CDATA[I installed Arch linux on my macbook (dual boot with Snow Leopard, I dedicated 45GB to Arch with 5GB Swap). A small hiccup so far, but things are working out so far. I still need to set up a few more things, but basic things are set up now. I think I will write up [...]]]></description>
				<content:encoded><![CDATA[<p>I installed Arch linux on my macbook (dual boot with Snow Leopard,  I dedicated 45GB to Arch with 5GB Swap).</p>
<p>A small hiccup so far, but things are working out so far. I still need to set up a few more things, but basic things are set up now. I think I will write up a wiki page once I am happy with everything.</p>
<p>Also, I found out that my macbook&#8217;s generation is Macbook4,2 (Late 2008 model) through <a href="http://en.wikipedia.org/wiki/Macbook">wikipedia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/09/03/arch-on-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arch cycling jersey</title>
		<link>http://archlinux.me/kcirick/2010/08/27/arch-cycling-jersey/</link>
		<comments>http://archlinux.me/kcirick/2010/08/27/arch-cycling-jersey/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 13:51:54 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[Cycling]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=62</guid>
		<description><![CDATA[As an Arch linux user and a cyclist, I couldn&#8217;t help but to notice a thread started by a user Chokkan about custom-designed Arch linux cycling jersey. The design is truly great and it&#8217;s definitely something I can wear for every ride. Here&#8217;s the design: If you want to have an input to the design [...]]]></description>
				<content:encoded><![CDATA[<p>As an Arch linux user and a cyclist, I couldn&#8217;t help but to notice a thread started by a user Chokkan about <a href="https://bbs.archlinux.org/viewtopic.php?pid=816404">custom-designed Arch linux cycling jersey</a>. The design is truly great and it&#8217;s definitely something I can wear for every ride.</p>
<p>Here&#8217;s the design:</p>
<p><a href="http://farm5.static.flickr.com/4097/4928540949_57e4525c4a_o.jpg"> <img src="http://farm5.static.flickr.com/4097/4928540949_fc1987972b.jpg" alt="Arch cycling jersey" width="300" /></a></p>
<p>If you want to have an input to the design or if you are interested, just follow the forum thread (link provided above).</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/08/27/arch-cycling-jersey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screenshots II</title>
		<link>http://archlinux.me/kcirick/2010/08/24/screenshots-ii/</link>
		<comments>http://archlinux.me/kcirick/2010/08/24/screenshots-ii/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 18:20:01 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[ze5600]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=53</guid>
		<description><![CDATA[Clean: Dirty: This is on my HP Laptop.  Here is the list of what is running: i3 WM conky vim inside terminal (rxvt-unicode) evince]]></description>
				<content:encoded><![CDATA[<p><strong>Clean:</strong><br />
<a href="http://lh3.ggpht.com/_dKoYM5KJ-2k/THPurE0XSeI/AAAAAAAABWQ/NDHwV_08RfA/2010-08-24-115716_1024x768_scrot.png"><img src="http://lh3.ggpht.com/_dKoYM5KJ-2k/THPurE0XSeI/AAAAAAAABWQ/NDHwV_08RfA/s400/2010-08-24-115716_1024x768_scrot.png" alt="" /></a><br />
<strong>Dirty:</strong><br />
<a href="http://lh6.ggpht.com/_dKoYM5KJ-2k/THPureDNXiI/AAAAAAAABWU/ELCBkOT4E2w/2010-08-24-120150_1024x768_scrot.png"><img src="http://lh6.ggpht.com/_dKoYM5KJ-2k/THPureDNXiI/AAAAAAAABWU/ELCBkOT4E2w/s400/2010-08-24-120150_1024x768_scrot.png" alt="" /></a><br />
<span id="more-53"></span><br />
This is on my HP Laptop.  Here is the list of what is running:</p>
<ul>
<li>i3 WM</li>
<li>conky</li>
<li>vim inside terminal (rxvt-unicode)</li>
<li>evince</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/08/24/screenshots-ii/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CPU&amp;Heatsink in Laptops</title>
		<link>http://archlinux.me/kcirick/2010/08/20/cpuheatsink-in-laptops/</link>
		<comments>http://archlinux.me/kcirick/2010/08/20/cpuheatsink-in-laptops/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 18:07:15 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[ze5600]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=49</guid>
		<description><![CDATA[The laptop (ze5600) has been running hot and stays hot even with the fan full blast. I figured it was the dust, so I wanted to clean it out  in the fan system  (it had never been cleaned). I found the service manual for the laptop, and decided to follow it to do it myself. Of [...]]]></description>
				<content:encoded><![CDATA[<p>The laptop (ze5600) has been running hot and stays hot even with the fan full blast. I figured it was the dust, so I wanted to clean it out  in the fan system  (it had never been cleaned). I found the <a href="www.hp.com/ctg/Manual/c00246219.pdf">service manual</a> for the laptop, and decided to follow it to do it myself.</p>
<p>Of course being the first time opening a laptop, I was trying to be as careful as possible, but not everything goes smoothly the first time. It turns out that the original thermo paste completely glued the CPU and the thermal sink together. I had no idea what to do, so I took it to the local shop and the guy just plied it open with a small screw driver.</p>
<p>So after I got home, I just scraped off the old paste, cleaned it using isopropyl alcohol, and reapplied the new thermo paste (Arctic Cooling MX-2), and put it all back together.</p>
<p>The laptop works great, the fan goes off when the temperature rises, it actually cools the CPU, then turns off when it&#8217;s cool enough. Mission accomplished in my books</p>
<p><span id="more-49"></span>Lessons I learned from this little project:</p>
<ol>
<li>You <em>can</em> take a laptop apart if you have a good manual</li>
<li>Don&#8217;t mess with the CPU unless if you really need to (I didn&#8217;t really need to, but I pulled it off with the thermal sink</li>
<li>The computer doesn&#8217;t even go to BIOS if you boot without a properly installed CPU. The screen stays black, but the fan and LED goes on.</li>
<li>Despite what people say, CPUs aren&#8217;t that fragile. If you have some pins bent, just bend it back (to certain extent).</li>
<li>This laptop has about 50 screws you need to unscrew to get inside</li>
</ol>
<p>I think that&#8217;s about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/08/20/cpuheatsink-in-laptops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screenshots I</title>
		<link>http://archlinux.me/kcirick/2010/08/19/screenshots-i/</link>
		<comments>http://archlinux.me/kcirick/2010/08/19/screenshots-i/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 16:15:11 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[505n]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=25</guid>
		<description><![CDATA[Clean: Dirty: This is on my HP desktop. Here is the list of what&#8217;s running: FVWM 2.5.30 Conky stalonetray XFCE Terminal Google Chrome (iconified) Gnumeric Archey]]></description>
				<content:encoded><![CDATA[<p><strong>Clean:</strong><br />
<a href="http://lh4.ggpht.com/_dKoYM5KJ-2k/TGcwUtpq1aI/AAAAAAAABVg/m5TO97Hd4MI/SS_Clean.png"><img src="http://lh4.ggpht.com/_dKoYM5KJ-2k/TGcwUtpq1aI/AAAAAAAABVg/m5TO97Hd4MI/s400/SS_Clean.png" /></a></p>
<p><strong>Dirty:</strong><br />
<a href="http://lh5.ggpht.com/_dKoYM5KJ-2k/TGcwb6LmeyI/AAAAAAAABVo/ZKsLP_ciSgo/SS_Dirty.pn"><img src="http://lh5.ggpht.com/_dKoYM5KJ-2k/TGcwb6LmeyI/AAAAAAAABVo/ZKsLP_ciSgo/s400/SS_Dirty.png" /></a><br />
<span id="more-25"></span><br />
This is on my HP desktop. Here is the list of what&#8217;s running:</p>
<ul>
<li>FVWM 2.5.30</li>
<li>Conky</li>
<li>stalonetray</li>
<li>XFCE Terminal</li>
<li>Google Chrome (iconified)</li>
<li>Gnumeric</li>
<li><a href="http://aur.archlinux.org/packages.php?ID=32556">Archey</a>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/08/19/screenshots-i/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bootchart</title>
		<link>http://archlinux.me/kcirick/2010/08/19/8/</link>
		<comments>http://archlinux.me/kcirick/2010/08/19/8/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:46:17 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[505n]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=8</guid>
		<description><![CDATA[This is the bootchart for my HP desktop: How to produce bootchart: 1. Install bootchart pacman bootchart 2. Edit /boot/grub/menu.lst Add the line &#8220;init=/sbin/bootchartd&#8221; to the kernel line. So the entry looks like: # Arch Linux Modified title Arch Linux 2.6.34.2 Modified Bootchart root &#40;hd0,0&#41; kernel /vmlinuz26-ARCHMOD34 root=/dev/disk/by-uuid/fa339e13-3a86-4c65-b19a-615827aee799 ro init=/sbin/bootchartd initrd /kernel26-ARCHMOD34.img It is recommended [...]]]></description>
				<content:encoded><![CDATA[<p><strong>This is the bootchart for my HP desktop:</strong><br />
<a href="http://archlinux.me/kcirick/files/2010/08/bootchart31.png"><img class="alignnone size-full wp-image-17" src="http://archlinux.me/kcirick/files/2010/08/bootchart31.png" alt="bootchart3" width="236" height="479" /></a><br />
<span id="more-8"></span></p>
<h3>How to produce bootchart:</h3>
<p><strong>1. Install bootchart</strong></p>
<pre style="border:1px solid #999999;background: #f6f9fc">pacman bootchart</pre>
<p><strong>2. Edit /boot/grub/menu.lst</strong><br />
Add the line &#8220;init=/sbin/bootchartd&#8221; to the kernel line. So the entry looks like:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Arch Linux Modified</span>
title  Arch Linux 2.6.34.2 Modified Bootchart
root   <span style="color: #7a0874; font-weight: bold;">&#40;</span>hd0,<span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#41;</span>
kernel <span style="color: #000000; font-weight: bold;">/</span>vmlinuz26-ARCHMOD34 <span style="color: #007800;">root</span>=<span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>disk<span style="color: #000000; font-weight: bold;">/</span>by-uuid<span style="color: #000000; font-weight: bold;">/</span>fa339e13-3a86-4c65-b19a-615827aee799 ro <span style="color: #007800;">init</span>=<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>bootchartd
initrd <span style="color: #000000; font-weight: bold;">/</span>kernel26-ARCHMOD34.img</pre></td></tr></table></div>

<p>It is recommended to make a new entry so that you don&#8217;t have to keep editing the menu.lst file whenever you want to produce the bootchart.</p>
<p><strong>3. Produce the bootchart</strong></p>
<pre style="border:1px solid #999999;background: #f6f9fc">bootchart-render</pre>
<p>This will produce .png file in the current directory.</p>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/08/19/8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Current Arch Systems</title>
		<link>http://archlinux.me/kcirick/2010/08/19/my-current-arch-systems/</link>
		<comments>http://archlinux.me/kcirick/2010/08/19/my-current-arch-systems/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 14:58:33 +0000</pubDate>
		<dc:creator>kcirick</dc:creator>
				<category><![CDATA[505n]]></category>
		<category><![CDATA[macbook]]></category>
		<category><![CDATA[ze5600]]></category>

		<guid isPermaLink="false">http://archlinux.me/kcirick/?p=4</guid>
		<description><![CDATA[Here are the systems I have Arch Linux installed and running. In this blog I will be posting things that I learnt from these systems, so it would be good to introduce them. Desktop: HP Pavilion 505n This is the computer that I got when I got into my university in 2003 (so seven years [...]]]></description>
				<content:encoded><![CDATA[<p>Here are the systems I have Arch Linux installed and running. In this blog I will be posting things that I learnt from these systems, so it would be good to introduce them.</p>
<h3>Desktop:</h3>
<p><strong>HP Pavilion 505n</strong></p>
<p>This is the computer that I got when I got into my university in 2003 (so seven years old now). It still runs great, and aside from graphics card and ram upgrades, nothing has been changed. I only have Arch Linux installed on it (single boot).</p>
<ul>
<li>Intel Celeron 2.20 GHz</li>
<li>512MB RAM</li>
<li>60GB Hard Drive</li>
<li>Intel 82801DB-ICH4 Sound Card</li>
<li>NVIDIA GeForce FX5500 Graphics Card</li>
<li>Samsung 713N Monitor. 1280&#215;1024 @ 60Hz</li>
<li>Realtek RTL 8139 Ethernet</li>
</ul>
<p><span id="more-5"></span></p>
<h3>Laptop:</h3>
<p><strong>HP Pavilion ze5600</strong></p>
<p>This is the laptop that my fiancee got in 2004, and last year (I think?) it got passed down to me because she bought her own netbook. The spec is very similar to my desktop (slightly faster CPU). I&#8217;ve upgraded the RAM. I have Arch Linux singleboot on this system too.</p>
<ul>
<li>Intel Celeron 2.60 GHz</li>
<li>768MB RAM</li>
<li>40GB Hard Drive</li>
<li>Conexant ACLink Audio</li>
<li>ATI Radeon IGP 345M Graphics Card</li>
<li>Display: 1024&#215;768 @ 60Hz</li>
<li>NatSemi DP83815/816 Ethernet</li>
<li>Broadcom BCM 4306 Wireless</li>
</ul>
<p><strong>Macbook (via VMWare):</strong><br />
This is my new laptop that I bought for doing my graduate studies, and now it is almost three years old. I kept the original OS (Snow Leopard) because I&#8217;m not ready to give that up yet. Instead, I run Arch Linux on VMWare so it&#8217;s easy to switch between the OS.</p>
<ul>
<li>Intel Core2 Duo T7500 2.20GHz</li>
<li>1GB RAM (VMWare)</li>
<li>30GB Hard Drive (VMWare)</li>
<li>VMWare Graphic Card (VMWare)</li>
<li>Display: 1280&#215;800 @ 60Hz</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://archlinux.me/kcirick/2010/08/19/my-current-arch-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
