<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Compilation of VirtualBox add-ins for Ubuntu 9.10</title>
	<atom:link href="http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/feed/" rel="self" type="application/rss+xml" />
	<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/</link>
	<description>mloskot&#039;s life, programming, c++, geo and adventures</description>
	<lastBuildDate>Tue, 24 Jan 2012 22:38:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: mloskot</title>
		<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/comment-page-1/#comment-2511</link>
		<dc:creator>mloskot</dc:creator>
		<pubDate>Wed, 04 Nov 2009 20:45:33 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/?p=887#comment-2511</guid>
		<description>Hi David,

You are welcome. I&#039;m glad you&#039;ve found it helpful.</description>
		<content:encoded><![CDATA[<p>Hi David,</p>
<p>You are welcome. I&#8217;m glad you&#8217;ve found it helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Johnson</title>
		<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/comment-page-1/#comment-2510</link>
		<dc:creator>David Johnson</dc:creator>
		<pubDate>Wed, 04 Nov 2009 20:43:54 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/?p=887#comment-2510</guid>
		<description>Thanks so much for posting this. I&#039;d tripped over exactly this issue and never would have figured it out myself.</description>
		<content:encoded><![CDATA[<p>Thanks so much for posting this. I&#8217;d tripped over exactly this issue and never would have figured it out myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mloskot</title>
		<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/comment-page-1/#comment-2463</link>
		<dc:creator>mloskot</dc:creator>
		<pubDate>Mon, 07 Sep 2009 23:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/?p=887#comment-2463</guid>
		<description>@spblinux I&#039;m glad it is helpful. Thanks for the comment and improved patch.</description>
		<content:encoded><![CDATA[<p>@spblinux I&#8217;m glad it is helpful. Thanks for the comment and improved patch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: spblinux</title>
		<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/comment-page-1/#comment-2462</link>
		<dc:creator>spblinux</dc:creator>
		<pubDate>Mon, 07 Sep 2009 22:02:49 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/?p=887#comment-2462</guid>
		<description>For those who do not want to upgrade to vbox 3.x but have kernel 2.6.31:
the patch above simply disables vboxvfs (virtual folders for guest):
modules remains unloaded because of unknown symbol. 
But your blog entry made it easy to find the solution.

In my case, virtualbox-2.2.4 this patch works:
&lt;pre&gt;
--- a/vboxvfs/utils.c	2009-09-07 17:20:13.000000000 +0200
+++ b/vboxvfs/utils.c	2009-09-07 17:25:36.000000000 +0200
@@ -25,6 +25,11 @@
 #include 
 #include 
 
+#if LINUX_VERSION_CODE &gt;= KERNEL_VERSION (2, 6, 31)
+int utf8_mbtowc(wchar_t*pu, const __u8*s, int len){return utf8_to_utf32(s,len,(unicode_t *)pu);}
+int utf8_wctomb(__u8*s, wchar_t u, int maxlen){return utf32_to_utf8((unicode_t)u,s,maxlen);}
+#endif
+
 /* #define USE_VMALLOC */
 
 #if LINUX_VERSION_CODE &gt;= KERNEL_VERSION (2, 6, 0)
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>For those who do not want to upgrade to vbox 3.x but have kernel 2.6.31:<br />
the patch above simply disables vboxvfs (virtual folders for guest):<br />
modules remains unloaded because of unknown symbol.<br />
But your blog entry made it easy to find the solution.</p>
<p>In my case, virtualbox-2.2.4 this patch works:</p>
<pre>
--- a/vboxvfs/utils.c	2009-09-07 17:20:13.000000000 +0200
+++ b/vboxvfs/utils.c	2009-09-07 17:25:36.000000000 +0200
@@ -25,6 +25,11 @@
 #include
 #include 

+#if LINUX_VERSION_CODE &gt;= KERNEL_VERSION (2, 6, 31)
+int utf8_mbtowc(wchar_t*pu, const __u8*s, int len){return utf8_to_utf32(s,len,(unicode_t *)pu);}
+int utf8_wctomb(__u8*s, wchar_t u, int maxlen){return utf32_to_utf8((unicode_t)u,s,maxlen);}
+#endif
+
 /* #define USE_VMALLOC */

 #if LINUX_VERSION_CODE &gt;= KERNEL_VERSION (2, 6, 0)
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: mloskot</title>
		<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/comment-page-1/#comment-2454</link>
		<dc:creator>mloskot</dc:creator>
		<pubDate>Sat, 22 Aug 2009 21:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/?p=887#comment-2454</guid>
		<description>You&#039;re welcome!</description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: darkblue_b</title>
		<link>http://mateusz.loskot.net/2009/08/22/compilation-of-virtualbox-addins-for-ubuntu-910/comment-page-1/#comment-2453</link>
		<dc:creator>darkblue_b</dc:creator>
		<pubDate>Sat, 22 Aug 2009 21:13:14 +0000</pubDate>
		<guid isPermaLink="false">http://mateusz.loskot.net/?p=887#comment-2453</guid>
		<description>thank you mloskot.. this is great to catch..
(I filed a bug report on FireWire handling, just so you know..  :-)</description>
		<content:encoded><![CDATA[<p>thank you mloskot.. this is great to catch..<br />
(I filed a bug report on FireWire handling, just so you know..  :-)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

