<?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 &#187; Linux</title>
	<atom:link href="http://blog.bprog.no/index.php/category/computerstuff/linux-computerstuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bprog.no</link>
	<description>Some personal and some technical posts</description>
	<lastBuildDate>Sun, 14 Jun 2009 19:04:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Intel X25-M rules on Ubuntu 9.04</title>
		<link>http://blog.bprog.no/index.php/2009/05/intel-x25-m-rules-on-ubuntu-904/</link>
		<comments>http://blog.bprog.no/index.php/2009/05/intel-x25-m-rules-on-ubuntu-904/#comments</comments>
		<pubDate>Sun, 17 May 2009 11:17:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Intel SSD]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[X25-M]]></category>

		<guid isPermaLink="false">http://blog.bprog.no/?p=139</guid>
		<description><![CDATA[I finally got tired of waiting for the prices to drop further so I bought me a little from-me-to-me present, the Intel X25-M SSD. Ubuntu 9.04 already boots pretty fast, but with this drive it&#8217;s amazing! As you can read from the chart belove it takes around 10 seconds to get to the login screen. [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got tired of waiting for the prices to drop further so I bought me a little from-me-to-me present, the Intel X25-M SSD. Ubuntu 9.04 already boots pretty fast, but with this drive it&#8217;s amazing! As you can read from the chart belove it takes around 10 seconds to get to the login screen. When I bought it I had hoped that it would make NetBeans and compilation of some semi-heavy Java projects more snappy, but it turnes out that the CPU was a much larger bottleneck than I had expected.</p>
<p><img class="aligncenter size-full wp-image-142" title="Ubuntu 9.04 boot with Intel X25-M SSD" src="http://blog.bprog.no/wp-content/uploads/2009/05/lappis2-jaunty-20090515-11.png" alt="Ubuntu 9.04 boot with Intel X25-M SSD" width="588" height="2268" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bprog.no/index.php/2009/05/intel-x25-m-rules-on-ubuntu-904/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Hudson to autobuild Maven2 project on Subversion (SVN) commit</title>
		<link>http://blog.bprog.no/index.php/2008/12/hudson-svn-maven-autobuild/</link>
		<comments>http://blog.bprog.no/index.php/2008/12/hudson-svn-maven-autobuild/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 15:49:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[hudson]]></category>
		<category><![CDATA[maven2]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://blog.bprog.no/?p=67</guid>
		<description><![CDATA[The last days I&#8217;ve been testing out Hudson (in between lots of good Christmas food of course). Hudson is &#8220;an extensible continous integration engine&#8221;. That&#8217;s fancy-talk for what I like to call a build engine. It&#8217;s able to get updates from your SVN server and build the Maven project while keeping track of tasks, unit-tests [...]]]></description>
			<content:encoded><![CDATA[<p>The last days I&#8217;ve been testing out <a title="Hudson" href="http://hudson.dev.java.net/">Hudson</a> (in between lots of good Christmas food of course). Hudson is &#8220;an extensible continous integration engine&#8221;. That&#8217;s fancy-talk for what I like to call a build engine. It&#8217;s able to get updates from your SVN server and build the Maven project while keeping track of tasks, unit-tests and a lot of fancy things. The whole thing is extensible through a set of plugins. Hudson is really simple to set up, just download a jar file and run java -jar hudson.jar. Configuration and plugin download / installation is done completely within the webinterface.</p>
<p>I wanted to know whether it was possible for Hudson to build the project each time someone commits to SVN. It turnes out that there is two possibilities, a) Hudson can poll your version control server or b) you can use subversion hooks to notify Hudson of commits. Since we don&#8217;t like polling we&#8217;re going for the push method! <em>Ps! I assume that you&#8217;ve already configured Hudson to pull updates from your SVN server and build the project. </em></p>
<p>In your svn repository folder you&#8217;ll find a &#8220;hooks&#8221; folder containing a lot of .tmpl files. As you might have guessed we&#8217;re using post-commit.tmpl.  If you&#8217;re on Linux create a new file called &#8220;post-commit&#8221;, make it executable with chmod +x post-commit. Fire up your favourite browser and find the configuration interface for your project inside Hudson. Check the box saying &#8220;trigger builds remotely&#8221; and write your secret token in the text box. We&#8217;re going to need that token when we&#8217;re setting up our hook script.</p>
<p>It&#8217;s time to edit our post-commit file. I used something like this:</p>
<blockquote><p>#!/bin/sh<br />
wget -b http://<strong><em>your-hudson-url</em></strong>:8080/job/<strong><em>your-project-name</em></strong>/build?token=<em><strong>your-secret-token</strong></em><strong><em></em></strong> &gt; /dev/null</p></blockquote>
<p>Now after every commit subversion will execute this file and Hudson will build your project automaticly! <img src='http://blog.bprog.no/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bprog.no/index.php/2008/12/hudson-svn-maven-autobuild/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sun is making a huge mistake with JavaFX</title>
		<link>http://blog.bprog.no/index.php/2008/12/sun-is-making-a-huge-mistake-with-javafx/</link>
		<comments>http://blog.bprog.no/index.php/2008/12/sun-is-making-a-huge-mistake-with-javafx/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 20:03:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Computer stuff]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Webdevelopment]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[JavaFX]]></category>
		<category><![CDATA[Moonlight]]></category>
		<category><![CDATA[RIA]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://blog.bprog.no/?p=64</guid>
		<description><![CDATA[Sun has released version 1 of their JavaFX today see relase announcment with out any form of Linux SDK, nor mentioning anything of when or if the Linux community can expect to see any support. I think this is a huge mistake in todays marked.
Even Microsoft(!) has realized that they have to add Linux support [...]]]></description>
			<content:encoded><![CDATA[<p>Sun has released version 1 of their JavaFX today see <a href="http://www.sun.com/aboutsun/pr/2008-12/sunflash.20081204.1.xml">relase announcment</a> with out any form of Linux SDK, nor mentioning anything of when or if the Linux community can expect to see any support. I think this is a huge mistake in todays marked.</p>
<p>Even Microsoft(!) has realized that they have to add Linux support for their Silverlight platform and is doing so together with the help of Novell and their Moonlight project (whom actually had their second <a href="http://www.mono-project.com/news/archive/2008/Dec-02.html">beta release</a> two days ago).</p>
<p>It is going to be reallyt exciting to see all the competing RIA plattforms evolving the next year. Adobe obviously has a rather large head start with their FLEX platform due to the huge adoption of Flash. Microsoft has the money and monoply to support Silverlight which leaves Sun broke and desperate.</p>
<p>It pains me to say so I&#8217;m afraid that JavaFX is a last desperate act, although they deserve a smack for letting developers stuck with the horrible state their applet mess for so many years!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bprog.no/index.php/2008/12/sun-is-making-a-huge-mistake-with-javafx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox with USB support under Ubuntu Intrepid</title>
		<link>http://blog.bprog.no/index.php/2008/10/virtualbox-with-usb-support-under-ubuntu-intrepid/</link>
		<comments>http://blog.bprog.no/index.php/2008/10/virtualbox-with-usb-support-under-ubuntu-intrepid/#comments</comments>
		<pubDate>Thu, 30 Oct 2008 17:00:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu Virtualbox]]></category>

		<guid isPermaLink="false">http://blog.bprog.no/?p=27</guid>
		<description><![CDATA[As it turnes out you need VirtualBox non-free in order to get USB support. Bah.. That&#8217;s one wasted hour trying to activate USB support in the free edition you find in Ubuntu&#8217;s repositories.
Once I figured that out it turned out to be really easy. Just append this line to /etc/fstab
none /proc/bus/usb usbfs devgid=46,devmode=666 0 0
&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>As it turnes out you need VirtualBox non-free in order to get USB support. Bah.. That&#8217;s one wasted hour trying to activate USB support in the free edition you find in Ubuntu&#8217;s repositories.</p>
<p>Once I figured that out it turned out to be really easy. Just append this line to /etc/fstab</p>
<blockquote><p><strong><em>none /proc/bus/usb usbfs devgid=46,devmode=666 0 0</em></strong></p></blockquote>
<p>&#8230; and install the non-free edition from http://virtualbox.org</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.bprog.no/index.php/2008/10/virtualbox-with-usb-support-under-ubuntu-intrepid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
