<?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: VirtualBox OSE on Debian/Ubuntu Linux</title>
	<atom:link href="http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/</link>
	<description>Linux.  GNU.  Freedom.</description>
	<lastBuildDate>Fri, 17 May 2013 20:46:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.6-beta2-24176</generator>
	<item>
		<title>By: ghost</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-105470</link>
		<dc:creator>ghost</dc:creator>
		<pubDate>Thu, 31 Jul 2008 04:40:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-105470</guid>
		<description><![CDATA[If I remember right the OSE version does not have usb devices. You need to install the regular version.]]></description>
		<content:encoded><![CDATA[<p>If I remember right the OSE version does not have usb devices. You need to install the regular version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anith</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-91152</link>
		<dc:creator>Anith</dc:creator>
		<pubDate>Thu, 07 Feb 2008 11:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-91152</guid>
		<description><![CDATA[yep...

Here the trick to make Vbox fullscreen and to get all features working...

Install VirtualBox Guest Additions

The Guest Additions package installs some add-ons into the Guest OS. The most noticeable of these is Mouse Integration which allows the mouse to function without the need to ‘lock’ it into the VM. I also believe that the Guest Additions install special display drivers. This is important if you want your VirtualBox to run in higher resolutions. I pulled these instructions from the official VirtualBox documentation. It’s a PDF. I don’t know why. They also want you to run the script with sh but why bother?

In the Guest window, that is, the window that is displaying your Guest OS, do Devices -&gt; Install Guest Additions. VirtualBox will prompt you to download the .iso if you haven’t already. After the download finishes you will be prompted to mount the ISO in your VM. Say yes. Run this on the command line of the Guest OS.

sudo /media/cdrom0/VBoxLinuxAdditions.run

The VirtualBox documentation says you can choose which drivers you want to install. If you’re interested in this take a look at sudo /media/cdrom0/VBoxLinuxAdditions.run help

I shut down the Guest OS and took a snapshot at this point. I planned on fiddling with Xorg configurations next and it is much easier to load up a VM snapshot than it is to restore a backup xorg.conf.
Change the VirtualBox Resolution

After my Ubuntu install, Xorg was configured to only support 800×600. This was way too small for me. My main machine is a widescreen laptop running at 1680×1050. I want two options.

    * 1024×768 for running VirtualBox windowed
    * 1680×1050 for running VirtualBox fullscreen

The VirtualBox documentation has the following to say about running higher resolutions in your VM (page 50 if you’re curious)

VirtualBox can use any default X graphics mode which fits into the virtual video memory allocated to the virtual machine, as described in chapter 3.7.1, General settings, page 37. You can also add your own modes to the X server configuration file. You simply need to add them to the “Modes” list in the “Display” subsection of the “Screen” section.

In your Guest OS, edit your xorg.conf file by running sudo gedit /etc/X11/xorg.conf. Here is what I ended up with.

Section &quot;Screen&quot;
  Identifier    &quot;Default Screen&quot;
  Device        &quot;Generic Video Card&quot;
  Monitor       &quot;Generic Monitor&quot;
  DefaultDepth  24
  SubSection    &quot;Display&quot;
    Modes         &quot;1680x1050&quot; &quot;1024x768&quot; &quot;800x600&quot;
  EndSubSection
EndSection

I rebooted to make sure things worked. I then shut down the Guest OS and took another snapshot.

I am not an Xorg expert. I found if I listed 1680×1050 first Ubuntu’s login screen would be 1680×1050. After logging into my user account I was able to do System -&gt; Preferences -&gt; Screen Resolution and change to 1024×768 without problems. If instead I listed 1024×768 first Ubuntu’s login screen would be 1024×768. After logging in if I attempted to change the Screen Resolution to 1680×1050 (I believe) the horizontal sync would be set incorrectly. By this I mean I couldn’t see jack. I tried figuring out a way to have the default be 1024×768 with the option of switching to 1680×1050, but after an hour of tweaking I gave up. If you are more familiar with Xorg and know what I’m doing wrong, please leave a comment.
Notes

    * The Ubuntu install DVD decided that the VM’s max resolution should be 800×600. This, hilariously, is too small to click on the Forward and Ok buttons in the install wizard. I had to figure out that Alt-F went forward in the dialogs. The final dialog needed an Enter to start the install.
    * As of this writing, the version of VirtualBox that is installed by virtualbox-ose is 1.5.0.

      $ dpkg-query --show virtualbox-ose
      virtualbox-ose  1.5.0-dfsg2-1ubuntu3

      It looks like the Ubuntu guys are currently working on getting a VirtualBox 1.5.4 package up. I suppose if you really wanted to, you could install VirtualBox 1.5.4 from source. I found this guide to install from source, but didn’t bother with it.
    * I still need to figure out how VirtualBox network bridging works. My VM does have net access because it is able to download packages from online repositories with apt-get. At the same time I couldn’t do something simple like ping my web server. Apparently this is expected. Page 58 of the VirtualBox documentation says: Please note that the ping utility does not work over NAT. There is another option, host interface networking, that might give me more control over the VM’s networking.

Cheers,

Anith]]></description>
		<content:encoded><![CDATA[<p>yep&#8230;</p>
<p>Here the trick to make Vbox fullscreen and to get all features working&#8230;</p>
<p>Install VirtualBox Guest Additions</p>
<p>The Guest Additions package installs some add-ons into the Guest OS. The most noticeable of these is Mouse Integration which allows the mouse to function without the need to ‘lock’ it into the VM. I also believe that the Guest Additions install special display drivers. This is important if you want your VirtualBox to run in higher resolutions. I pulled these instructions from the official VirtualBox documentation. It’s a PDF. I don’t know why. They also want you to run the script with sh but why bother?</p>
<p>In the Guest window, that is, the window that is displaying your Guest OS, do Devices -&gt; Install Guest Additions. VirtualBox will prompt you to download the .iso if you haven’t already. After the download finishes you will be prompted to mount the ISO in your VM. Say yes. Run this on the command line of the Guest OS.</p>
<p>sudo /media/cdrom0/VBoxLinuxAdditions.run</p>
<p>The VirtualBox documentation says you can choose which drivers you want to install. If you’re interested in this take a look at sudo /media/cdrom0/VBoxLinuxAdditions.run help</p>
<p>I shut down the Guest OS and took a snapshot at this point. I planned on fiddling with Xorg configurations next and it is much easier to load up a VM snapshot than it is to restore a backup xorg.conf.<br />
Change the VirtualBox Resolution</p>
<p>After my Ubuntu install, Xorg was configured to only support 800×600. This was way too small for me. My main machine is a widescreen laptop running at 1680×1050. I want two options.</p>
<p>    * 1024×768 for running VirtualBox windowed<br />
    * 1680×1050 for running VirtualBox fullscreen</p>
<p>The VirtualBox documentation has the following to say about running higher resolutions in your VM (page 50 if you’re curious)</p>
<p>VirtualBox can use any default X graphics mode which fits into the virtual video memory allocated to the virtual machine, as described in chapter 3.7.1, General settings, page 37. You can also add your own modes to the X server configuration file. You simply need to add them to the “Modes” list in the “Display” subsection of the “Screen” section.</p>
<p>In your Guest OS, edit your xorg.conf file by running sudo gedit /etc/X11/xorg.conf. Here is what I ended up with.</p>
<p>Section &#8220;Screen&#8221;<br />
  Identifier    &#8220;Default Screen&#8221;<br />
  Device        &#8220;Generic Video Card&#8221;<br />
  Monitor       &#8220;Generic Monitor&#8221;<br />
  DefaultDepth  24<br />
  SubSection    &#8220;Display&#8221;<br />
    Modes         &#8220;1680&#215;1050&#8243; &#8220;1024&#215;768&#8243; &#8220;800&#215;600&#8243;<br />
  EndSubSection<br />
EndSection</p>
<p>I rebooted to make sure things worked. I then shut down the Guest OS and took another snapshot.</p>
<p>I am not an Xorg expert. I found if I listed 1680×1050 first Ubuntu’s login screen would be 1680×1050. After logging into my user account I was able to do System -&gt; Preferences -&gt; Screen Resolution and change to 1024×768 without problems. If instead I listed 1024×768 first Ubuntu’s login screen would be 1024×768. After logging in if I attempted to change the Screen Resolution to 1680×1050 (I believe) the horizontal sync would be set incorrectly. By this I mean I couldn’t see jack. I tried figuring out a way to have the default be 1024×768 with the option of switching to 1680×1050, but after an hour of tweaking I gave up. If you are more familiar with Xorg and know what I’m doing wrong, please leave a comment.<br />
Notes</p>
<p>    * The Ubuntu install DVD decided that the VM’s max resolution should be 800×600. This, hilariously, is too small to click on the Forward and Ok buttons in the install wizard. I had to figure out that Alt-F went forward in the dialogs. The final dialog needed an Enter to start the install.<br />
    * As of this writing, the version of VirtualBox that is installed by virtualbox-ose is 1.5.0.</p>
<p>      $ dpkg-query &#8211;show virtualbox-ose<br />
      virtualbox-ose  1.5.0-dfsg2-1ubuntu3</p>
<p>      It looks like the Ubuntu guys are currently working on getting a VirtualBox 1.5.4 package up. I suppose if you really wanted to, you could install VirtualBox 1.5.4 from source. I found this guide to install from source, but didn’t bother with it.<br />
    * I still need to figure out how VirtualBox network bridging works. My VM does have net access because it is able to download packages from online repositories with apt-get. At the same time I couldn’t do something simple like ping my web server. Apparently this is expected. Page 58 of the VirtualBox documentation says: Please note that the ping utility does not work over NAT. There is another option, host interface networking, that might give me more control over the VM’s networking.</p>
<p>Cheers,</p>
<p>Anith</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: O.S. Revolution &#187; VirtualBox OSE in Debian Sid - installazione</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-85964</link>
		<dc:creator>O.S. Revolution &#187; VirtualBox OSE in Debian Sid - installazione</dc:creator>
		<pubDate>Sun, 23 Dec 2007 14:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-85964</guid>
		<description><![CDATA[[...] di Ubuntu Gutsy possono usare la stessa procedura descritta qui come evidenzia in questo post Aaron Toponce. Tags:Debian, Linux, Macchine, OpenSource, OS, Virtualbox, [...]]]></description>
		<content:encoded><![CDATA[<p>[...] di Ubuntu Gutsy possono usare la stessa procedura descritta qui come evidenzia in questo post Aaron Toponce. Tags:Debian, Linux, Macchine, OpenSource, OS, Virtualbox, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elmar Zeeb</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-74080</link>
		<dc:creator>Elmar Zeeb</dc:creator>
		<pubDate>Wed, 24 Oct 2007 11:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-74080</guid>
		<description><![CDATA[if you remove the 
&lt;code&gt;
       pre-up /sbin/ifconfig tap0 up
&lt;/code&gt;
and the
&lt;code&gt;
        post-down /sbin/ifconfig tap0 down
&lt;/code&gt;
lines and do a 
sudo /sbin/ifconfig tap0 up
before and a
sudo /sbin/ifconfig tap0 down
after starting the virtual machine, its working. This could also be done in a more automated way but its working!

Elmar]]></description>
		<content:encoded><![CDATA[<p>if you remove the</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; &nbsp; &nbsp;pre-up /sbin/ifconfig tap0 up</div></td></tr></tbody></table></div>
<p>and the</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp; &nbsp; &nbsp; &nbsp; post-down /sbin/ifconfig tap0 down</div></td></tr></tbody></table></div>
<p>lines and do a<br />
sudo /sbin/ifconfig tap0 up<br />
before and a<br />
sudo /sbin/ifconfig tap0 down<br />
after starting the virtual machine, its working. This could also be done in a more automated way but its working!</p>
<p>Elmar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elmar Zeeb</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-73893</link>
		<dc:creator>Elmar Zeeb</dc:creator>
		<pubDate>Tue, 23 Oct 2007 15:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-73893</guid>
		<description><![CDATA[I&#039;m running virtual box with bridged networking partially working.

this is the corresponding part of my /etc/network/interfaces:
&lt;code&gt;
[...]
iface eth0 inet dhcp
        pre-up /sbin/ifconfig eth0br 0.0.0.0 down
        pre-up /usr/sbin/brctl addbr eth0
        pre-up /usr/sbin/brctl setfd eth0 1
        pre-up /usr/sbin/brctl addif eth0 eth0br
        pre-up /sbin/ifconfig eth0 up
        pre-up /usr/sbin/tunctl -t tap0 -u elmex
        pre-up /usr/sbin/brctl addif eth0 tap0
        pre-up /sbin/ifconfig tap0 up
        pre-up /sbin/ifconfig eth0br 0.0.0.0 up
        post-down /sbin/ifconfig tap0 down
        post-down /sbin/ifconfig eth0 down
        post-down /sbin/ifconfig eth0br 0.0.0.0 down
        post-down /usr/sbin/brctl delif eth0 eth0br
        post-down /usr/sbin/brctl delif eth0 tap0
        post-down /usr/sbin/brctl delbr eth0
        post-down /usr/sbin/tunctl -d tap0
[...]
&lt;/code&gt;

i also renamed the eth0 device to eth0br so the bridge can be named eth0.

In feisty this can be done in /etc/iftab in gutsy in /etc/udev/rules.d/70-persistent-net.rules

this worked without problems in feisty but was broken after a update about 3 weeks ago or so. the same problem with gutsy. It only works one time (after reboot). There must be some problems with access rights of the tap or tun device.

Cheers,
Elmar]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m running virtual box with bridged networking partially working.</p>
<p>this is the corresponding part of my /etc/network/interfaces:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">[...]<br />
iface eth0 inet dhcp<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /sbin/ifconfig eth0br 0.0.0.0 down<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /usr/sbin/brctl addbr eth0<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /usr/sbin/brctl setfd eth0 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /usr/sbin/brctl addif eth0 eth0br<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /sbin/ifconfig eth0 up<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /usr/sbin/tunctl -t tap0 -u elmex<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /usr/sbin/brctl addif eth0 tap0<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /sbin/ifconfig tap0 up<br />
&nbsp; &nbsp; &nbsp; &nbsp; pre-up /sbin/ifconfig eth0br 0.0.0.0 up<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /sbin/ifconfig tap0 down<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /sbin/ifconfig eth0 down<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /sbin/ifconfig eth0br 0.0.0.0 down<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /usr/sbin/brctl delif eth0 eth0br<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /usr/sbin/brctl delif eth0 tap0<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /usr/sbin/brctl delbr eth0<br />
&nbsp; &nbsp; &nbsp; &nbsp; post-down /usr/sbin/tunctl -d tap0<br />
[...]</div></td></tr></tbody></table></div>
<p>i also renamed the eth0 device to eth0br so the bridge can be named eth0.</p>
<p>In feisty this can be done in /etc/iftab in gutsy in /etc/udev/rules.d/70-persistent-net.rules</p>
<p>this worked without problems in feisty but was broken after a update about 3 weeks ago or so. the same problem with gutsy. It only works one time (after reboot). There must be some problems with access rights of the tap or tun device.</p>
<p>Cheers,<br />
Elmar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Karl Bowden</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71772</link>
		<dc:creator>Karl Bowden</dc:creator>
		<pubDate>Mon, 08 Oct 2007 08:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71772</guid>
		<description><![CDATA[Hey Aaron,
parprouted is what you need for easy network bridging.
It is very usefull on laptops where you want to bridge a virtual machine that you want to answer pings on a wireless interface.
I&#039;ll have to start working on a parprouted guide. Dont know where to put the guide once i finish it though.
Cheers,
Karl]]></description>
		<content:encoded><![CDATA[<p>Hey Aaron,<br />
parprouted is what you need for easy network bridging.<br />
It is very usefull on laptops where you want to bridge a virtual machine that you want to answer pings on a wireless interface.<br />
I&#8217;ll have to start working on a parprouted guide. Dont know where to put the guide once i finish it though.<br />
Cheers,<br />
Karl</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: estama</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71640</link>
		<dc:creator>estama</dc:creator>
		<pubDate>Sun, 07 Oct 2007 00:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71640</guid>
		<description><![CDATA[-About the not being able to up the resolution in the guest. Do the math res_x*res_y*bytes_per_pixel and change the virtual Graphic Card&#039;s memory to something larger than that.
-About the bridging. I don&#039;t like bridging. What i do is to redirect the ports i want from the host to the guest (while in NAT mode). Download the manual and see how it is done.]]></description>
		<content:encoded><![CDATA[<p>-About the not being able to up the resolution in the guest. Do the math res_x*res_y*bytes_per_pixel and change the virtual Graphic Card&#8217;s memory to something larger than that.<br />
-About the bridging. I don&#8217;t like bridging. What i do is to redirect the ports i want from the host to the guest (while in NAT mode). Download the manual and see how it is done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71615</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Sat, 06 Oct 2007 19:17:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71615</guid>
		<description><![CDATA[@Paul-  Currently, it&#039;s only in Debian Sid.  It hasn&#039;t reached testing or stable yet.

@Shane-  I&#039;ll keep my readers posted if I make any progress on that.

@Derek-  USB, apparently, is only supported in the PUEL version, which is rather unfortunate.  I can&#039;t mount block devices via USB, but plugging in USB input devices, such as keyboards and mice seem to work fine.  Hopefully, they will remove this cripple-ware from the OSE.]]></description>
		<content:encoded><![CDATA[<p>@Paul-  Currently, it&#8217;s only in Debian Sid.  It hasn&#8217;t reached testing or stable yet.</p>
<p>@Shane-  I&#8217;ll keep my readers posted if I make any progress on that.</p>
<p>@Derek-  USB, apparently, is only supported in the PUEL version, which is rather unfortunate.  I can&#8217;t mount block devices via USB, but plugging in USB input devices, such as keyboards and mice seem to work fine.  Hopefully, they will remove this cripple-ware from the OSE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane Par-Due</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71606</link>
		<dc:creator>Shane Par-Due</dc:creator>
		<pubDate>Sat, 06 Oct 2007 18:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71606</guid>
		<description><![CDATA[Derek, even on the puel version, my windows mobile phone wouldn&#039;t authenticate with vista&#039;s mobile device utility. It would show it as a connected usb device and even installed the drivers just fine, but it couldn&#039;t sync.

Good luck! hehe]]></description>
		<content:encoded><![CDATA[<p>Derek, even on the puel version, my windows mobile phone wouldn&#8217;t authenticate with vista&#8217;s mobile device utility. It would show it as a connected usb device and even installed the drivers just fine, but it couldn&#8217;t sync.</p>
<p>Good luck! hehe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek Buranen</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71602</link>
		<dc:creator>Derek Buranen</dc:creator>
		<pubDate>Sat, 06 Oct 2007 17:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71602</guid>
		<description><![CDATA[Did you get USB support to work?  I don&#039;t think it&#039;s in the -ose version, but in the puel version.  I had it working in Feisty days with 1.4, but 1.5 and gutsy don&#039;t seem to like the USB.  Just curious if you&#039;ve had experience.  (My windows mobile phone is dying for USB support)]]></description>
		<content:encoded><![CDATA[<p>Did you get USB support to work?  I don&#8217;t think it&#8217;s in the -ose version, but in the puel version.  I had it working in Feisty days with 1.4, but 1.5 and gutsy don&#8217;t seem to like the USB.  Just curious if you&#8217;ve had experience.  (My windows mobile phone is dying for USB support)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane Par-Due</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71601</link>
		<dc:creator>Shane Par-Due</dc:creator>
		<pubDate>Sat, 06 Oct 2007 17:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71601</guid>
		<description><![CDATA[I have really enjoyed using Virtualbox as well, but like you..I ran into the bridged network issue. If I could get that resolved, I would have no need for VMware Server anymore!]]></description>
		<content:encoded><![CDATA[<p>I have really enjoyed using Virtualbox as well, but like you..I ran into the bridged network issue. If I could get that resolved, I would have no need for VMware Server anymore!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Cartwright</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71597</link>
		<dc:creator>Paul Cartwright</dc:creator>
		<pubDate>Sat, 06 Oct 2007 17:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71597</guid>
		<description><![CDATA[didn&#039;t work for me, running Debian Etch:
# sudo aptitude install virtualbox-ose virtualbox-ose-source module-assistant
Reading package lists... Done
Building dependency tree... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done
Building tag database... Done
Couldn&#039;t find any package whose name or description matched &quot;virtualbox-ose&quot;
Couldn&#039;t find any package whose name or description matched &quot;virtualbox-ose-source&quot;
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done]]></description>
		<content:encoded><![CDATA[<p>didn&#8217;t work for me, running Debian Etch:<br />
# sudo aptitude install virtualbox-ose virtualbox-ose-source module-assistant<br />
Reading package lists&#8230; Done<br />
Building dependency tree&#8230; Done<br />
Reading extended state information<br />
Initializing package states&#8230; Done<br />
Reading task descriptions&#8230; Done<br />
Building tag database&#8230; Done<br />
Couldn&#8217;t find any package whose name or description matched &#8220;virtualbox-ose&#8221;<br />
Couldn&#8217;t find any package whose name or description matched &#8220;virtualbox-ose-source&#8221;<br />
No packages will be installed, upgraded, or removed.<br />
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.<br />
Need to get 0B of archives. After unpacking 0B will be used.<br />
Writing extended state information&#8230; Done</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cpradio</title>
		<link>http://pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71582</link>
		<dc:creator>cpradio</dc:creator>
		<pubDate>Sat, 06 Oct 2007 15:34:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.pthree.org/2007/10/06/virtualbox-ose-on-debianubuntu-linux/#comment-71582</guid>
		<description><![CDATA[I am in the same situation and settled on VMWare as I could then run it as a server on a spare machine and use VMWare Server Console on my other machines to connect to the Server from anywhere.

If Virtual Box has that solution, I missed it and need to give it another try, but without being able to remotely connect to my Virtual Machine, it just doesn&#039;t fit my needs.

Have you had any such luck with Virtual Box to get it to act like a Virtual Server?]]></description>
		<content:encoded><![CDATA[<p>I am in the same situation and settled on VMWare as I could then run it as a server on a spare machine and use VMWare Server Console on my other machines to connect to the Server from anywhere.</p>
<p>If Virtual Box has that solution, I missed it and need to give it another try, but without being able to remotely connect to my Virtual Machine, it just doesn&#8217;t fit my needs.</p>
<p>Have you had any such luck with Virtual Box to get it to act like a Virtual Server?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
