<?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>Technical Diary &#187; virtualbox</title>
	<atom:link href="http://andriigrytsenko.net/tag/virtualbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://andriigrytsenko.net</link>
	<description>With Andrii Grytsenko</description>
	<lastBuildDate>Tue, 17 Aug 2010 08:25:33 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to compile VirtualBox module</title>
		<link>http://andriigrytsenko.net/2009/07/how-to-make-virtualbox-module/</link>
		<comments>http://andriigrytsenko.net/2009/07/how-to-make-virtualbox-module/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:59:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://andriigrytsenko.net/?p=271</guid>
		<description><![CDATA[In the event of you repository doesn&#8217;t consist VirtualBox&#8217;s kernel module for your current kernel version. In this post I will describe how to make it manually.

NOTICE: In my case distro is Debian.
My current kernel version is :
# uname -r
2.6.30-1-686
Let&#8217;s  have a look about virtualbox module :
# apt-cache search virtualbox &#124; grep [you_kernel_version]
# 
Nothing [...]]]></description>
			<content:encoded><![CDATA[<p>In the event of you repository doesn&#8217;t consist VirtualBox&#8217;s kernel module for your current kernel version. In this post I will describe how to make it manually.<br />
<span id="more-271"></span></p>
<p>NOTICE: In my case distro is Debian.</p>
<p>My current kernel version is :</p>
<pre># uname -r
2.6.30-1-686</pre>
<p>Let&#8217;s  have a look about virtualbox module :</p>
<pre># apt-cache search virtualbox | grep [you_kernel_version]
# </pre>
<p>Nothing was found. </p>
<p>First of all we have to get kernel sources: </p>
<pre># apt-get install linux-source-[you_kernel_version]</pre>
<p>Go to /usr/src and delete symbolic link <em>linux</em> if it exist: </p>
<pre># cd /usr/src
# rm linux </pre>
<p>extract files from archive and make new one linx:</p>
<pre># tar -xjvf linux-source-2.6.30.tar.bz2
# ln -s linux-source-2.6.30 linux</pre>
<p>Now go to sources and set current configuration:</p>
<pre># cd linux
# make oldconfig &#038;&#038; make prepare</pre>
<p>After finished, run : </p>
<pre># /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel module:done..
Recompiling VirtualBox kernel module:done..
Starting VirtualBox kernel module:done..</pre>
<p>Check is everything done right: </p>
<pre># lsmod | grep -i vbox</pre>
<p>It&#8217;s okay if you get something like this: </p>
<pre>vboxdrv                63936  0</pre>
<p>Now you are ready to run VirtualBox. </p>
]]></content:encoded>
			<wfw:commentRss>http://andriigrytsenko.net/2009/07/how-to-make-virtualbox-module/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
