<?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>The Linux Daily &#187; Search Results  &#187;  VirtualBox</title>
	<atom:link href="http://www.thelinuxdaily.com/search/VirtualBox/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://www.thelinuxdaily.com</link>
	<description>Tutorials, Guides, Tips, and Tricks from Everyday Experiences</description>
	<lastBuildDate>Tue, 03 Jan 2012 19:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To: Install VirtualBox 4.0 on Fedora 15</title>
		<link>http://www.thelinuxdaily.com/2011/06/how-to-install-virtualbox-4-0-on-fedora-15/</link>
		<comments>http://www.thelinuxdaily.com/2011/06/how-to-install-virtualbox-4-0-on-fedora-15/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 15:00:15 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Tutorials and Guides]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 15]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lovelock]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualbox 4.0]]></category>

		<guid isPermaLink="false">http://www.thelinuxdaily.com/?p=2366</guid>
		<description><![CDATA[This is a step by step tutorial on how to get VirtualBox 4.0 up and running on Fedora 15. Specifically, this guide was written using the VirtualBox 4.0 (32-bit) version (Package: kernel-devel.i686 0:2.6.38.8-32.fc15). It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy to install for Fedora users and I’m going to show you how in a few easy steps.  Open a terminal window and let’s get to it…]]></description>
			<content:encoded><![CDATA[<p>This is a step by step tutorial on how to get VirtualBox 4.0 up and running on Fedora 15 (Lovelock). Specifically, this guide was written using the VirtualBox 4.0 (32-bit) version (Package: kernel-devel.i686 0:2.6.38.8-32.fc15). It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy to install for Fedora users and I’m going to show you how in a few easy steps.  Open a terminal window and let’s get to it…<br />
<span id="more-2366"></span></p>
<h3><span style="color: #800000;">Step 1: Download, Copy, and Edit Repository File</span></h3>
<p>This is a one-liner command that will download, copy, and edit the VirtualBox repository file at once.<br />
[bash wraplines="true"]<br />
su -c &#8216;curl http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo &gt; /etc/yum.repos.d/virtualbox.repo; sed -i &quot;s,enabled=0,enabled=1,g&quot; /etc/yum.repos.d/virtualbox.repo&#8217;<br />
[/bash]</p>
<h3><span style="color: #800000;">Step 2: Update Repository and Install VirtualBox-3.2</span></h3>
<p>This command will update yum repositories to include the new VirtualBox repository file we copied in the last step and then it will attempt to install VirtualBox-3.2 with dependencies.<br />
[bash wraplines="true"]<br />
su -c &#8216;yum update; yum install -y VirtualBox-4.0 dkms gcc&#8217;<br />
[/bash]</p>
<p>Note: At this point, for me, the installer created the vboxusers group and then registered and started the VirtualBox module.  I was able to move immediately to Step 5 and run the command <code>VirtualBox</code> to start VirtualBox and run a virtual machine.  I&#8217;m going to hope your results are the same, but for the sake of being complete and robust, I&#8217;m still going to include the steps for manually running the VirtualBox driver setup and vboxusers group setup.<br />
<span style="font-size: small;"></span></p>
<h3><span style="color: #800000;">Step 3: Run VirtualBox Setup Script</span></h3>
<p>This command will run the VirtualBox driver setup script (see small note below command).<br />
[bash wraplines="true"]<br />
su -c &#8216;/etc/init.d/vboxdrv setup&#8217;<br />
[/bash]</p>
<p><span style="font-size: x-small;">If you&#8217;re having issues, try installing &#8220;kernel-devel&#8221; OR  &#8220;kernel-PAE-devel&#8221; if the output of &#8216;uname -r&#8217; contains the suffix of .PAE.  Only install one or the other to avoid confusion.</span></p>
<h3><span style="color: #800000;">Step 4: Setup Groups for VirtualBox Access</span></h3>
<p>This command will add you to the vboxusers group.  Replace &#8220;username&#8221; with your actual username found by using the <code>whoami</code> command.<br />
[bash wraplines="true"]<br />
su -c &#8216;usermod -G vboxusers -a username&#8217;<br />
[/bash]</p>
<p><span style="font-size: x-small;">If you find that you&#8217;re getting SELinux errors or denials, try adding VirtualBox.so as an exception with this command:<br />
 <code>su -c 'chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so'</code></span></p>
<h3><span style="color: #800000;">Step 5: Run VirtualBox</span></h3>
<p>Finally, run VirtualBox and have fun with it!<br />
[bash wraplines="true"]<br />
VirtualBox<br />
[/bash]</p>
<p> &nbsp; </p>
<p><strong>Appendix A:  To Properly Backup the VirtualBox Machine (.vdi):</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2007/11/how-to-properly-backup-a-virtualbox-machine-vdi/" target="_blank">How To: Properly Backup a VirtualBox Machine (.VDI)</a></p>
<p><strong>Appendix B:  Setup a Pre-Built VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2010/02/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide/">How To: Setup a Pre-Built VirtualBox Guest Image [Tutorial/Guide]</a></p>
<p><strong>Appendix C:  Shrinking a VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2010/02/shrinking-a-dynamic-virtualbox-disk-image/">Shrinking a Dynamic VirtualBox Disk Image</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2011/06/how-to-install-virtualbox-4-0-on-fedora-15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Install VirtualBox 3.2 on Fedora 14</title>
		<link>http://www.thelinuxdaily.com/2010/11/how-to-install-virtualbox-3-2-on-fedora-14/</link>
		<comments>http://www.thelinuxdaily.com/2010/11/how-to-install-virtualbox-3-2-on-fedora-14/#comments</comments>
		<pubDate>Tue, 02 Nov 2010 07:00:01 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Tutorials and Guides]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 13]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualbox 3.2]]></category>

		<guid isPermaLink="false">http://www.thelinuxdaily.com/?p=2138</guid>
		<description><![CDATA[This is a step by step tutorial on how to get VirtualBox 3.2 up and running on Fedora 14. Specifically, this guide was written using the VirtualBox 3.2.10 (32-bit) version. It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy to install for Fedora users and I’m going to show you how in a few easy steps. Right, open a terminal window and let’s get to it…]]></description>
			<content:encoded><![CDATA[<p>This is a step by step tutorial on how to get VirtualBox 3.2 up and running on Fedora 14. Specifically, this guide was written using the VirtualBox 3.2.10 (32-bit) version. It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy to install for Fedora users and I’m going to show you how in a few easy steps. Right, open a terminal window and let’s get to it…<br />
<span id="more-2138"></span></p>
<h3><span style="color: #800000;">Step 1: Download, Copy, and Edit Repository File</span></h3>
<p>This is a one-liner command that will download, copy, and edit the VirtualBox repository file at once.<br />
[bash wraplines="true"]<br />
su -c &#8216;curl http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo &gt; /etc/yum.repos.d/virtualbox.repo; sed -i &quot;s,enabled=0,enabled=1,g&quot; /etc/yum.repos.d/virtualbox.repo&#8217;<br />
[/bash]</p>
<h3><span style="color: #800000;">Step 2: Update Repository and Install VirtualBox-3.2</span></h3>
<p>This command will update yum repositories to include the new VirtualBox repository file we copied in the last step and then it will attempt to install VirtualBox-3.2 with dependencies.<br />
[bash wraplines="true"]<br />
su -c &#8216;yum update; yum install -y VirtualBox-3.2 dkms gcc&#8217;<br />
[/bash]</p>
<h3><span style="color: #800000;">Step 3: Run VirtualBox Setup Script</span></h3>
<p>This command will run the VirtualBox driver setup script (see small note below command).<br />
[bash wraplines="true"]<br />
su -c &#8216;/etc/init.d/vboxdrv setup&#8217;<br />
[/bash]</p>
<p><span style="font-size: x-small;">If you&#8217;re having issues, try installing &#8220;kernel-devel&#8221; OR  &#8220;kernel-PAE-devel&#8221; if the output of &#8216;uname -r&#8217; contains the suffix of .PAE).  Only install one to avoid confusing the system.</span></p>
<h3><span style="color: #800000;">Step 4: Setup Groups for VirtualBox Access</span></h3>
<p>This command will add you to the vboxusers group.  Replace &#8220;username&#8221; with your actual username found by using the <code>whoami</code> command.<br />
[bash wraplines="true"]<br />
su -c &#8216;usermod -G vboxusers -a username&#8217;<br />
[/bash]</p>
<p><span style="font-size: x-small;">If you find that you&#8217;re getting SELinux errors or denials, try adding VirtualBox.so as an exception with this command:<br />
 <code>su -c 'chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so'</code></span></p>
<h3><span style="color: #800000;">Step 5: Run VirtualBox</span></h3>
<p>Finally, run VirtualBox and have fun with it!<br />
[bash wraplines="true"]<br />
VirtualBox<br />
[/bash]</p>
<p> &nbsp; </p>
<p><strong>Appendix A:  To Properly Backup the VirtualBox Machine (.vdi):</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2007/11/how-to-properly-backup-a-virtualbox-machine-vdi/" target="_blank">How To: Properly Backup a VirtualBox Machine (.VDI)</a></p>
<p><strong>Appendix B:  Setup a Pre-Built VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2010/02/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide/">How To: Setup a Pre-Built VirtualBox Guest Image [Tutorial/Guide]</a></p>
<p><strong>Appendix C:  Shrinking a VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2010/02/shrinking-a-dynamic-virtualbox-disk-image/">Shrinking a Dynamic VirtualBox Disk Image</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2010/11/how-to-install-virtualbox-3-2-on-fedora-14/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How To: Install VirtualBox 3.2 on Fedora 13</title>
		<link>http://www.thelinuxdaily.com/2010/05/how-to-install-virtualbox-3-2-on-fedora-13/</link>
		<comments>http://www.thelinuxdaily.com/2010/05/how-to-install-virtualbox-3-2-on-fedora-13/#comments</comments>
		<pubDate>Tue, 25 May 2010 14:00:24 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Tutorials and Guides]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 13]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualbox 3.2]]></category>

		<guid isPermaLink="false">http://www.thelinuxdaily.com/?p=1841</guid>
		<description><![CDATA[This is a step by step tutorial on how to get VirtualBox 3.2 up and running on Fedora 13. Specifically, this guide was written using the VirtualBox 3.2.0 (32-bit) version. It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy to install for Fedora users and [...]]]></description>
			<content:encoded><![CDATA[<p>This is a step by step tutorial on how to get VirtualBox 3.2 up and running on Fedora 13. Specifically, this guide was written using the VirtualBox 3.2.0 (32-bit) version. It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy to install for Fedora users and I’m going to show you how in a few easy steps. Right, open a terminal window and let’s get to it…<br />
<span id="more-1841"></span></p>
<h3><span style="color: #800000;">Step 1: Download, Copy, and Edit Repository File</span></h3>
<p>This is a one-liner command that will download, copy, and edit the VirtualBox repository file at once.<br />
[bash wraplines="true"]<br />
su -c &#8216;wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo -O /etc/yum.repos.d/virtualbox.repo; sed -i &quot;s,enabled=0,enabled=1,g&quot; /etc/yum.repos.d/virtualbox.repo&#8217;<br />
[/bash]</p>
<h3><span style="color: #800000;">Step 2: Update Repository and Install VirtualBox-3.2</span></h3>
<p>This command will update yum repositories to include the new VirtualBox repository file we copied in the last step and then it will attempt to install VirtualBox-3.2 with dependencies.<br />
[bash wraplines="true"]<br />
su -c &#8216;yum update; yum install -y VirtualBox-3.2 dkms gcc&#8217;<br />
[/bash]</p>
<h3><span style="color: #800000;">Step 3: Run VirtualBox Setup Script</span></h3>
<p>This command will run the VirtualBox driver setup script.<br />
[bash wraplines="true"]<br />
su -c &#8216;/etc/init.d/vboxdrv setup&#8217;<br />
[/bash]</p>
<p><span style="font-size: x-small;">If you&#8217;re having issues, try installing &#8220;kernel-PAE-devel&#8221; or &#8220;kernel-devel&#8221;.</span></p>
<h3><span style="color: #800000;">Step 4: Setup Groups for VirtualBox Access</span></h3>
<p>This command will add you to the vboxusers group.  Replace &#8220;username&#8221; with your actual username found by using the <code>whoami</code> command.<br />
[bash wraplines="true"]<br />
su -c &#8216;usermod -G vboxusers -a username&#8217;<br />
[/bash]</p>
<p><span style="font-size: x-small;">If you find that you&#8217;re getting SELinux errors or denials, try adding VirtualBox.so as an exception with this command:<br />
 <code>su -c 'chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so'</code></span></p>
<h3><span style="color: #800000;">Step 5: Run VirtualBox</span></h3>
<p>Finally, run VirtualBox and have fun with it!<br />
[bash wraplines="true"]<br />
VirtualBox<br />
[/bash]</p>
<p> &nbsp; </p>
<p><strong>Appendix A:  To Properly Backup the VirtualBox Machine (.vdi):</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2007/11/how-to-properly-backup-a-virtualbox-machine-vdi/" target="_blank">How To: Properly Backup a VirtualBox Machine (.VDI)</a></p>
<p><strong>Appendix B:  Setup a Pre-Built VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2010/02/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide/">How To: Setup a Pre-Built VirtualBox Guest Image [Tutorial/Guide]</a></p>
<p><strong>Appendix C:  Shrinking a VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="/2010/02/shrinking-a-dynamic-virtualbox-disk-image/">Shrinking a Dynamic VirtualBox Disk Image</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2010/05/how-to-install-virtualbox-3-2-on-fedora-13/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>How-To:  Setup a Pre-Built VirtualBox Guest Image [Tutorial/Guide]</title>
		<link>http://www.thelinuxdaily.com/2010/02/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide/</link>
		<comments>http://www.thelinuxdaily.com/2010/02/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 17:50:42 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Tutorials and Guides]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[pre-built]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[walkthrough]]></category>

		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=986</guid>
		<description><![CDATA[Table of Contents Introduction Requirements Procedure Additional Information/Resources Notes from the Author Introduction This guide will assist in loading a pre-built VirtualBox image. The example used is a pre-built Ubuntu 9.10 &#8220;Karmic Koala&#8221; guest image. Any VirtualBox image can be used however. Requirements This guide assumes that you have already installed VirtualBox successfully and will [...]]]></description>
			<content:encoded><![CDATA[<h3>Table of Contents</h3>
<ul>
<li><a href="#intro">Introduction</a></li>
<li><a href="#require">Requirements</a></li>
<li><a href="#procedure">Procedure</a></li>
<li><a href="#info">Additional Information/Resources</a></li>
<li><a href="#notes">Notes from the Author</a></li>
</ul>
<h3><a id="intro">Introduction</a></h3>
<p>This guide will assist in loading a pre-built VirtualBox image.  The example used is a pre-built Ubuntu 9.10 &#8220;Karmic Koala&#8221; guest image.  Any VirtualBox image can be used however.</p>
<p><span id="more-986"></span></p>
<h3><a id="require">Requirements</a></h3>
<p><strong>This guide assumes that you have already installed VirtualBox successfully</strong> and will to walk you through how to setup and start your Linux guest (besides, if you&#8217;ve installed any program in Windows before, the process of installing VirtualBox is identical, painless, and easy).  If you do need assistance, please refer to the <a href="http://download.virtualbox.org/virtualbox/3.1.2/UserManual.pdf">VirtualBox user&#8217;s manual</a>, Chapter 2, Section 2.1.</p>
<p>Installing and running a VirtualMachine is fairly basic and doesn&#8217;t have a lot of requirements.  You will, however, need a computer with enough harddrive space to both install VirtualBox and have a minimum of 2.4GB free (which will dynamically expand as needed up to a max of 10GB) for the virtual machine image referred to in this guide.  Other hardware requirements are as follows (source: <a href="http://www.sun.com/software/products/virtualbox/faqs.jsp">VirtualBox FAQs</a>)</p>
<ul>
<li>32- or 64-bit Intel or AMD x86 CPU 1.5GHz or faster.</li>
<li>512 MB minimum available memory (1 GB recommended).</li>
<li>Disk Space 30Meg + storage for guests.</li>
</ul>
<p>You will need to download VirtualBox for Windows hosts from the VirtualBox website here: <a href="http://www.virtualbox.org/wiki/Downloads">http://www.virtualbox.org/wiki/<br />
Downloads</a>.</p>
<p>You will also need to download the pre-built VirtualBox .vdi image containing Ubuntu 9.10 with guest additions installed.  You can download this image here: <a href="http://go2.wordpress.com/?id=725X1342&amp;site=virtualbox.wordpress.com&amp;url=%0Ahttp%3A%2F%2Fdownloads.sourceforge.net%2Fvirtualboximage%2Fubuntu-9.10.vdi.7z"> ubuntu-9.10.vdi.7z</a>.  More pre-built images can be found at <a href="http://virtualbox.wordpress.com/images/%22">http://virtualbox.wordpress.com/images/</a>.</p>
<p>When you have finished installing VirtualBox and you have downloaded the pre-built Ubuntu 9.10 image, you will need to 1) extract the ubuntu-9.10.vdi.7z file using <a href="http://www.7-zip.org/download.html">7zip</a>, or a similar program, and then 2) move the extracted ubuntu-9.10.vdi image from the original download location on your harddrive to C:Documents and  SettingsUsername.VirtualBoxVDI  (Mac OS: ~/Library/VirtualBox/VDI)</p>
<h3><a id="procedure">Procedure</a></h3>
<p>The procedure is accommodated with screenshots to help you visualize the process.</p>
<ol>
<li>Open or start the VirtualBox application.  You will be welcomed with this screen.</li>
<p><a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step1.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step1-300x222.png" alt="" title="step1" width="300" height="222" class="aligncenter size-medium wp-image-987" /></a></p>
<li>We want to create a new virtual machine, so click on the &#8220;New&#8221; button.</li>
<p><a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step2.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step2-300x222.png" alt="" title="step2" width="300" height="222" class="aligncenter size-medium wp-image-987" /></a></p>
<li>You will be directed to a &#8220;New Virtual Machine Wizard&#8221;.  Click &#8220;Next &gt;&#8221;.</li>
<p><a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step3.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step3-300x295.png" alt="" title="step3" width="300" height="295" class="aligncenter size-medium wp-image-989" /></a></p>
<li>Here, you will name your virtual machine.  I chose &#8220;UbuntuVM&#8221;.  Also, specify that you are using the Linux operating system and the Ubuntu version.  This will set the values of the next few screens to the recommended default values for that particular virtual machine.  Click &#8220;Next &gt;&#8221;</li>
<p></p>
<li>Leave this at the recommended default level of 384MB RAM and click &#8220;Next &gt;&#8221;</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step5.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step5-300x265.png" alt="" title="step5" width="300" height="265" class="aligncenter size-medium wp-image-991" /></a></p>
<li>Here, you will choose your VirtualBox hard disk, or image.  You will want to use the existing hard disk that you downloaded earlier called ubuntu-9.10.vdi, so click on &#8220;Use existing hard disk&#8221; and then click on the icon with the &#8220;up&#8221; arrow on top of the folder.  This will open the next dialog window.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step6.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step6-300x265.png" alt="" title="step6" width="300" height="265" class="aligncenter size-medium wp-image-992" /></a></p>
<li>This is the Virtual Media Manager window that was opened from the last step.  This is where you will add the ubuntu-9.10.vdi image to the list of virtual machine images, so click on &#8220;Add&#8221;.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step7.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step7-300x232.png" alt="" title="step7" width="300" height="232" class="aligncenter size-medium wp-image-993" /></a></p>
<li>Here, you will need to drill down in your directory structure to C:Documents and SettingsUsername.VirtualBoxVDI where the ubuntu-9.10.vdi file is located, highlight it, and click on the &#8220;Open&#8221; button. (Obviously, this was done on a Linux machine, so your Windows dialog box will look different).</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step8.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step8-300x269.png" alt="" title="step8" width="300" height="269" class="aligncenter size-medium wp-image-994" /></a></p>
<li>You will now notice that the ubuntu-9.10.vdi file is included in the list of virtual machine images.  Highlight ubuntu-9.10.vdi and click on the &#8220;Select&#8221; button.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step9.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step9-300x232.png" alt="" title="step9" width="300" height="232" class="aligncenter size-medium wp-image-995" /></a></p>
<li>You will now see that the virtual hard disk that will be used is the existing ubuntu-9.10.vdi file selected in the previous step.  Click &#8220;Next &gt;&#8221; to continue.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step10.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step10-300x265.png" alt="" title="step10" width="300" height="265" class="aligncenter size-medium wp-image-996" /></a></p>
<li>This is a review of the settings for this virtual machine.  When ready, click the &#8220;Finish&#8221; button.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step11.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step11-300x265.png" alt="" title="step11" width="300" height="265" class="aligncenter size-medium wp-image-997" /></a></p>
<li>You will now see that your vitual machine &#8220;UbuntuVM&#8221; is available in the main screen of VirtualBox.  Click on &#8220;Start&#8221; to jump into and start using the virtual machine (or Linux guest).</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step12.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step12-300x222.png" alt="" title="step12" width="300" height="222" class="aligncenter size-medium wp-image-998" /></a></p>
<li>You will see a splash screen that resembles a typical BIOS bootup and then you&#8217;ll see Ubuntu loading. Lastly, you&#8217;ll find yourself at the Ubuntu login prompt.  The pre-loaded username is &#8220;ubuntu&#8221; and the pre-loaded password is &#8220;reverse&#8221;.  Use this information to login.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step13.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step13-300x249.png" alt="" title="step13" width="300" height="249" class="aligncenter size-medium wp-image-999" /></a></p>
<li>This is the screen that you will be greeting with.  You may resize the window, make it fullscreen, and move your cursor in and out of the VirtualBox window seamlessly to navigate between your Windows host and Linux guest.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step14.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step14-300x249.png" alt="" title="step14" width="300" height="249" class="aligncenter size-medium wp-image-1000" /></a></p>
<li>For the first item of business, let&#8217;s change the password.  To do this, we need the terminal window open, so click on Applications -&gt; Accessories -&gt; Terminal&#8221; to open the terminal window.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step15.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step15-300x249.png" alt="" title="step15" width="300" height="249" class="aligncenter size-medium wp-image-1001" /></a></p>
<li>In the image below, you can see the common &#8220;echo&#8221; command being used as well as the &#8220;passwd&#8221; command being used to change the password.  After you change your password, you are ready to start using and taking advantage of the Linux guest.  Congratulations.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step16.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step16-300x249.png" alt="" title="step16" width="300" height="249" class="aligncenter size-medium wp-image-1002" /></a></p>
<li>As a final note, there are some utilities that are not available for Windows users and must have a Linux box at hand.  For example, the &#8220;dd&#8221; command to copy a .dd image  to an SD card.  You can share the hardware of your Windows host machine so that<br />
   the Linux guest machine can use it.  Simply right-click on the appropriate USB icon and select the hardware you would like to use from within the Linux guest machine.  Here, I am selecting the SD to USB card reader.</li>
<p>   <a href="http://www.derekhildreth.com/tld/wp-content/uploads/2010/02/step17.png"><img src="http://www.derekhildreth.com/blog/wp-content/uploads/2010/02/step17-300x249.png" alt="" title="step17" width="300" height="249" class="aligncenter size-medium wp-image-1003" /></a>
</ol>
<p><strong>Congratulations!</strong>  You have successfully utilized a pre-built virtual machine image to run a Linux OS on top of your Windows OS.  Now, get to learning!</p>
<h3><a id="info">Additional Information/Resources</a></h3>
<p>I would like to follow through on how to copy a .dd image to an SD card by mentioning the required commands.  You will probably want to setup a shared folder between the guest and host so that you can access the .dd image that you probably downloaded onto the host machine.  Section 4.7 of the <a href="http://download.virtualbox.org/virtualbox/3.1.2/UserManual.pdf">user&#8217;s manual</a> will assist you in this.  When you have access to the .dd image, follow the steps below.</p>
<pre>   1.) In the terminal, find the required information about the SD card
       inserted.  Most importantly, the /dev/sd* location.
        * sudo fdisk -l
   2.) Once found, you will want to copy the .dd image to the entire SD card.
        * sudo dd if=theImage.dd of=/dev/sdb
       -- Or, alternatively, you can write an image to a single partition of the
          SD card.
           * sudo dd if=partition2_image.dd of=/dev/sdb2
   3.) Furthur, you can mount the SD card manuall using the following commands
        * sudo mkdir /mnt/sdcard_part1
        * sudo mount /dev/sdb1 /mnt/sdcard_part1
</pre>
<p>Additional resources are listed below</p>
<ul>
<li>Ubuntu manual/guide can be found here: <br /> <a href="https://wiki.ubuntu.com/ubuntu-manual">https://wiki.ubuntu.com/ubuntu-<br />
   manual</a></li>
<li>A decent looking guide on Linux from the perspective of a Windows user: <br />
   <a href="http://www.reallylinux.com/docs/windowstolinux.shtml">http://www.<br />
   reallylinux.com/docs/windowstolinux.shtml</a></li>
<li>More .vdi Images: <br />
   <a href="http://virtualbox.wordpress.com/images/">http://virtualbox.wordpress.com/<br />
   images/</a></li>
<li>VirtualBox Homepage: <br />
   <a href="http://www.virtualbox.org/">http://www.virtualbox.org/</a></li>
<li>VirtualBox User&#8217;s Guide: <br />
   <a href="http://download.virtualbox.org/virtualbox/3.1.2/UserManual.pdf">http://<br />
   download.virtualbox.org/virtualbox/3.1.2/UserManual.pdf</a></li>
</ul>
<h3><a id="notes">Notes from the Author</a></h3>
<p>Image locations, website addresses, and programs may change in time so do not follow this guide verbatim too far past the date it was created on.  It may be updated once and a while, but it is not guaranteed.  Even if things change, the principles and steps shown in this guide will probably remain the same.</p>
<p>I am not responsible for any damages and/or headaches this guide could have caused.  I am providing it in hopes that it will be useful to people.</p>
<p>You may be wondering why I chose to use the Ubuntu Linux distribution.  Well, I wanted to offer the most user-friendly and popular Linux distribution so that it was easy and quick for people to start and run a VirtualBox guest image with the smallest learning curve possible.  Ubuntu has been flaunted and deemed as such by the majority of the Linux community.</p>
<p>VirtualBox version used in this guide: 3.08-r53138</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2010/02/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shrinking a Dynamic VirtualBox Disk Image</title>
		<link>http://www.thelinuxdaily.com/2010/02/shrinking-a-dynamic-virtualbox-disk-image/</link>
		<comments>http://www.thelinuxdaily.com/2010/02/shrinking-a-dynamic-virtualbox-disk-image/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 17:02:33 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Tutorials and Guides]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[compress]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[reduce]]></category>
		<category><![CDATA[shrink]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[WILT]]></category>

		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=979</guid>
		<description><![CDATA[I hadn&#8217;t realized this before, but you can shrink a dynamic VirtualBox disk image. This is incredibly helpful if you&#8217;ve uninstalled programs or freed up a bunch of space and you want the .vdi image size to reflect that. Otherwise, the dynamic disk image will stay the same size it was before. The process is [...]]]></description>
			<content:encoded><![CDATA[<p>I hadn&#8217;t realized this before, but you can shrink a dynamic VirtualBox disk image.  This is incredibly helpful if you&#8217;ve uninstalled programs or freed up a bunch of space and you want the .vdi image size to reflect that.  Otherwise, the dynamic disk image will stay the same size it was before.  The process is simple, but can be a bit involved so I&#8217;ll just touch on the basics and then refer you to a few guides that were really helpful when I did this for my Ubuntu 9.10 VirtualBox image.  These guides can be applied to other guest images as well.</p>
<p>1.) Install &#8220;zerofree&#8221; on your virtualbox guest machine.<br />
2.) Boot to safe mode (recovery mode) where you can access your root partition (/dev/sda1).<br />
3.) Mount the root partition as read-only (mount -o ro /dev/sda1 /mnt/tmp)<br />
4.) Run &#8220;zerofree /dev/sda1&#8243;<br />
5.) Shutdown the virtual machine and run &#8220;VBoxManage modifyhd &#8211;compact /path/to/virtualboximage.vdi&#8221;</p>
<p>In-Depth Guides:<br />
<a href="http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06" target="_blank">http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06</a> &#8212; Keep in mind that zerofree does in fact support ext4 (I think this article is a tiny bit dated, but it&#8217;s a great one).</p>
<p><a href="http://www.virtualbox.org/manual/UserManual.html" target="_blank">http://www.virtualbox.org/manual/UserManual.html</a> &#8212; The all important VirtualBox Users Guide.</p>
<p><a href="http://forums.virtualbox.org/viewtopic.php?p=29272#29272" target="_blank">http://forums.virtualbox.org/viewtopic.php?p=29272#29272</a> &#8212; Another good reference for VirtualBox</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2010/02/shrinking-a-dynamic-virtualbox-disk-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Install VirtualBox 3 on Fedora 12 [Tutorial]</title>
		<link>http://www.thelinuxdaily.com/2009/10/how-to-install-virtualbox-3-on-fedora-12-tutorial/</link>
		<comments>http://www.thelinuxdaily.com/2009/10/how-to-install-virtualbox-3-on-fedora-12-tutorial/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 05:21:13 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Fedora 12]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[virtualbox 3]]></category>

		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=662</guid>
		<description><![CDATA[Updated: 11/22/2009 This is a step by step tutorial on how to get VirtualBox 3 up and running on Fedora 12. Specifically, this guide was written using the VirtualBox 3.0.8 version and an i386 CPU (32-bit). It can be adapted to upcoming versions and different CPUs (64-bit). The folks at VirtualBox have made it easy [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Updated: 11/22/2009</strong></p>
<p>This is a step by step tutorial on how to get VirtualBox 3 up and running on Fedora 12.  Specifically, this guide was written using the VirtualBox 3.0.8 version and an i386 CPU (32-bit).  It can be adapted to upcoming versions and different CPUs (64-bit).  The folks at VirtualBox have made it easy to install for Fedora users and I&#8217;m going to show you how in a few easy steps.  Right, open a terminal window and let&#8217;s get to it&#8230;<br />
<span id="more-662"></span><br />
<strong>1.) Become privileged</strong><br />
<code>su -</code></p>
<p><strong>2.) Get the VirtualBox repo installed (you may need to install wget)</strong><br />
<code>wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo &amp;&amp; cp virtualbox.repo /etc/yum.repos.d/</code></p>
<p><strong>3.) Install VirtualBox (along with a few other needed packages)!</strong><br />
<code> yum install -y VirtualBox dkms gcc</code><br />
Just so you know, DKMS will &#8220;ensure that the VirtualBox host kernel modules (vboxdrv, vboxnetflt and vboxnetadp) are properly updated if the linux kernel version changes during the next kernel update&#8221; and gcc is required in order to start the VirtualBox kernel module.</p>
<p><strong>4.)  Run the setup file for VirtualBox:</strong><br />
<code>/etc/init.d/vboxdrv setup</code><br />
If you&#8217;re having issues here, try installing &#8220;kernel-PAE-devel&#8221;</p>
<p><strong>5.)  Add yourself to the &#8220;vboxusers&#8221; group and fix the SELinux Permissions (just in case):</strong><br />
<code>usermod -G vboxusers -a &lt;yourusername&gt;<br />
chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so</code></p>
<p><strong>6.) Run, and enjoy!</strong><br />
<code>VirtualBox</code></p>
<p><strong>Appendix A:  To Properly Backup the VirtualBox Machine (.vdi):</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="http://www.derekhildreth.com/blog/how-to-properly-backup-a-virtualbox-machine-vdi/" target="_blank">How To: Properly Backup a VirtualBox Machine (.VDI)</a></p>
<p><strong>Appendix B:  Setup a Pre-Built VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="http://www.derekhildreth.com/blog/how-to-setup-a-pre-built-virtualbox-guest-image-tutorialguide">How To: Setup a Pre-Built VirtualBox Guest Image [Tutorial/Guide]</a></p>
<p><strong>Appendix C:  Shrinking a VirtualBox Guest Image</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="http://www.derekhildreth.com/blog/shrinking-a-dynamic-virtualbox-disk-image">Shrinking a Dynamic VirtualBox Disk Image</a></p>
<p><strong>Appendix D:  To Get Sound Working:</strong></p>
<p>Highlight your virtual machine and click on the &#8220;Settings&#8221; button. Click on the &#8220;Sound&#8221; category, and then check the &#8220;Enable Sound&#8221; option. In the drop-down box, select &#8220;PulseAudio&#8221;. You should now have sound.</p>
<p>That&#8217;s it!  If you find yourself with problems, feel free to comment below or ask for assistance on the fedora forum thread that I have created located <a href="http://forums.fedoraforum.org/showthread.php?t=232822" target="_blank">here</a>.  If you have something to add, or need some clarification, let everybody know!</p>
<p>Sources:</p>
<p>http://www.virtualbox.org/wiki/Linux_Downloads</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2009/10/how-to-install-virtualbox-3-on-fedora-12-tutorial/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>How To: Install VirtualBox on Fedora 11 [Tutorial]</title>
		<link>http://www.thelinuxdaily.com/2009/06/how-to-install-virtualbox-on-fedora-11-tutorial/</link>
		<comments>http://www.thelinuxdaily.com/2009/06/how-to-install-virtualbox-on-fedora-11-tutorial/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 15:54:27 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[Fedora 11]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=557</guid>
		<description><![CDATA[Note: I have been unable to verify these steps. They should work just fine, but I&#8217;m a little concerned about the USB support fix. You may or may not want to try it at this point. I have it here just as a reference for now. This is a tutorial on how to get VirtualBox [...]]]></description>
			<content:encoded><![CDATA[<p><em>Note:  I have been unable to verify these steps.  They should work just fine, but I&#8217;m a little concerned about the USB support fix.  You may or may not want to try it at this point.  I have it here just as a reference for now.</em></p>
<p>This is a tutorial on how to get VirtualBox up and running on Fedora 11.  Also, this tutorial is for the 32-Bit version of VirtualBox, so you&#8217;ll have to customize a little more to get the 64-bit version running. Everything in the &#8220;code&#8221; sections should be copy/pasted/typed into the terminal. Right, let&#8217;s get to it:</p>
<p><strong>PreStep.) Open the terminal and get into super user mode:</strong><br />
<code>su -</code></p>
<p><strong>1.)  Get the latest VirtualBox package (as of now, 2.2.4) from the <a href="http://www.virtualbox.org/wiki/Linux_Downloads">VirtualBox website </a>for Fedora 11 and install it.  The following command should download and install the application:</strong><br />
<code>wget http://download.virtualbox.org/virtualbox/2.2.4/VirtualBox-2.2.4_47978_fedora11-1.i586.rpm &amp;&amp; rpm -ivh </code><code>VirtualBox-2.2.4_47978_fedora11-1.i586.rpm</code><br />
<strong></strong></p>
<p><strong>2.)  Get the kernel-devel and other needed packages:</strong><br />
<code>yum install make automake autoconf gcc kernel-devel dkms</code><br />
<strong></strong></p>
<p><strong>3.)  Run the setup file for VirtualBox:</strong><br />
<code>/etc/init.d/vboxdrv setup</code><br />
<strong></strong></p>
<p><strong>4.)  Add yourself to the &#8220;vboxusers&#8221; group and fix the SELinux Permissions:</strong><br />
<code>usermod -G vboxusers -a username<br />
chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so</code><br />
<strong></strong></p>
<p><strong>5.) Run, and enjoy!</strong><br />
<code>VirtualBox</code><br />
<strong></strong></p>
<p><strong>6.) To Get USB Support: </strong></p>
<blockquote><p>1 &#8211; create a new group called &#8220;usb&#8221;;<br />
2 &#8211; locate file usbfs: in my case is /sys/bus/usb/drivers (I suggest to find the file with a usb device inserted;<br />
3 &#8211; modify file /etc/fstab inserting a line containing the right path and the number corresponding the &#8220;usb&#8221; group :<br />
none /sys/bus/usb/drivers usbfs devgid=503,devmode=664 0 0<br />
4 &#8211; command mount -a;<br />
5 &#8211; start VB and try&#8230;;</p></blockquote>
<p><a href="http://forums.fedoraforum.org/showpost.php?p=847612&amp;postcount=4" target="_blank">Source: Fedora Forums</a></p>
<p><strong>7.) To Properly Backup the VirtualBox Machine (.vdi):</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="http://www.derekhildreth.com/blog/how-to-properly-backup-a-virtualbox-machine-vdi" target="_blank">How To: Properly Backup a VirtualBox Machine (.VDI)</a></p>
<p><strong>8.) To Get Sound Working:</strong></p>
<p>Highlight your virtual machine and click on the &#8220;Settings&#8221; button. Click on the &#8220;Sound&#8221; category, and then check the &#8220;Enable Sound&#8221; option. In the drop-down box, select &#8220;PulseAudio&#8221;. You should now have sound.</p>
<p>That&#8217;s it!  If you find yourself with problems, feel free to comment below or ask for assistance on the fedora forum thread that I have created located <a href="http://forums.fedoraforum.org/showthread.php?p=1223008#post1223008" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2009/06/how-to-install-virtualbox-on-fedora-11-tutorial/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>How To: Install VirtualBox on Fedora 10 [Tutorial]</title>
		<link>http://www.thelinuxdaily.com/2008/11/how-to-install-virtualbox-on-fedora-10-tutorial/</link>
		<comments>http://www.thelinuxdaily.com/2008/11/how-to-install-virtualbox-on-fedora-10-tutorial/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 16:23:14 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[.vdi]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 10]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=312</guid>
		<description><![CDATA[Updated November 25th, 2008 This is a tutorial on how to get VirtualBox up and running on Fedora 10.  Also, this tutorial is for the 32-Bit version of VirtualBox, so you&#8217;ll have to customize a little more to get the 64-bit version running. Everything in the &#8220;code&#8221; sections should be copy/pasted/typed into the terminal. Right, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Updated November 25th, 2008</strong></p>
<p>This is a tutorial on how to get VirtualBox up and running on Fedora 10.  Also, this tutorial is for the 32-Bit version of VirtualBox, so you&#8217;ll have to customize a little more to get the 64-bit version running. Everything in the &#8220;code&#8221; sections should be copy/pasted/typed into the terminal. Right, let&#8217;s get to it:</p>
<p><strong>PreStep.) Open the terminal and get into super user mode:</strong></p>
<blockquote><p><code>su -</code></p></blockquote>
<p><strong>1.)  Get the latest VirtualBox package (as of now, 2.0.6) from the <a href="http://www.virtualbox.org/wiki/Linux_Downloads">VirtualBox website </a>for Fedora 9 and install it (generally, after a few months, the Fedora 10 link will be available).</strong></p>
<blockquote><p><code>wget http://download.virtualbox.org/virtualbox/2.0.6/VirtualBox-2.0.6_39765_fedora9-1.i386.rpm &amp;&amp; rpm -ivh </code><code>VirtualBox-2.0.6_39765_fedora9-1.i386.rpm</code></p></blockquote>
<p><strong>2.)  Get the kernel-devel package:</strong></p>
<blockquote><p><code>yum install make automake autoconf gcc kernel-devel dkms<br />
</code></p></blockquote>
<p><strong>3.)  Run the setup file for VirtualBox:</strong></p>
<blockquote><p><code>/etc/init.d/vboxdrv setup</code></p></blockquote>
<p><strong>4.)  Add yourself to the &#8220;vboxusers&#8221; group and fix the SELinux Permissions:</strong></p>
<blockquote><p><code>usermod -G vboxusers -a username<br />
chcon -t textrel_shlib_t /usr/lib/virtualbox/VirtualBox.so<br />
</code></p></blockquote>
<p><strong>5.) Run, and enjoy!</strong></p>
<blockquote><p><code>VirtualBox</code></p></blockquote>
<p><strong>6.) To Get USB Support: </strong></p>
<blockquote><p>1 &#8211; create a new group called &#8220;usb&#8221;;<br />
2 &#8211; locate file usbfs: in my case is /sys/bus/usb/drivers (I suggest to find the file with a usb device inserted;<br />
3 &#8211; modify file /etc/fstab inserting a line containing the right path and the number corresponding the &#8220;usb&#8221; group :<br />
none /sys/bus/usb/drivers usbfs devgid=503,devmode=664 0 0<br />
4 &#8211; command mount -a;<br />
5 &#8211; start VB and try&#8230;;</p></blockquote>
<p><a href="http://forums.fedoraforum.org/showpost.php?p=847612&amp;postcount=4" target="_blank">Source: Fedora Forums</a></p>
<p><strong>7.) To Properly Backup the VirtualBox Machine (.vdi):</strong></p>
<p>Please refer to my other page here:</p>
<p><a href="http://www.derekhildreth.com/blog/how-to-properly-backup-a-virtualbox-machine-vdi/" target="_blank">How To: Properly Backup a VirtualBox Machine (.VDI)</a></p>
<p><strong>8.) To Get Sound Working:</strong></p>
<p>Highlight your virtual machine and click on the &#8220;Settings&#8221; button. Click on the &#8220;Sound&#8221; category, and then check the &#8220;Enable Sound&#8221; option. In the drop-down box, select &#8220;PulseAudio&#8221;. You should now have sound.</p>
<p>That&#8217;s it!  If you find yourself with problems, feel free to comment below or ask for assistance on the fedora forum thread that I have created located <a href="http://forums.fedoraforum.org/showthread.php?t=205070" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2008/11/how-to-install-virtualbox-on-fedora-10-tutorial/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>Fedora 10 Release Candidate [Screenshot Gallery]</title>
		<link>http://www.thelinuxdaily.com/2008/11/fedora-10-release-candidate-screenshot-gallery/</link>
		<comments>http://www.thelinuxdaily.com/2008/11/fedora-10-release-candidate-screenshot-gallery/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 02:43:43 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[artwork]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 10]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[release candidate]]></category>

		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=277</guid>
		<description><![CDATA[Here&#8217;s a screenshot tour of the Fedora 10 Release Candidate (or Preview Release) running within a VirtualBox VM.  The countdown begins!  21 Days left as of this entry&#8230;  Enjoy! Other useful links: Release Notes: http://docs.fedoraproject.org/release-notes/f10preview&#8230; Feature List: http://fedoraproject.org/wiki/Releases/10/FeatureList Mirrors: http://mirrors.fedoraproject.org/publiclist/Fedora/10-Preview/ Artwork: http://fedoraproject.org/wiki/Artwork/F10Themes]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a screenshot tour of the Fedora 10 Release Candidate (or Preview Release) running within a VirtualBox VM.  The countdown begins!  21 Days left as of this entry&#8230;  Enjoy!</p>
<p><br />
<br class="yourclassnamehere" /></p>
<h2><strong style="font-size: 14px;">Other useful links:</strong></h2>
<p><strong>Release Notes:</strong> <a href="http://fedoraproject.org/wiki/Artwork/F10Themes" target="_blank">http://docs.fedoraproject.org/release-notes/f10preview&#8230;</a><br />
<strong>Feature List:</strong> <a href="http://fedoraproject.org/wiki/Releases/10/FeatureList" target="_blank">http://fedoraproject.org/wiki/Releases/10/FeatureList</a><br />
<strong>Mirrors:</strong> <a href="http://mirrors.fedoraproject.org/publiclist/Fedora/10-Preview/" target="_blank">http://mirrors.fedoraproject.org/publiclist/Fedora/10-Preview/</a><br />
<strong>Artwork:</strong> <a href="http://fedoraproject.org/wiki/Artwork/F10Themes" target="_blank">http://fedoraproject.org/wiki/Artwork/F10Themes</a></p>
<p><br class="yourclassnamehere" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2008/11/fedora-10-release-candidate-screenshot-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Install VirtualBox on Ubuntu 8.04LTS (Hardy Heron) [Tutorial]</title>
		<link>http://www.thelinuxdaily.com/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/</link>
		<comments>http://www.thelinuxdaily.com/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 15:52:11 +0000</pubDate>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[troubleshoot]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://derekhildreth.com/blog/index.php/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial</guid>
		<description><![CDATA[Introduction: This guide is intended to help users fully install VirtualBox and all of it&#8217;s features which don&#8217;t work out of the box such as USB support. Download VirtualBox: As of this writing, there is no specific download for 8.04LTS (Hardy Heron), so you will be downloading the version built for 7.10 (Feisty Fawn). Goto [...]]]></description>
			<content:encoded><![CDATA[<p><a title="vbox_logo2_gradient.png" href="http://derekhildreth.com/blog/wp-content/uploads/vbox_logo2_gradient.png"><img class="right" src="http://derekhildreth.com/blog/wp-content/uploads/vbox_logo2_gradient.png" alt="vbox_logo2_gradient.png" /></a></p>
<h3><span style="color: #800000;"> Introduction:</span></h3>
<p>This guide is intended to help users fully install VirtualBox and all of it&#8217;s features which don&#8217;t work out of the box such as USB support.</p>
<p><span id="more-145"></span></p>
<h3><span style="color: #800000;">Download VirtualBox:</span></h3>
<p>As of this writing, there is no specific download for 8.04LTS (Hardy Heron), so you will be downloading the version built for 7.10 (Feisty Fawn).</p>
<p>Goto the <a href="https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_SMI-Site/en_US/-/USD/ViewProductDetail-Start?ProductRef=innotek-1.5.6-G-F@CDS-CDS_SMI" target="_blank">VirtualBox download hompage</a>, scroll down to the bottom, click on the &#8220;Platform&#8221; drop-down menu, and select &#8220;Ubuntu 7.10 i386&#8243; to download the package.  Note: If you have a 64bit computer, download the &#8220;Ubuntu 7.10 AMD64&#8243; package.</p>
<h3><span style="color: #800000;">Install VirtualBox</span></h3>
<p>Double-click on the package you just downloaded and you will be prompted to install it.</p>
<h3><span style="color: #800000;">Setup Permissions:</span></h3>
<p>This can be done in two different ways.  The graphical way or the command line way.</p>
<p><strong>Via Command Line: </strong></p>
<p><span style="color: #999999;">[In Terminal]</span> <code>sudo usermod -G vboxusers -a username</code></p>
<p><strong> Via Graphical Menus:</strong></p>
<p>Goto <em>System -&gt; Administration -&gt; Users and Groups</em>.</p>
<p>Click on the &#8220;<em>Unlock</em>&#8221; button and then enter in your password.</p>
<p>Click on the &#8220;<em>Manage Groups</em>&#8220;<em> </em>button.</p>
<p>Find the &#8220;<em>vboxusers</em>&#8221; group which is probably at the very bottom of the list, highlight it by clicking again,  and click once more on &#8220;<em>Properties&#8221;.</em></p>
<p>Make sure there&#8217;s a check mark next to your user&#8217;s name.</p>
<h3><span style="color: #800000;">Setup USB:</span></h3>
<p>USB is disabled by default, so you&#8217;ll probably want to enable it.  Otherwise you&#8217;ll get an error when you go into the &#8220;Settings&#8221; of your virtual machine.  To  correct this, you&#8217;ll need to edit the <em>mountdevsubfs.sh</em> file:</p>
<p>[In Terminal] <code>sudo gedit /etc/init.d/mountdevsubfs.sh</code></p>
<p>Inside, you&#8217;ll see a block of code that looks like this:</p>
<blockquote><p>#<br />
# Magic to make /proc/bus/usb work<br />
#<br />
#mkdir -p /dev/bus/usb/.usbfs<br />
#domount usbfs &#8220;&#8221; /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644<br />
#ln -s .usbfs/devices /dev/bus/usb/devices<br />
#mount &#8211;rbind /dev/bus/usb /proc/bus/usb</p></blockquote>
<p>Change it to look like this (uncomment out the region by deleting the &#8220;#&#8217;s&#8221;):</p>
<blockquote><p>#<br />
# Magic to make /proc/bus/usb work<br />
#<br />
mkdir -p /dev/bus/usb/.usbfs<br />
domount usbfs &#8220;&#8221; /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644<br />
ln -s .usbfs/devices /dev/bus/usb/devices<br />
mount &#8211;rbind /dev/bus/usb /proc/bus/usb</p></blockquote>
<p>Save the changes, log out, and then log back in again for the changes to take place.</p>
<h3><span style="color: #800000;">Properly Backup Your VirtualBox .VDI File:</span></h3>
<p>I have written a guide specifically for this purpose.  It is located here:</p>
<p><a href="http://derekhildreth.com/blog/index.php/2007/11/how-to-properly-backup-a-virtualbox-machine-vdi " target="_blank">http://derekhildreth.com/blog/index.php/2007/11/how-to-properly-backup-a-virtualbox-machine-vdi </a></p>
<h3><span style="color: #800000;">Minor Troubleshooting: </span></h3>
<p>With these instructions, I was able to get my virtual machine working perfectly in VirtualBox.  If you have any problems, please let me know by commenting below.  I will help to resolve your issue and then place it with the solution in this section of the tutorial.  Thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thelinuxdaily.com/2008/04/how-to-install-virtualbox-on-ubuntu-804lts-hardy-heron-tutorial/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

