<?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>Arch Linux stuff</title>
	<atom:link href="http://archstuff.panukinnari.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://archstuff.panukinnari.com</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 14:49:46 +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>Super simple way to stream / transfer videos from Linux to iPad</title>
		<link>http://archstuff.panukinnari.com/2012/01/super-simple-way-to-stream-transfer-videos-from-linux-to-ipad/</link>
		<comments>http://archstuff.panukinnari.com/2012/01/super-simple-way-to-stream-transfer-videos-from-linux-to-ipad/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 14:49:46 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=108</guid>
		<description><![CDATA[Being a linux using iPad owner is a bit of pain. As there really isn&#8217;t good way to easily transfer files from computer to iPad. Or so I thought, until I again decided to do some googling. I don&#8217;t know why I hadn&#8217;t found this info earlier. But anyway, here goes. There are only three [...]]]></description>
			<content:encoded><![CDATA[<p>Being a linux using iPad owner is a bit of pain. As there really isn&#8217;t good way to easily transfer files from computer to iPad. Or so I thought, until I again decided to do some googling. I don&#8217;t know why I hadn&#8217;t found this info earlier. But anyway, here goes. </p>
<p>There are only three steps to take</p>
<blockquote><p>1. Start webserver</p>
<p>2. Open page with browser</p>
<p>3. Watch videos</p>
</blockquote>
<p>First I found my way to this <a href="http://monocaffe.blogspot.com/2010/12/video-streaming-linuxipad.html">page</a>. From there I found most of the info needed. I hadn&#8217;t realized that I could start basic webserver using Python.</p>
<p><code>python -c "import SimpleHTTPServer;SimpleHTTPServer.test()"</code></p>
<p>But alas, it didn&#8217;t work for me. I got following error:</p>
<p><code>ImportError: No module named SimpleHTTPServer</code>   </p>
<p>Back to google. Where I found <a href="http://archlinux.me/dusty/2010/01/15/simplehttpserver-in-python-3/">this</a> page. Things have changed when moving to Python3 and new command for the same effect is:</p>
<p><code>python3 -m http.server</code></p>
<p>For viewing the videos I used <a href="http://itunes.apple.com/us/app/oplayer-hd/id373236724?mt=8">OPlayer</a> as mentioned in the first article. There might be other options as well but OPlayer works for me. In OPlayer you just point built in browser to your computers ip-addres and click on file you want to watch. You have option of either downloading or streaming the selected file. I had better luck with downloading and that allows for offline use as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2012/01/super-simple-way-to-stream-transfer-videos-from-linux-to-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flashing BIOS with FreeDOS</title>
		<link>http://archstuff.panukinnari.com/2010/08/flashing-bios-with-freedos/</link>
		<comments>http://archstuff.panukinnari.com/2010/08/flashing-bios-with-freedos/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 08:27:32 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=96</guid>
		<description><![CDATA[My new computer has one weird glitch. Even though it doesn&#8217;t run particularly hot it will still fail to boot if restarted, it requires some time to rest before powering it up again. At manufacturers site I learned that they have new update on BIOS that fixes issue with extreme edition cpus not booting. My [...]]]></description>
			<content:encoded><![CDATA[<p>My <a href="http://archstuff.panukinnari.com/2010/07/new-computer/">new computer</a> has one weird glitch. Even though it doesn&#8217;t run particularly hot it will still fail to boot if restarted, it requires some time to rest before powering it up again. At manufacturers site I learned that they have <a href="http://global.shuttle.com/download03.jsp?PCI=19&#038;PI=1389&#038;PL=1">new update</a> on BIOS that fixes issue with extreme edition cpus not booting. My cpu isn&#8217;t extreme edition but I decided to upgrade anyway, to see if it makes any difference.</p>
<p>Problem is, Shuttle provides flashing programs only for DOS and Windows. Luckily there exists project called <a href="http://www.freedos.org/">FreeDOS</a> which is open source implementation of MS-DOS.</p>
<p>Tools that I used were</p>
<ul>
<li>USB memory stick</li>
<li><a href="http://unetbootin.sourceforge.net/">Unetbootin</a> from <a href="http://aur.archlinux.org/packages.php?ID=21989">AUR</a></li>
<li><a href="http://gparted.sourceforge.net/">Gparted</a> for partitioning memory stick.</li>
</ul>
<p>I partitioned memory stick into two equal sized partitions and formatted them both to fat32. I am not really sure that this was needed, maybe I didn&#8217;t look hard enough but it seemed that I wasn&#8217;t able to copy third party files to FreeDOS partition. Thats why the second partition where I copied new ROM file for BIOS and required tools that I downloaded from Shuttle.</p>
<p>After preparing memory stick it was just matter of launching Unetbootin and selecting FreeDOS from distribution list and hitting OK.</p>
<p>When all that was done, reboot machine, select USB as boot medium, select FreeDOS LiveCD from boot menu and after a few seconds you got A:\_ blinking at the screen. Change to drive D: (second partition on disk) and enter command <a href="http://global.shuttle.com/support_faq_detail.jsp?PI=1389&#038;PFI=1923">described by manufacturer</a>. After a brief period flashing was done and all that was needed after that was reboot and loading default settings at BIOS settings.</p>
<p>And remember that if you follow this instructions and en up bricking your Motherboard I can&#8217;t be held responsible for it. So flash your BIOS at your own risk!</p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/08/flashing-bios-with-freedos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cold boot video</title>
		<link>http://archstuff.panukinnari.com/2010/07/cold-boot-video/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/cold-boot-video/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 07:49:49 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=91</guid>
		<description><![CDATA[In a proper nerd fashion I recorded short video of my computer booting and starting OpenOffice Calc and Chromium.]]></description>
			<content:encoded><![CDATA[<p>In a proper nerd fashion I recorded short video of my computer booting and starting OpenOffice Calc and Chromium.<br />
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/jl7k0Cw3syo&amp;hl=fi_FI&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/jl7k0Cw3syo&amp;hl=fi_FI&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/cold-boot-video/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10s boot!</title>
		<link>http://archstuff.panukinnari.com/2010/07/10s-boot/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/10s-boot/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 15:07:09 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=86</guid>
		<description><![CDATA[According to bootchart my new machines boot time is now 10s. Proof of it can be found below. Ofcourse, my machine is quite powerful and this result would be more impressive with lesser specification. But this result without much of extra work is quite nice in my opinion.]]></description>
			<content:encoded><![CDATA[<p>According to bootchart my new machines boot time is now 10s. Proof of it can be found below. Ofcourse, my machine is quite powerful and this result would be more impressive with lesser specification. But this result without much of extra work is quite nice in my opinion.<br />
<a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart20100723_with_quickinit.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart20100723_with_quickinit.png" alt="" title="bootchart20100723_with_quickinit" width="553" height="1884" class="aligncenter size-full wp-image-87" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/10s-boot/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Boottime for new machine</title>
		<link>http://archstuff.panukinnari.com/2010/07/boottime-for-new-machine/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/boottime-for-new-machine/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 14:15:03 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=79</guid>
		<description><![CDATA[AS I promised, here is bootchart for my new machine. This chart is without any optimization done, so after I get quick-init installed I will post new chart. Even without optimization boot time is already faster than on my old machine with quick-init installed.]]></description>
			<content:encoded><![CDATA[<p>AS I promised, here is bootchart for my <a href="http://archstuff.panukinnari.com/2010/07/new-computer/">new machine</a>. This chart is without any optimization done, so after I get quick-init installed I will post new chart. Even without optimization boot time is already faster than on my old machine <a href="http://archstuff.panukinnari.com/2010/07/improve-boottime-with-quick-init/">with quick-init</a> installed.<br />
<a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart20100723.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart20100723.png" alt="" title="bootchart20100723" width="553" height="1852" class="aligncenter size-full wp-image-80" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/boottime-for-new-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSD Speed test</title>
		<link>http://archstuff.panukinnari.com/2010/07/ssd-speed-test/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/ssd-speed-test/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 20:16:42 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=68</guid>
		<description><![CDATA[Arch Linux forum user graysky posted a thread on forums about speed benchmarks for SSD&#8217;s. I bought same drive as he did, but decided to post my results anyway. I will post them here as well for further reference and I&#8217;ll also post results from benchmark for my HDD. Intel X25-M (G2) 80Gb SSD 500GB [...]]]></description>
			<content:encoded><![CDATA[<p>Arch Linux forum user graysky posted a thread on forums about speed benchmarks for SSD&#8217;s. I bought same drive as he did, but decided to post my results anyway. I will post them here as well for further reference and I&#8217;ll also post results from benchmark for my HDD.</p>
<p><strong>Intel X25-M (G2) 80Gb SSD</strong><br />
<a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/SSD_bm_20100722.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/SSD_bm_20100722-300x198.png" alt="" title="SSD_bm_20100722" width="300" height="198" class="aligncenter size-medium wp-image-69" /></a><br />
<strong>500GB Hitachi HDS721050CLA362</strong><br />
<a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/HDD_bm_20100722.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/HDD_bm_20100722-300x198.png" alt="" title="HDD_bm_20100722" width="300" height="198" class="aligncenter size-medium wp-image-73" /></a><br />
And my older Samsung drive using eSATA cable, but I assume it is just as good as internal SATA.<br />
<strong>Samsung HD502IJ</strong><br />
<a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/HDD2_bm_20100722.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/HDD2_bm_20100722-300x198.png" alt="" title="HDD2_bm_20100722" width="300" height="198" class="aligncenter size-medium wp-image-76" /></a><br />
Interestingly, a bit older Samsung drive seems a bit faster than Hitachi.</p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/ssd-speed-test/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>New computer</title>
		<link>http://archstuff.panukinnari.com/2010/07/new-computer/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/new-computer/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 17:35:50 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=42</guid>
		<description><![CDATA[I have been thinking about buying new computer for a while now, maybe for a year or so. Now I had funds to do it so I went and ordered components for new box. My previous computer was built in Shuttle barebones case and I really liked it so up-to-date Shuttle case was my benchmark [...]]]></description>
			<content:encoded><![CDATA[<p>I have been thinking about buying new computer for a while now, maybe for a year or so. Now I had funds to do it so I went and ordered components for new box. My previous computer was built in Shuttle barebones case and I really liked it so up-to-date Shuttle case was my benchmark when I was planning which parts I should buy.<br />
<a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/74549980961.jpg"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/74549980961-300x215.jpg" alt="" title="7454998096" width="300" height="215" class="alignright size-medium wp-image-56" /></a><br />
Biggest decision was actually the case, as performance was pretty much dictated by my budget. And in the end Shuttle case + rest wasn&#8217;t price wise that much different to some case + some motherboard + some power + rest so I went with Shuttle again. This time with state of the art model <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B003JJTM58">SX58J3</a>.</p>
<p>When case was decided it was pretty straightforward after that. One component I really wanted in my new machine was SSD drive to hold my root partition (and /home and /boot, I pretty much followed recommendations in this <a href="http://wiki.archlinux.org/index.php/SSD">wiki page</a>). After some reading around the web I decided on 80GB <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B002IJA1EG">Intel X25-M G2</a>. For CPU I went with almost top of the line <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B0038JE9MU">Intel i7 930</a>, which is 2.80GHz quad-core model. For memory I got 4Gb of <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B000WBJDTQ">Mushkin Enhanced Silverline</a> in 2x2Gb setup. And for GPU I went with Nvidia GTS250 chip on card built by <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B001VGL2TK">ASUS</a>. And on lesser note, as main harddrive to act as actual storage I got <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B002WO2APA">500Gb Hitachi</a> drive and for optical drive <a href="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=000000&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=leanresource-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;md=10FE9736YVPPT7A0FBG2&#038;asins=B002C9K3UO">LG DVD writer</a> (I accindentally first ordered one with IDE connections but my new case has only SATA connections, so back to the store on that one <img src='http://archstuff.panukinnari.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>And when it comes to OS, ofcourse Arch Linux. Which is now installed and running well. I am writing this on my new machine so it seems that I didn&#8217;t mess up anything while assembling it, it has been a while since I have built computer by myself. </p>
<p>I will post bootchart later, it will be nice to compare to my <a href="http://archstuff.panukinnari.com/2010/07/improve-boottime-with-quick-init/">old results</a> now that I have upgraded performance quite heavily, and especially how my shining SSD will behave.</p>
<p>One gripe I do have. Fans in this new case are a bit louder than they were in the old one. I allready replaced fan for CPU for supposedly quiter one, but I think it actually might be power fan that makes the noise. Have to see if I can replace that as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/new-computer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cleaning orphaned packages from Arch Linux installation</title>
		<link>http://archstuff.panukinnari.com/2010/07/cleaning-orphaned-packages-from-arch-linux-installation/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/cleaning-orphaned-packages-from-arch-linux-installation/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 16:57:55 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=35</guid>
		<description><![CDATA[Arch Linux forum user itsbrad212 had link to scripts he has written. One of them was updatescript where I learned about pacman option -Qqdt which will print out list of orphaned packages. Running that I found out that I had over 60 packages installed that my system didn&#8217;t need. I ended up using his script [...]]]></description>
			<content:encoded><![CDATA[<p>Arch Linux forum user <a href="http://archlinux.me/itsbrad212/">itsbrad212</a> had link to <a href="http://itsbrad212.uphero.com/scripts/">scripts</a> he has written. One of them was <a href="http://itsbrad212.uphero.com/scripts/pacman">updatescript</a> where I learned about <a href="http://wiki.archlinux.org/index.php/Pacman">pacman</a> option <em>-Qqdt</em> which will print out list of orphaned packages. </p>
<p>Running that I found out that I had over 60 packages installed that my system didn&#8217;t need. I ended up using his script to clean them. First script does complete system upgrade and then loops around orphan removal function until there are no orphans left in system. </p>
<p>Offcourse you could this manually as well. Safety of removing orphans is discussed for example in this <a href="http://bbs.archlinux.org/viewtopic.php?pid=432812">thread</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/cleaning-orphaned-packages-from-arch-linux-installation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Improve boottime with quick-init</title>
		<link>http://archstuff.panukinnari.com/2010/07/improve-boottime-with-quick-init/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/improve-boottime-with-quick-init/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 13:10:32 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=24</guid>
		<description><![CDATA[Reason for my previous post was that I wanted to try improving my boottime with quick-init, that one can find from AUR. Installation of this script was straightforward with Yaourt. Although at first I thought that installation had somehow messed up my system when boot went to console instead of KDE. But this was only [...]]]></description>
			<content:encoded><![CDATA[<p>Reason for my <a href="http://archstuff.panukinnari.com/2010/07/measuring-boottime-with-bootchart/">previous post</a> was that I wanted to try improving my boottime with <a href="http://www.obliquo.net/?articles/quick-init.html">quick-init</a>, that one can find from <a href="http://aur.archlinux.org/packages.php?ID=25563">AUR</a>. Installation of this script was straightforward with Yaourt. Although at first I thought that installation had somehow messed up my system when boot went to console instead of KDE. But this was only case of me not editing my inittab AND qinittab files to <a href="http://wiki.archlinux.org/index.php/Start_X_at_boot">boot to desktop enviroment</a>.</p>
<pre class="brush: bash;">
#id:3:initdefault:
id:5:initdefault:#x:5:respawn:/usr/bin/xdm -nodaemon

#x:5:respawn:/usr/sbin/gdm -nodaemon
x:5:respawn:/usr/bin/kdm -nodaemon
#x:5:respawn:/usr/bin/slim &gt;&amp; /dev/null
#x:5:respawn:/bin/su YOURUSER -l -c &quot;/bin/bash --login -c xinit &gt;/dev/null 2&gt;&amp;1&quot;
</pre>
<p>My boot time from Grub to desktop went from 23s to 15s just by installing quick-init. I have to see into further improvements suggested at quick-init home page. It is shame though that it takes a while for my machine to get from press of power button to grub, so there is limit to how low I can get my boottime.</p>
<p>Here is my current bootchart.<br />
<div id="attachment_28" class="wp-caption aligncenter" style="width: 605px"><a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart_with_quickinit20100702.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart_with_quickinit20100702.png" alt="Bootchart with quick-init" title="bootchart_with_quickinit20100702" width="595" height="1100" class="size-full wp-image-28" /></a><p class="wp-caption-text">Bootchart with quick-init</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/improve-boottime-with-quick-init/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Measuring boottime with Bootchart</title>
		<link>http://archstuff.panukinnari.com/2010/07/measuring-boottime-with-bootchart/</link>
		<comments>http://archstuff.panukinnari.com/2010/07/measuring-boottime-with-bootchart/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 18:22:17 +0000</pubDate>
		<dc:creator>thepanu</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://archstuff.panukinnari.com/?p=19</guid>
		<description><![CDATA[Even though I don&#8217;t boot my computer everyday I still like it to boot relatively fast. To really know how long it takes for computer to boot you can either use stopwatch or purpose built tool &#8211; in this case program called Bootchart. I used info from Arch Linux Wiki article for finding way to [...]]]></description>
			<content:encoded><![CDATA[<p>Even though I don&#8217;t boot my computer everyday I still like it to boot relatively fast. To really know how long it takes for computer to boot you can either use stopwatch or purpose built tool &#8211; in this case program called <a href="http://www.bootchart.org/">Bootchart</a>. I used info from Arch Linux <a href="http://wiki.archlinux.org/index.php/Bootchart">Wiki article</a> for finding way to make it launch from Grub boot menu.</p>
<p><a href="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart.png"><img src="http://archstuff.panukinnari.com/wp-content/uploads/2010/07/bootchart.png" alt="bootchart20100701" title="bootchart20100701" width="606" height="1516" class="aligncenter size-full wp-image-21" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://archstuff.panukinnari.com/2010/07/measuring-boottime-with-bootchart/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

