<?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; VirtualBox</title>
	<atom:link href="http://blog.rubbad.com/archives/tag/virtualbox/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>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>Got to stop&#8230;</title>
		<link>http://blog.rubbad.com/archives/238</link>
		<comments>http://blog.rubbad.com/archives/238#comments</comments>
		<pubDate>Fri, 20 Mar 2009 18:07:29 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://rubbad.wordpress.com/2009/03/20/got-to-stop/</guid>
		<description><![CDATA[..My seemingly endless distrohopping. If anyone&#8217;s got some tips how to stop hopping, please do share them! Anywhoo I&#8217;m back to Ubuntu. Gnome with Dust Sand theme. Still need to install vmware server 2 on the laptop, so I can study Windows servers + networking and AD and WSUS and Exchange and all the other [...]]]></description>
			<content:encoded><![CDATA[<p>..My seemingly endless distrohopping.<br />
If anyone&#8217;s got some tips how to stop hopping, please do share them! <img src='http://blog.rubbad.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Anywhoo I&#8217;m back to Ubuntu.<br />
Gnome with Dust Sand theme. Still need to install vmware server 2 on the laptop, so I can study Windows servers + networking and AD and WSUS and Exchange and all the other buggy stuff. Vmware server 2 is good in the sense that it actually shares the NAT between virtual machines, unlike VirtualBox. Otherwise I&#8217;d use that. Vmware server 2 is fast run through a local net too, no mentionable lag as I first suspected there would be. Anyhow I&#8217;m just rambling, I&#8217;ll get back to my whiskey on the rocks now.<br />
Thanks for reading.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><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/7" rel="bookmark" class="crp_title">Funderingar</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/143" rel="bookmark" class="crp_title">Fedora 10 Preview</a></li><li><a href="http://blog.rubbad.com/archives/23" rel="bookmark" class="crp_title">Virtualbox</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/238/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fedora 10 Preview #2</title>
		<link>http://blog.rubbad.com/archives/169</link>
		<comments>http://blog.rubbad.com/archives/169#comments</comments>
		<pubDate>Fri, 21 Nov 2008 18:36:40 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/2008/11/21/fedora-10-preview-2/</guid>
		<description><![CDATA[4 days until release! This release is gonna rock hard! Only issue I have is with pulseaudio, choppy sound for some strange reason, but other than that, nothing. Just wating for virtualbox to support fedora 10 so I can test running CentOS using my favorite virtualization product. I haven&#8217;t tried installing it from the tar.gz [...]]]></description>
			<content:encoded><![CDATA[<p>4 days until release! This release is gonna rock hard! Only issue I have is with pulseaudio, choppy sound for some strange reason, but other than that, nothing. <img src='http://blog.rubbad.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Just wating for virtualbox to support fedora 10 so I can test running CentOS using my favorite virtualization product. I haven&#8217;t tried installing it from the tar.gz yet</p>
<p>But on the other hand, I might just want to check out what is supported directly from fedora too&#8230; but not tonight.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><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/207" rel="bookmark" class="crp_title">testdriving OpenSolaris 2008.11</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/184" rel="bookmark" class="crp_title">Fedora 10 Multimedia</a></li><li><a href="http://blog.rubbad.com/archives/167" rel="bookmark" class="crp_title">64bit Flash Player 10</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/169/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virtualbox</title>
		<link>http://blog.rubbad.com/archives/23</link>
		<comments>http://blog.rubbad.com/archives/23#comments</comments>
		<pubDate>Fri, 08 Aug 2008 04:09:56 +0000</pubDate>
		<dc:creator>Magnus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Virtual]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://blog.rubbad.com/?p=23</guid>
		<description><![CDATA[Virtualbox &#62; VMware. Seamless integration is worth mentioning. And it&#8217;s fast! Related Posts:Got to stop&#8230;VMwareFunderingarVirtualBox 3.0 in Fedora 11ZeitgeistPowered by Contextual Related Posts]]></description>
			<content:encoded><![CDATA[<p>Virtualbox &gt; VMware.<br />
Seamless integration is worth mentioning. And it&#8217;s fast!</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://blog.rubbad.com/archives/238" rel="bookmark" class="crp_title">Got to stop&#8230;</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/7" rel="bookmark" class="crp_title">Funderingar</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/56" rel="bookmark" class="crp_title">Zeitgeist</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/23/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
