<?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: How To: Install VirtualBox on Ubuntu 8.04LTS (Hardy Heron) [Tutorial]</title>
	<atom:link href="http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/feed" rel="self" type="application/rss+xml" />
	<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial</link>
	<description>Family, Friends, Computers, and Linux</description>
	<lastBuildDate>Sun, 07 Mar 2010 16:39:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SendDerek</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-1001</link>
		<dc:creator>SendDerek</dc:creator>
		<pubDate>Sun, 12 Apr 2009 05:17:30 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-1001</guid>
		<description>Yuck.

You may want to post over at the Fedora Forums.  They have a lot of really knowledgeable people over there all willing to help.</description>
		<content:encoded><![CDATA[<p>Yuck.</p>
<p>You may want to post over at the Fedora Forums.  They have a lot of really knowledgeable people over there all willing to help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lawrence Law</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-813</link>
		<dc:creator>Lawrence Law</dc:creator>
		<pubDate>Mon, 02 Mar 2009 09:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-813</guid>
		<description>I&#039;m lost.  When I type &quot;sudo gedit /etc/init.d/mountdevsubfs.sh&quot; in terminal, i got the below which seem totally different.

#! /bin/sh
### BEGIN INIT INFO
# Provides:          mountdevsubfs
# Required-Start:    mountkernfs
# Required-Stop:
# Should-Start:      udev
# Default-Start:     S
# Default-Stop:
# Short-Description: Mount special file systems under /dev.
# Description:       Mount the virtual filesystems the kernel provides
#                    that ordinarily live under the /dev filesystem.
### END INIT INFO
#
# This script gets called multiple times during boot
#

PATH=/lib/init:/sbin:/bin
TTYGRP=5
TTYMODE=620
[ -f /etc/default/devpts ] &amp;&amp; . /etc/default/devpts

TMPFS_SIZE=
[ -f /etc/default/tmpfs ] &amp;&amp; . /etc/default/tmpfs

KERNEL=&quot;$(uname -s)&quot;

. /lib/lsb/init-functions
. /lib/init/mount-functions.sh

do_start () {
	#
	# Mount a tmpfs on /dev/shm
	#
	SHM_OPT=
	[ &quot;${SHM_SIZE:=$TMPFS_SIZE}&quot; ] &amp;&amp; SHM_OPT=&quot;,size=$SHM_SIZE&quot;
	domount tmpfs shmfs /dev/shm tmpfs -onosuid,nodev$SHM_OPT

	#
	# Mount /dev/pts. Master ptmx node is already created by udev.
	#
        domount devpts &quot;&quot; /dev/pts devpts -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE
}

case &quot;$1&quot; in
  &quot;&quot;)
	echo &quot;Warning: mountdevsubfs should be called with the &#039;start&#039; argument.&quot; &gt;&amp;2
	do_start
	;;
  start)
	do_start
	;;
  restart&#124;reload&#124;force-reload)
	echo &quot;Error: argument &#039;$1&#039; not supported&quot; &gt;&amp;2
	exit 3
	;;
  stop)
	# No-op
	;;
  *)
	echo &quot;Usage: mountdevsubfs [start&#124;stop]&quot; &gt;&amp;2
	exit 3
	;;
esac</description>
		<content:encoded><![CDATA[<p>I&#8217;m lost.  When I type &#8220;sudo gedit /etc/init.d/mountdevsubfs.sh&#8221; in terminal, i got the below which seem totally different.</p>
<p>#! /bin/sh<br />
### BEGIN INIT INFO<br />
# Provides:          mountdevsubfs<br />
# Required-Start:    mountkernfs<br />
# Required-Stop:<br />
# Should-Start:      udev<br />
# Default-Start:     S<br />
# Default-Stop:<br />
# Short-Description: Mount special file systems under /dev.<br />
# Description:       Mount the virtual filesystems the kernel provides<br />
#                    that ordinarily live under the /dev filesystem.<br />
### END INIT INFO<br />
#<br />
# This script gets called multiple times during boot<br />
#</p>
<p>PATH=/lib/init:/sbin:/bin<br />
TTYGRP=5<br />
TTYMODE=620<br />
[ -f /etc/default/devpts ] &amp;&amp; . /etc/default/devpts</p>
<p>TMPFS_SIZE=<br />
[ -f /etc/default/tmpfs ] &amp;&amp; . /etc/default/tmpfs</p>
<p>KERNEL=&#8221;$(uname -s)&#8221;</p>
<p>. /lib/lsb/init-functions<br />
. /lib/init/mount-functions.sh</p>
<p>do_start () {<br />
	#<br />
	# Mount a tmpfs on /dev/shm<br />
	#<br />
	SHM_OPT=<br />
	[ "${SHM_SIZE:=$TMPFS_SIZE}" ] &amp;&amp; SHM_OPT=&#8221;,size=$SHM_SIZE&#8221;<br />
	domount tmpfs shmfs /dev/shm tmpfs -onosuid,nodev$SHM_OPT</p>
<p>	#<br />
	# Mount /dev/pts. Master ptmx node is already created by udev.<br />
	#<br />
        domount devpts &#8220;&#8221; /dev/pts devpts -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE<br />
}</p>
<p>case &#8220;$1&#8243; in<br />
  &#8220;&#8221;)<br />
	echo &#8220;Warning: mountdevsubfs should be called with the &#8217;start&#8217; argument.&#8221; &gt;&amp;2<br />
	do_start<br />
	;;<br />
  start)<br />
	do_start<br />
	;;<br />
  restart|reload|force-reload)<br />
	echo &#8220;Error: argument &#8216;$1&#8242; not supported&#8221; &gt;&amp;2<br />
	exit 3<br />
	;;<br />
  stop)<br />
	# No-op<br />
	;;<br />
  *)<br />
	echo &#8220;Usage: mountdevsubfs [start|stop]&#8221; &gt;&amp;2<br />
	exit 3<br />
	;;<br />
