User Tools

Site Tools


virtualbox

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
virtualbox [2010/01/20 08:00] 172.26.0.166virtualbox [2010/01/20 08:08] 172.26.0.166
Line 1: Line 1:
-===== VirtualBox tips/tricks =====+===== VirtualBox =====
 VirtualBox is a free/opensource Hypervisor from Sun Microsystems.  It has performance on par with VMware and is very mature.  We have two virtualization servers, [[biovbox]] and biovboxtesting. VirtualBox is a free/opensource Hypervisor from Sun Microsystems.  It has performance on par with VMware and is very mature.  We have two virtualization servers, [[biovbox]] and biovboxtesting.
  
   * [[http://www.virtualbox.org|VirtualBox homepage]]   * [[http://www.virtualbox.org|VirtualBox homepage]]
- 
-==== Commonly-used commands ==== 
-List your VMs: 
-<code>VBoxManage list vms</code> 
-List all running VMs: 
-<code>VBoxManage list runningvms </code> 
  
 ===== Create a VM ===== ===== Create a VM =====
Line 23: Line 17:
  
 ===== Networking ===== ===== Networking =====
- 
 ==== Bridged Networking ==== ==== Bridged Networking ====
 If your guest is using bridged networking you MUST use this command to allow other users to use the host's physical network card.  Make sure your virtual machine is shut down and then run this command: If your guest is using bridged networking you MUST use this command to allow other users to use the host's physical network card.  Make sure your virtual machine is shut down and then run this command:
 <code>VBoxManage setextradata MyMachine VBoxInternal/Devices/pcnet/0/LUN#0/Config/RestrictAccess 0</code> <code>VBoxManage setextradata MyMachine VBoxInternal/Devices/pcnet/0/LUN#0/Config/RestrictAccess 0</code>
 +Each and every VM using bridged networking must use this command.  If you are seeing errors like ''VERR_PERMISSION_DENIED'' regarding the network interface, this is the cause!
 +
 +As of VirtualBox 3.1.2 this is still a [[http://www.virtualbox.org/ticket/2852|known issue]].
  
 ==== Port Forwarding ==== ==== Port Forwarding ====
Line 49: Line 45:
 $ yum install virtualbox-3.1 $ yum install virtualbox-3.1
 </file> </file>
 +
 +==== Commonly-used commands ====
 +List your VMs:
 +<code>VBoxManage list vms</code>
 +List all running VMs:
 +<code>VBoxManage list runningvms </code>