<?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>Magnus &#187; blog</title>
	<atom:link href="http://blog.rubbad.com/archives/tag/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.rubbad.com</link>
	<description></description>
	<lastBuildDate>Sun, 25 Jul 2010 17:08:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>vbox-runner on fedora 11</title>
		<link>http://blog.rubbad.com/archives/319</link>
		<comments>http://blog.rubbad.com/archives/319#comments</comments>
		<pubDate>Sun, 26 Jul 2009 10:46:05 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=319</guid>
		<description><![CDATA[I just built my first RPM for fedora! w000t! In this post I will document the steps I took to make it build. I&#8217;ll start from the very beginning. Tools used: yum groupinstall "Development Tools" yum install rpmdevtools as stated here. Then I installed rpmlint because I wanted to check on my .spec file to [...]]]></description>
			<content:encoded><![CDATA[<p>I just built my first RPM for fedora! w000t!</p>
<p>In this post I will document the steps I took to make it build. I&#8217;ll start from the very beginning.</p>
<p>Tools used:<br />
<code>yum groupinstall "Development Tools"<br />
yum install rpmdevtools</code></p>
<p>as stated <a title="fedora wiki" href="https://fedoraproject.org/wiki/How_to_create_an_RPM_package" target="_blank">here</a>.</p>
<p>Then I installed <em>rpmlint</em> because I wanted to check on my .spec file to make sure it was in good condition, usage:<br />
<code>rpmlint -i <em>specfile</em></code></p>
<p>Ran <code><em>rpmbuild-setuptree</em></code> which will create an &#8220;rpmbuild&#8221; directory in your $HOME directory. Underneath &#8220;rpmbuild&#8221; are a set of subdirectories (such as SPECS and BUILD), which you will use for creating your packages. The &#8220;rpmdev-setuptree&#8221; also creates an &#8220;~/.rpmmacros&#8221; file which will cause rpm and rpmbuild to use them when appropriate. /quote</p>
<p>Got the source from <a title="Kde-Look.org" href="http://www.kde-look.org/content/show.php/VBox+Runner?content=107926" target="_blank">Kde-Look</a> and put it in <em>~/rpmbuild/SOURCES</em>, and then cd to <em>~/rpmbuild/SPECS</em> folder and ran<br />
 <code>rpmdev-newspec vbox-runne</code>r<br />
This creates the file <em>vboxrunner.spec</em> file, that need to be edited to suit the program. Since I had no idea about how to install a package without a configure and/or make file (this one doesn&#8217;t) I grabbed another file from the archlinux user repositories (<a title="AUR" href="http://aur.archlinux.org/packages.php?ID=28015" target="_blank">AUR</a>), because I  have used that one before when I was using Archlinux, had a look at the <a title="the PKGBUILD" href="http://aur.archlinux.org/packages/vbox-runner/vbox-runner/PKGBUILD" target="_blank">PKGBUILD</a> for clues of what to fill the spec file with.</p>
<p>This is the PKGBUILD:<br />
<code>Contributor: Jan Zitnik &lt;jan@zitnik.org&gt;<br />
pkgname=vbox-runner<br />
pkgver=0.2<br />
pkgrel=1<br />
arch=(i686 x86_64)<br />
pkgdesc="Run Virtualbox machines in KRunner"<br />
url="http://www.kde-look.org/content/show.php/VBox+Runner?content=107926"<br />
license="GPL"<br />
depends=('kdebase')<br />
makedepends=('cmake' 'gcc' 'automoc4')<br />
source=(http://www.kde-look.org/CONTENT/content-files/107926-vbox-runner-$pkgver.tar.gz)<br />
md5sums=('0c9c34bed0001b17ee882a3764ef047d')</code></p>
<p><code>build() {<br />
cd $startdir/src/vbox-runner-$pkgver<br />
mkdir build<br />
cd build</code></p>
<p><code>cmake ../ || return 1<br />
make || return 1<br />
make DESTDIR=$startdir/pkg install || return 1</code></p>
<p>And this is the vbox-runner.spec file before:<br />
<code>Name:           test<br />
Version:<br />
Release:        1%{?dist}<br />
Summary:        </code></p>
<p><code>Group:<br />
License:<br />
URL:<br />
Source0:<br />
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)<br />
</code><br />
<code>BuildRequires:<br />
Requires:       </code></p>
<p><code>%description</code></p>
<p><code>%prep<br />
%setup -q</code></p>
<p><code>%build<br />
%configure<br />
make %{?_smp_mflags}</code></p>
<p><code>%install<br />
rm -rf $RPM_BUILD_ROOT<br />
make install DESTDIR=$RPM_BUILD_ROOT</code></p>
<p><code>%clean<br />
rm -rf $RPM_BUILD_ROOT<br />
</code><br />
<code>%files<br />
%defattr(-,root,root,-)<br />
%doc</code></p>
<p><code>%changelog</code><br />
And the completed one, after I scratched my head a while:</p>
<p><code>Name:           vbox-runner<br />
Version:        0.2<br />
Release:        1%{?dist}<br />
Summary:        Run Virtualbox machines in KRunner</code></p>
<p><code>Group:          User Interface/Desktops<br />
License:        GPL<br />
URL:            http://www.kde-look.org/content/show.php/VBox+Runner?content=107926<br />
Source0:        http://www.kde-look.org/CONTENT/content-files/107926-vbox-runner-%{version}.tar.gz<br />
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)</code></p>
<p><code>BuildRequires:  cmake gcc automoc4 kdebase-devel<br />
Requires:       kdebase</code></p>
<p><code>%description<br />
vbox-runner is a plugin for krunner, virtualbox machines can be started directly from krunner with this plugin.</code></p>
<p><code>%prep<br />
%setup -q</code></p>
<p><code>%build</code></p>
<p><code>%install<br />
rm -rf %{buildroot}<br />
cmake -DCMAKE_INSTALL_PREFIX=/usr<br />
make install DESTDIR=%{buildroot}</code></p>
<p><code>%clean<br />
rm -rf %{buildroot}</code></p>
<p><code>%files<br />
%defattr(-,root,root,-)<br />
%doc<br />
%{_libdir}/kde4/krunner_vbox.so<br />
%{_datadir}/kde4/services/*.desktop<br />
%{_datadir}/pixmaps/*</code></p>
<p><code>%changelog<br />
* Sun Jul 26 2009 Magnus Tuominen  magnus.tuominen@gmail.com 0.2-1<br />
- Initial RPM for fedora.</code></code></p>
<p>The build will complain about some rpath issue with krunner_vbox.so so it has to be built with these options:<br />
<code>QA_RPATHS=$[0x0001|0x0010 ] rpmbuild -ba vbox-runner.spec</code><br />
otherwise it will fail with this error message:<br />
 <code>ERROR   0001: file '/usr/lib/kde4/krunner_vbox.so' contains a standard rpath '/usr/lib' in [/usr/lib:/usr/lib/kde4/devel]<br />
error: Bad exit status from /var/tmp/rpm-tmp.gL6Psw (%install)</code><br />
The result is this:</p>
<p><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/krunner-fedora.png"><img class="aligncenter size-full wp-image-331" title="krunner-fedora" src="http://blog.rubbad.com/wp-content/uploads/2009/07/krunner-fedora.png" alt="krunner-fedora" width="414" height="281" /></a></p>
<p>Pretty sweet huh?</p>
<p>You can grab the RPMs with the source from here.</p>
<p><a title="file dump" href="http://rubbad.com/files/fedora/11/" target="_blank">http://rubbad.com/files/fedora/11/</a></p>
<p>Remember, all commands are to be run as user, except for the installation of the tools part, do NOT run these as root, ever!<br />
Many thanks to Konqui and Jan Zitnik, whom without this would never had been built..<br />
That's all folks! Comments and pointers appreciated, this is my first attempt at building RPMs after all, and I'm sure there are some things that could have been done differently?<br />
<strong>UPDATE</strong>: version 0.2-2 is done, I fixed the issue with rpath and rebuilt the rpm according to the fedora package guidelines.<br />
Added</p>
<p><code>chrpath --delete %{buildroot}%{_libdir}/kde4/krunner_vbox.so to the %install section in the spec file.</code><br />
<strong>UPDATE2</strong> version 0.2-3: addedd </p>
<p><code>%doc, %post, %postun and %find_lang to spec file.</code></p>
<p><strong>UPDATE3</strong> (heh) version 0.2-4 is done, now rpmlint and mock are really happy.<br />
some changes to spec file to make rpmlint and mock happy.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/388" rel="bookmark" class="crp_title">Kopete-facebook-0.1.4-4</a></li><li><a href="http://blog.rubbad.com/archives/399" rel="bookmark" class="crp_title">Skype on Fedora 12</a></li><li><a href="http://blog.rubbad.com/archives/4" rel="bookmark" class="crp_title">Jou</a></li><li><a href="http://blog.rubbad.com/archives/11" rel="bookmark" class="crp_title">VMware</a></li><li><a href="http://blog.rubbad.com/archives/38" rel="bookmark" class="crp_title">fail! :(</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/319/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android</title>
		<link>http://blog.rubbad.com/archives/303</link>
		<comments>http://blog.rubbad.com/archives/303#comments</comments>
		<pubDate>Tue, 14 Jul 2009 06:01:28 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=303</guid>
		<description><![CDATA[The Android livecd v.02 is out. I grabbed a copy from http://code.google.com/p/live-android/ and booted it up inside virtualbox to have a look. Seems pretty sweet to me! Now I want a Android phone&#8230; Settings to use for creating the virtualmachine should be Linux and Linux2.6, I gave it 256MB of memory and enabled 3d acceleration, [...]]]></description>
			<content:encoded><![CDATA[<p>The Android livecd v.02 is out. I grabbed a copy from <a href="http://code.google.com/p/live-android/" target="_blank">http://code.google.com/p/live-android/</a> and booted it up inside virtualbox to have a look.</p>
<p>Seems pretty sweet to me! Now I want a Android phone&#8230; <img src='http://blog.rubbad.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Settings to use for creating the virtualmachine should be <em>Linux</em> and <em>Linux2.6</em>, I gave it 256MB of memory and enabled 3d acceleration, but it surely works with far less than that.</p>
<div id="attachment_310" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbooting.png"><img class="size-medium wp-image-310" title="androidbooting" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbooting-300x249.png" alt="the boot screen" width="300" height="249" /></a><p class="wp-caption-text">the boot screen</p></div>
<div id="attachment_309" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbooted.png"><img class="size-medium wp-image-309" title="androidbooted" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbooted-300x251.png" alt="firstboot, omg no battery!" width="300" height="251" /></a><p class="wp-caption-text">firstboot, omg no battery!</p></div>
<div id="attachment_305" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbdesk1.png"><img class="size-medium wp-image-305" title="androidbdesk1" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbdesk1-300x251.png" alt="default desktop" width="300" height="251" /></a><p class="wp-caption-text">default desktop</p></div>
<div id="attachment_307" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbgsearchbar.png"><img class="size-medium wp-image-307" title="androidbgsearchbar" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbgsearchbar-300x251.png" alt="the google bar" width="300" height="251" /></a><p class="wp-caption-text">the google bar</p></div>
<div id="attachment_306" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbdesk2.png"><img class="size-medium wp-image-306" title="androidbdesk2" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbdesk2-300x250.png" alt="applications and settings, I guess." width="300" height="250" /></a><p class="wp-caption-text">applications and settings, I guess.</p></div>
<div id="attachment_311" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbsettings.png"><img class="size-medium wp-image-311" title="androidbsettings" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbsettings-300x250.png" alt="some more settings" width="300" height="250" /></a><p class="wp-caption-text">some more settings</p></div>
<div id="attachment_312" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbsettings-about.png"><img class="size-medium wp-image-312" title="androidbsettings-about" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbsettings-about-300x251.png" alt="About Android" width="300" height="251" /></a><p class="wp-caption-text">About Android</p></div>
<div id="attachment_313" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbsettings-about-license.png"><img class="size-medium wp-image-313" title="androidbsettings-about-license" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbsettings-about-license-300x252.png" alt="Apache license" width="300" height="252" /></a><p class="wp-caption-text">Apache license</p></div>
<div id="attachment_304" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbbrowser.png"><img class="size-medium wp-image-304" title="androidbbrowser" src="http://blog.rubbad.com/wp-content/uploads/2009/07/androidbbrowser-300x250.png" alt="the web browser, works really well. Execpt I couldn't figure out how to close it." width="300" height="250" /></a><p class="wp-caption-text">the web browser, works really well. Execpt I couldn&#39;t figure out how to close it.</p></div>
<p>I&#8217;m impressed and I&#8217;m looking forward to see how this develops!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/295" rel="bookmark" class="crp_title">Running Spotify on Fedora 11</a></li><li><a href="http://blog.rubbad.com/archives/284" rel="bookmark" class="crp_title">VirtualBox 3.0 in Fedora 11</a></li><li><a href="http://blog.rubbad.com/archives/170" rel="bookmark" class="crp_title">blog moved to wordpress.com</a></li><li><a href="http://blog.rubbad.com/archives/437" rel="bookmark" class="crp_title">ffmpegthumbnailer &#038; kffmpegthumbnailer</a></li><li><a href="http://blog.rubbad.com/archives/273" rel="bookmark" class="crp_title">Amarok 2.1 and Fedora 11 KDE</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/303/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Spotify on Fedora 11</title>
		<link>http://blog.rubbad.com/archives/295</link>
		<comments>http://blog.rubbad.com/archives/295#comments</comments>
		<pubDate>Sat, 11 Jul 2009 07:19:06 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[crossover]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[spotify]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=295</guid>
		<description><![CDATA[I had some problem getting Spotify to run on my 64bit Fedora 11 laptop, fonts were missing and some graphics rendered horribly or was totally missing: Lucky for me I remembered that I have a free Crossover download waiting for me! So I got that, and it threw a bunch of missing dependencys in my [...]]]></description>
			<content:encoded><![CDATA[<p>I had some problem getting Spotify to run on my 64bit Fedora 11 laptop, fonts were missing and some graphics rendered horribly or was totally missing:</p>
<div id="attachment_296" class="wp-caption aligncenter" style="width: 310px"><a href="http://rubbad.com/blog/wp-content/uploads/2009/07/spotify.png"><img class="size-medium wp-image-296" title="spotify" src="http://rubbad.com/blog/wp-content/uploads/2009/07/spotify-300x190.png" alt="Spotify running in wine, something missing... " width="300" height="190" /></a><p class="wp-caption-text">Spotify running in wine, something missing... </p></div>
<p>Lucky for me I remembered that I have a free Crossover download waiting for me! So I got that, and it threw a bunch of missing dependencys in my face while configuring the first bottle:</p>
<p>This is what to install</p>
<blockquote><p># yum install cups-libs.i586 fontconfig.i586 gnutls.i586 hal-libs.i586 libXcomposite.i586 libpng.i586 sane-backends-libs.i586 libXcursor.i586 libXinerama.i586 libXrandr.i586 libXrender.i586</p></blockquote>
<p>It pulls in some dependencys of their own, install those too.</p>
<p>Then you can install Spotify using Crossover, or if you don&#8217;t have that one, you can just use wine. Wine should render everything correctly once all of that stuff is installed.</p>
<div id="attachment_297" class="wp-caption aligncenter" style="width: 310px"><a href="http://rubbad.com/blog/wp-content/uploads/2009/07/spotify-crossover.png"><img class="size-medium wp-image-297" title="spotify-crossover" src="http://rubbad.com/blog/wp-content/uploads/2009/07/spotify-crossover-300x202.png" alt="Spotify running in Crossover Pro 8" width="300" height="202" /></a><p class="wp-caption-text">Spotify running in Crossover Pro 8</p></div>
<p>Please comment if you try this and tell me how it went! Now for some more coffee&#8230;</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/303" rel="bookmark" class="crp_title">Android</a></li><li><a href="http://blog.rubbad.com/archives/284" rel="bookmark" class="crp_title">VirtualBox 3.0 in Fedora 11</a></li><li><a href="http://blog.rubbad.com/archives/346" rel="bookmark" class="crp_title">Kopete facebook-plugin for fedora</a></li><li><a href="http://blog.rubbad.com/archives/170" rel="bookmark" class="crp_title">blog moved to wordpress.com</a></li><li><a href="http://blog.rubbad.com/archives/273" rel="bookmark" class="crp_title">Amarok 2.1 and Fedora 11 KDE</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/295/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Relaunch</title>
		<link>http://blog.rubbad.com/archives/292</link>
		<comments>http://blog.rubbad.com/archives/292#comments</comments>
		<pubDate>Fri, 10 Jul 2009 16:19:48 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=292</guid>
		<description><![CDATA[Relaunching my blog. W0ot! hurray! party party! meh. o_0 and all that, u know. Needed more options on wordpress, and wordpress.com is a bit too limited for my tastes.. I also enabled digg and reddit and some other buttons stuff to this new theme and all old posts have been copied to this one, I [...]]]></description>
			<content:encoded><![CDATA[<p>Relaunching my blog. W0ot! hurray! party party! meh. o_0 and all that, u know.</p>
<p>Needed more options on wordpress, and wordpress.com is a bit too limited for my tastes..</p>
<p>I also enabled <a href="http://www.digg.com" target="_blank">digg</a> and <a href="http://www.reddit.com" target="_blank">reddit</a> and some other buttons stuff to this new theme and all old posts have been copied to this one, I also got a <a href="http://www.twitter.com/magnustuominen" target="_blank">twitter</a> account for some darn reason.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/139" rel="bookmark" class="crp_title">wordpress 2.7</a></li><li><a href="http://blog.rubbad.com/archives/48" rel="bookmark" class="crp_title">WordPress theme</a></li><li><a href="http://blog.rubbad.com/archives/45" rel="bookmark" class="crp_title">wordpress stuff..</a></li><li><a href="http://blog.rubbad.com/archives/170" rel="bookmark" class="crp_title">blog moved to wordpress.com</a></li><li><a href="http://blog.rubbad.com/archives/176" rel="bookmark" class="crp_title">Ubuntu 8.10 amd64 Suspend</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/292/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox 3.0 in Fedora 11</title>
		<link>http://blog.rubbad.com/archives/284</link>
		<comments>http://blog.rubbad.com/archives/284#comments</comments>
		<pubDate>Wed, 08 Jul 2009 13:33:46 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[64bit]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://rubbad.wordpress.com/?p=284</guid>
		<description><![CDATA[How to get VirtualBox 3.0 installed with USB support on Fedora 11. We need to install a little something to get the module to actually build before we install Virtualbox. As root: # yum install dkms kernel-devel make automake autoconf gcc Then install VirtualBox: 32bit: # rpm -Uhv http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.i586.rpm 64bit # rpm -Uhv http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.x86_64.rpm Right, [...]]]></description>
			<content:encoded><![CDATA[<p>How to get VirtualBox 3.0 installed with USB support on Fedora 11.</p>
<p>We need to install a little something to get the module to actually build before we install Virtualbox.</p>
<p>As root:</p>
<blockquote><p># yum install dkms kernel-devel make automake autoconf gcc</p></blockquote>
<p>Then install VirtualBox:</p>
<p>32bit:</p>
<blockquote><p># rpm -Uhv <a href="http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.i586.rpm" target="_blank">http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.i586.rpm</a></p></blockquote>
<p>64bit</p>
<blockquote><p># rpm -Uhv <a href="http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.x86_64.rpm" target="_blank">http://download.virtualbox.org/virtualbox/3.0.0/VirtualBox-3.0.0_49315_fedora11-1.x86_64.rpm</a></p></blockquote>
<p>Right, now for the usb part. Got to find out the Group ID for vboxusers now. Go to <em>Administration -&gt; Users and Groups.</em></p>
<p><em></p>
<div id="attachment_285" class="wp-caption aligncenter" style="width: 490px"><em><a href="http://rubbad.com/blog/wp-content/uploads/2009/07/usersandgroups.png"><img class="size-full wp-image-285" title="users and groups" src="http://rubbad.com/blog/wp-content/uploads/2009/07/usersandgroups.png" alt="Remeber the Group ID of vboxusers." width="480" height="350" /></a></em><p class="wp-caption-text">Remeber the Group ID of vboxusers.</p></div>
<p></em></p>
<p><em> </em></p>
<p><em> </em></p>
<p>Select the vboxusers group and press properties, add yourself to this group.</p>
<div id="attachment_286" class="wp-caption aligncenter" style="width: 490px"><a href="http://rubbad.com/blog/wp-content/uploads/2009/07/editgroup.png"><img class="size-full wp-image-286" title="edit group" src="http://rubbad.com/blog/wp-content/uploads/2009/07/editgroup.png" alt="Add yourself to this group." width="480" height="353" /></a><p class="wp-caption-text">Add yourself to this group.</p></div>
<p>Now we just have to add this little line to <em>/etc/fstab</em></p>
<blockquote><p>none /sys/bus/usb/drivers usbfs devgid=<strong>501</strong>,devmode=664 0 0</p></blockquote>
<p>note that <strong>501</strong> was the <strong>Group ID</strong> for vboxusers, which you are a member of, this grants you usb inside VirtualBox.</p>
<p>Now, reboot and try out your virtual boxes!</p>
<p>Thanks to <a href="http://readysleep.wordpress.com/2009/06/12/linux-fedora-11-usb-support-in-virtualbox/" target="_blank">readysleep</a> for the fstab info!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/303" rel="bookmark" class="crp_title">Android</a></li><li><a href="http://blog.rubbad.com/archives/295" rel="bookmark" class="crp_title">Running Spotify on Fedora 11</a></li><li><a href="http://blog.rubbad.com/archives/273" rel="bookmark" class="crp_title">Amarok 2.1 and Fedora 11 KDE</a></li><li><a href="http://blog.rubbad.com/archives/319" rel="bookmark" class="crp_title">vbox-runner on fedora 11</a></li><li><a href="http://blog.rubbad.com/archives/346" rel="bookmark" class="crp_title">Kopete facebook-plugin for fedora</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/284/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>blog moved again</title>
		<link>http://blog.rubbad.com/archives/189</link>
		<comments>http://blog.rubbad.com/archives/189#comments</comments>
		<pubDate>Tue, 02 Dec 2008 18:37:55 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://rubbad.wordpress.com/?p=189</guid>
		<description><![CDATA[You can find my blog here: http://blog.rubbad.com Renewed my webhosting, and I moved my blog back to it&#8217;s original home. No I did not move my blog, or did I? Probably not. Related Posts:blog moved to wordpress.comAndroidwordpress 2.7kopete-protocol-facebook is no moreRunning Spotify on Fedora 11Powered by Contextual Related Posts]]></description>
			<content:encoded><![CDATA[<p>You can find my blog here:</p>
<p><a class="wp-caption" title="Magnus Blog" href="http://blog.rubbad.com" target="_self">http://blog.rubbad.com</a></p>
<p>Renewed my webhosting, and I moved my blog back to it&#8217;s original home.</p>
<p>No I did not move my blog, or did I? Probably not.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/170" rel="bookmark" class="crp_title">blog moved to wordpress.com</a></li><li><a href="http://blog.rubbad.com/archives/303" rel="bookmark" class="crp_title">Android</a></li><li><a href="http://blog.rubbad.com/archives/139" rel="bookmark" class="crp_title">wordpress 2.7</a></li><li><a href="http://blog.rubbad.com/archives/418" rel="bookmark" class="crp_title">kopete-protocol-facebook is no more</a></li><li><a href="http://blog.rubbad.com/archives/295" rel="bookmark" class="crp_title">Running Spotify on Fedora 11</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/189/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>blog moved to wordpress.com</title>
		<link>http://blog.rubbad.com/archives/170</link>
		<comments>http://blog.rubbad.com/archives/170#comments</comments>
		<pubDate>Tue, 25 Nov 2008 10:51:52 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://rubbad.wordpress.com/?p=170</guid>
		<description><![CDATA[I moved my blog today. It sits now on wordpress.com after many failed attempts to move it to my own server, some weird dns issues probably&#8230; I&#8217;m not fit to play with it now. In a few weeks my hosting plan will be discontinued and I am either going to change webhosting or do it [...]]]></description>
			<content:encoded><![CDATA[<p>I moved my blog today. It sits now on wordpress.com after many failed attempts to move it to my own server, some weird dns issues probably&#8230; I&#8217;m not fit to play with it now. In a few weeks my hosting plan will be discontinued and I am either going to change webhosting or do it myself like I did a year back. I am having problems however setting up the server , Ubuntu 8.10 Server on an old Athlon 2600+ box with 512 megs of RAM. Should be enough for apache + mysql. Or is it?</p>
<div id="attachment_171" class="wp-caption aligncenter" style="width: 510px"><a href="http://rubbad.files.wordpress.com/2008/11/htop.png"><img class="size-full wp-image-171" title="htop" src="http://rubbad.files.wordpress.com/2008/11/htop.png" alt="Ubuntu Server 8.10" width="500" height="80" /></a><p class="wp-caption-text">Ubuntu Server 8.10</p></div>
<p>That swap stuff seems odd, I dunno. But here&#8217;s another picture for your wieving pleasure?</p>
<div id="attachment_172" class="wp-caption aligncenter" style="width: 510px"><a href="http://rubbad.files.wordpress.com/2008/11/freem.png"><img class="size-full wp-image-172" title="freem" src="http://rubbad.files.wordpress.com/2008/11/freem.png" alt="free -m" width="500" height="101" /></a><p class="wp-caption-text">free -m</p></div>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/303" rel="bookmark" class="crp_title">Android</a></li><li><a href="http://blog.rubbad.com/archives/139" rel="bookmark" class="crp_title">wordpress 2.7</a></li><li><a href="http://blog.rubbad.com/archives/273" rel="bookmark" class="crp_title">Amarok 2.1 and Fedora 11 KDE</a></li><li><a href="http://blog.rubbad.com/archives/284" rel="bookmark" class="crp_title">VirtualBox 3.0 in Fedora 11</a></li><li><a href="http://blog.rubbad.com/archives/189" rel="bookmark" class="crp_title">blog moved again</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/170/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just got back from the unknown</title>
		<link>http://blog.rubbad.com/archives/154</link>
		<comments>http://blog.rubbad.com/archives/154#comments</comments>
		<pubDate>Sat, 08 Nov 2008 18:20:58 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[bsd]]></category>
		<category><![CDATA[Fedora]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/2008/11/08/just-got-back-from-the-unknown/</guid>
		<description><![CDATA[My verdict of PCBSD, for the few hours I used it. A very nice system, I like the ports system a lot. It is rubbish compared to gentoos emerge however. Right now I&#8217;m back in Fedora 10 Preview, giving it a another chance. Other thoughts; I should change the blog name to &#8220;distrohopper&#8221; or something [...]]]></description>
			<content:encoded><![CDATA[<p>My verdict of PCBSD, for the few hours I used it.<br />
A very nice system, I like the ports system a lot. It is rubbish compared to gentoos emerge however.<br />
Right now I&#8217;m back in Fedora 10 Preview, giving it a another chance. Other thoughts; I should change the blog name to &#8220;distrohopper&#8221; or something &#8230; <img src='http://blog.rubbad.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/152" rel="bookmark" class="crp_title">Venturing into the unknown</a></li><li><a href="http://blog.rubbad.com/archives/143" rel="bookmark" class="crp_title">Fedora 10 Preview</a></li><li><a href="http://blog.rubbad.com/archives/4" rel="bookmark" class="crp_title">Jou</a></li><li><a href="http://blog.rubbad.com/archives/38" rel="bookmark" class="crp_title">fail! :(</a></li><li><a href="http://blog.rubbad.com/archives/176" rel="bookmark" class="crp_title">Ubuntu 8.10 amd64 Suspend</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/154/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress 2.7</title>
		<link>http://blog.rubbad.com/archives/139</link>
		<comments>http://blog.rubbad.com/archives/139#comments</comments>
		<pubDate>Mon, 03 Nov 2008 19:22:03 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=139</guid>
		<description><![CDATA[Just upgraded my blog to wordpress 2.7 beta1, just for the ease of upgrading and plugin installation. I guess I&#8217;ll find out about how stable it is down the line&#8230; what is your favorite feauture? Related Posts:blog moved to wordpress.comwordpress stuff..the zsh shellWin key in GnomeWordPress themePowered by Contextual Related Posts]]></description>
			<content:encoded><![CDATA[<p>Just upgraded my blog to wordpress 2.7 beta1, just for the ease of upgrading and plugin installation. I guess I&#8217;ll find out about how stable it is down the line&#8230;<br />
what is your <a class="wp-caption-dd" title="worpress blog" href="http://wordpress.org/development/2008/11/whats-your-favorite-thing-about-the-27-beta/" target="_blank">favorite feauture?</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/170" rel="bookmark" class="crp_title">blog moved to wordpress.com</a></li><li><a href="http://blog.rubbad.com/archives/45" rel="bookmark" class="crp_title">wordpress stuff..</a></li><li><a href="http://blog.rubbad.com/archives/148" rel="bookmark" class="crp_title">the zsh shell</a></li><li><a href="http://blog.rubbad.com/archives/136" rel="bookmark" class="crp_title">Win key in Gnome</a></li><li><a href="http://blog.rubbad.com/archives/48" rel="bookmark" class="crp_title">WordPress theme</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/139/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Win key in Gnome</title>
		<link>http://blog.rubbad.com/archives/136</link>
		<comments>http://blog.rubbad.com/archives/136#comments</comments>
		<pubDate>Mon, 03 Nov 2008 14:15:21 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Gnome]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=136</guid>
		<description><![CDATA[Stumbled upon this interesting blog here: http://alinuxblog.wordpress.com/2008/04/11/how-to-use-the-window-keys-in-linux-gnome/ Related Posts:word aka ord.wordpress stuff..blog moved to wordpress.comwordpress 2.7Ubuntu 8.10 amd64 SuspendPowered by Contextual Related Posts]]></description>
			<content:encoded><![CDATA[<p>Stumbled upon this interesting blog here:<br />
<a href="http://alinuxblog.wordpress.com/2008/04/11/how-to-use-the-window-keys-in-linux-gnome/">http://alinuxblog.wordpress.com/2008/04/11/how-to-use-the-window-keys-in-linux-gnome/</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/64" rel="bookmark" class="crp_title">word aka ord.</a></li><li><a href="http://blog.rubbad.com/archives/45" rel="bookmark" class="crp_title">wordpress stuff..</a></li><li><a href="http://blog.rubbad.com/archives/170" rel="bookmark" class="crp_title">blog moved to wordpress.com</a></li><li><a href="http://blog.rubbad.com/archives/139" rel="bookmark" class="crp_title">wordpress 2.7</a></li><li><a href="http://blog.rubbad.com/archives/176" rel="bookmark" class="crp_title">Ubuntu 8.10 amd64 Suspend</a></li><li>Powered by <a href="http://ajaydsouza.com/wordpress/plugins/contextual-related-posts/">Contextual Related Posts</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://blog.rubbad.com/archives/136/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