esac</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anrooo</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-681</link>
		<dc:creator>Anrooo</dc:creator>
		<pubDate>Thu, 08 Jan 2009 00:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-681</guid>
		<description>I&#039;m in the same boat as kang, except not using a laptop.  I have installed Virtualbox and everything is working great.  Trying to use msn messenger for my webcam but it is not detected by Virtualbox.    

My cam works in amsn etc.  USB is working also as mouse etc is working fine.  Just the darn webcam!</description>
		<content:encoded><![CDATA[<p>I&#8217;m in the same boat as kang, except not using a laptop.  I have installed Virtualbox and everything is working great.  Trying to use msn messenger for my webcam but it is not detected by Virtualbox.    </p>
<p>My cam works in amsn etc.  USB is working also as mouse etc is working fine.  Just the darn webcam!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kang</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-575</link>
		<dc:creator>kang</dc:creator>
		<pubDate>Mon, 10 Nov 2008 03:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-575</guid>
		<description>some more information about my case.

I have hardy installed, webcam is working in ubuntu.</description>
		<content:encoded><![CDATA[<p>some more information about my case.</p>
<p>I have hardy installed, webcam is working in ubuntu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kang</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-574</link>
		<dc:creator>kang</dc:creator>
		<pubDate>Mon, 10 Nov 2008 03:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-574</guid>
		<description>Hi, Thanks for the detail info. I was able to install virtualbox by following your instruction. Everything are working fine except my webcam cannot be detected. The purpose I install virtualbox is to use MSN live messenger to chat with friends and families. It would be a big help to me if you can give some advices.

I have a Dell vostro 1400 laptop, the webcam is an &quot;Integrated 2.0 mega pixel webcam 1400&quot;. 

BTW, I&#039;m not sure is the webcam is a usb webcam or what. But I have the USB enabled(I think, cause the usb mouse is working).</description>
		<content:encoded><![CDATA[<p>Hi, Thanks for the detail info. I was able to install virtualbox by following your instruction. Everything are working fine except my webcam cannot be detected. The purpose I install virtualbox is to use MSN live messenger to chat with friends and families. It would be a big help to me if you can give some advices.</p>
<p>I have a Dell vostro 1400 laptop, the webcam is an &#8220;Integrated 2.0 mega pixel webcam 1400&#8243;. </p>
<p>BTW, I&#8217;m not sure is the webcam is a usb webcam or what. But I have the USB enabled(I think, cause the usb mouse is working).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Torres</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-473</link>
		<dc:creator>Antonio Torres</dc:creator>
		<pubDate>Sat, 06 Sep 2008 01:28:00 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-473</guid>
		<description>You&#039;ve been very helpful my friend. I&#039;ll let you know if I finally get it right.

Thanks.</description>
		<content:encoded><![CDATA[<p>You&#8217;ve been very helpful my friend. I&#8217;ll let you know if I finally get it right.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SendDerek</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-472</link>
		<dc:creator>SendDerek</dc:creator>
		<pubDate>Fri, 05 Sep 2008 21:31:21 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-472</guid>
		<description>@ Antonio:

Oh.  Okay.  So, the file is intact, it&#039;s just that the password for the root account has been misplaced or forgotten.  So, I would suggest resetting it.  I did a quick google.com search and came up with this forum thread:

http://www.linuxquestions.org/questions/debian-26/reset-root-password-293477/

It should help you reset your root password.  Otherwise, if you don&#039;t want to do that, you can post a new thread of your own at the ubuntu forums and somebody there can help.

It could also be something in your sudoers file.  I&#039;ve never had a problem with sudo, so I&#039;m not sure what to do from here.  If it were me, I would just reset the root password given the method above.

I hope this helps.

PS.  Here&#039;s another reference I came across that will help guide you in fixing your sudo account:

http://www.psychocats.net/ubuntu/fixsudo</description>
		<content:encoded><![CDATA[<p>@ Antonio:</p>
<p>Oh.  Okay.  So, the file is intact, it&#8217;s just that the password for the root account has been misplaced or forgotten.  So, I would suggest resetting it.  I did a quick google.com search and came up with this forum thread:</p>
<p><a href="http://www.linuxquestions.org/questions/debian-26/reset-root-password-293477/" rel="nofollow">http://www.linuxquestions.org/questions/debian-26/reset-root-password-293477/</a></p>
<p>It should help you reset your root password.  Otherwise, if you don&#8217;t want to do that, you can post a new thread of your own at the ubuntu forums and somebody there can help.</p>
<p>It could also be something in your sudoers file.  I&#8217;ve never had a problem with sudo, so I&#8217;m not sure what to do from here.  If it were me, I would just reset the root password given the method above.</p>
<p>I hope this helps.</p>
<p>PS.  Here&#8217;s another reference I came across that will help guide you in fixing your sudo account:</p>
<p><a href="http://www.psychocats.net/ubuntu/fixsudo" rel="nofollow">http://www.psychocats.net/ubuntu/fixsudo</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Torres</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-471</link>
		<dc:creator>Antonio Torres</dc:creator>
		<pubDate>Fri, 05 Sep 2008 20:57:05 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-471</guid>
		<description>I removed the sudo, and yes, the file is there. And just like you said I wasn&#039;t able to save any changes. But I went back and this time typed the sudo again; and the same problem came to me... the password.

It keeps telling that I didn&#039;t write it properly, but I&#039;m sure that the word is ok, maybe is some code or text that I&#039;m not adding to the sentence.

Let me put it this way, I&#039;m sure that my only password is, let&#039;s say DRAGON. So I keep typing it, again and again but no. It tells me I didn&#039;t do it right.

Perhaps there&#039;s a command line I need to type after or before I type DRAGON.

Here&#039;s a picture of how it looks:


http://viewmorepics.myspace.com/index.cfm?fuseaction=viewImage&amp;friendID=218859551&amp;albumID=1147991&amp;imageID=15948511</description>
		<content:encoded><![CDATA[<p>I removed the sudo, and yes, the file is there. And just like you said I wasn&#8217;t able to save any changes. But I went back and this time typed the sudo again; and the same problem came to me&#8230; the password.</p>
<p>It keeps telling that I didn&#8217;t write it properly, but I&#8217;m sure that the word is ok, maybe is some code or text that I&#8217;m not adding to the sentence.</p>
<p>Let me put it this way, I&#8217;m sure that my only password is, let&#8217;s say DRAGON. So I keep typing it, again and again but no. It tells me I didn&#8217;t do it right.</p>
<p>Perhaps there&#8217;s a command line I need to type after or before I type DRAGON.</p>
<p>Here&#8217;s a picture of how it looks:</p>
<p><a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=viewImage&amp;friendID=218859551&amp;albumID=1147991&amp;imageID=15948511" rel="nofollow">http://viewmorepics.myspace.com/index.cfm?fuseaction=viewImage&amp;friendID=218859551&amp;albumID=1147991&amp;imageID=15948511</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SendDerek</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-470</link>
		<dc:creator>SendDerek</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-470</guid>
		<description>@ Antonio:

I&#039;m not sure why it wouldn&#039;t get you to the text editor to edit this file.  I know that even a slight type-o can goof things up.  Tab completion is your best friend in a situation like this.  If the file doesn&#039;t exsist in the first place, there&#039;s nothing to edit.  Make sure that your password is being typed in as well.  In fact, you should be able to leave off the &quot;sudo&quot; part of the command to at least see the file.  You won&#039;t be able to edit it, but just knowing that it&#039;s there will help.  As soon as you can see it, just add the &quot;sudo&quot; back to the beginning of the command.

Start with the simple things and move up.  I hope this helps even just a little.  I&#039;ll continue to try and help you if you need it, just let me know.

-Derek</description>
		<content:encoded><![CDATA[<p>@ Antonio:</p>
<p>I&#8217;m not sure why it wouldn&#8217;t get you to the text editor to edit this file.  I know that even a slight type-o can goof things up.  Tab completion is your best friend in a situation like this.  If the file doesn&#8217;t exsist in the first place, there&#8217;s nothing to edit.  Make sure that your password is being typed in as well.  In fact, you should be able to leave off the &#8220;sudo&#8221; part of the command to at least see the file.  You won&#8217;t be able to edit it, but just knowing that it&#8217;s there will help.  As soon as you can see it, just add the &#8220;sudo&#8221; back to the beginning of the command.</p>
<p>Start with the simple things and move up.  I hope this helps even just a little.  I&#8217;ll continue to try and help you if you need it, just let me know.</p>
<p>-Derek</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Antonio Torres</title>
		<link>http://www.derekhildreth.com/blog/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/comment-page-1#comment-469</link>
		<dc:creator>Antonio Torres</dc:creator>
		<pubDate>Fri, 05 Sep 2008 19:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial#comment-469</guid>
		<description>I&#039;m using Ubuntu 8.04 as host and I&#039;m new to Linux. In order to set the usb, I opened the Terminal, and typed your code:

sudo gedit /etc/init.d/mountdevsubfs.sh

But it then askes me for my user&#039;s password: 

[sudo] password for tony:

I type the password again and again but it won&#039;t take me where you say it will.

Unfortunately I don&#039;t have enough Linux knowledge, please help me.</description>
		<content:encoded><![CDATA[<p>I&#8217;m using Ubuntu 8.04 as host and I&#8217;m new to Linux. In order to set the usb, I opened the Terminal, and typed your code:</p>
<p>sudo gedit /etc/init.d/mountdevsubfs.sh</p>
<p>But it then askes me for my user&#8217;s password: </p>
<p>[sudo] password for tony:</p>
<p>I type the password again and again but it won&#8217;t take me where you say it will.</p>
<p>Unfortunately I don&#8217;t have enough Linux knowledge, please help me.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
