VirtualBox
Oracle VirtualBox is a hosted hypervisor for x86 and ARM virtualization developed by Oracle Corporation. VirtualBox was originally created by InnoTek Systemberatung GmbH, which was acquired by Sun Microsystems in 2008, which was in turn acquired by Oracle in 2010.
VirtualBox may be installed on Microsoft Windows, macOS, Linux, Solaris and OpenSolaris. There are also ports to FreeBSD and Genode. It supports the creation and management of guest virtual machines running Windows, Linux, BSD, OS/2, Solaris, Haiku, and OSx86, as well as limited virtualization of guests on Apple hardware. For some guest operating systems, a "Guest Additions" package of device drivers and system applications is available, which typically improves performance, especially that of graphics, and allows changing the resolution of the guest OS automatically when the window of the virtual machine on the host OS is resized.
Released under the terms of the GNU General Public License and, optionally, the CDDL for most files of the source distribution, VirtualBox is free and open-source software, though the Extension Pack is proprietary software, free of charge only to personal users. The License to VirtualBox was relicensed to GPLv3 with linking exceptions to the CDDL and other GPL-incompatible licenses.
History
VirtualBox was first offered by InnoTek Systemberatung GmbH, a German company based in Weinstadt, under a proprietary software license, making one version of the product available at no cost for personal or evaluation use, subject to the VirtualBox Personal Use and Evaluation License. In January 2007, based on counsel by LiSoG, InnoTek released VirtualBox Open Source Edition as free and open-source software, subject to the requirements of the GNU General Public License, version 2.InnoTek also contributed to the development of OS/2 and Linux support in virtualization and OS/2 ports of products from Connectix which were later acquired by Microsoft. Specifically, InnoTek developed the "additions" code in both Windows Virtual PC and Microsoft Virtual Server, which enables various host–guest OS interactions like shared clipboards or dynamic viewport resizing.
Sun Microsystems acquired InnoTek in February 2008.
Following the acquisition of [Sun Microsystems by Oracle Corporation] in January 2010, the product was re-branded as "Oracle VM VirtualBox".
In December 2019, VirtualBox removed support for software-based virtualization and exclusively performs hardware-assisted virtualization.
In August 2025, VirtualBox started fully supporting ARM virtualization.
Release history
| Version | Release date | Notable changes |
| 3.2 |
| |
| 4.0 | ||
| 4.1 | ||
| 4.2 | ||
| 4.3 | ||
| 5.0 | ||
| 6.0 | ||
| 6.1 | ||
| 7.0 | ||
| 7.1 | ||
| 7.2 | Aug 14, 2025 | |
| 7.2.6 | Jan 20, 2026 | The following previously proprietary features have been made open source: |
Licensing
The core package, since version 4 in December 2010, is free software under GNU [General Public License version 2]. A supplementary package, under a proprietary license, adds support for USB 2.0 and 3.0 devices, Remote Desktop Protocol, disk encryption, NVMe, and Preboot Execution Environment. This package is called "VirtualBox Oracle VM VirtualBox extension pack". It includes closed-source components, so it is not source-available. The license is called Personal Use and Evaluation License . It allows gratis access for personal use, educational use, and evaluation. Since VirtualBox version 5.1.30, Oracle defines personal use as installation on a single computer for non-commercial purposes.Prior to version 4, there were two different packages of the VirtualBox software. The full package was offered gratis under the PUEL, with licenses for other commercial deployment purchasable from Oracle. A second package called the VirtualBox Open Source Edition was released under GPLv2. This removed the same proprietary components not available under GPLv2.
Since September 9, 2011, building the BIOS for VirtualBox requires the Open Watcom compiler, which is released under the Sybase [Open Watcom Public License]. The Open Source Initiative has approved this as "Open Source" but the Free Software Foundation and the Debian Free Software Guidelines do not consider it "free".
VirtualBox has experimental support for macOS guests. However, macOS's end user license agreement does not permit running on non-Apple hardware. The operating system enforces this by calling the Apple System Management Controller, to verify the hardware's authenticity. All Apple machines have an SMC.
Virtualization
Users of VirtualBox can load multiple guest OSes under a single host operating-system. Each guest can be started, paused and stopped independently within its own virtual machine. The user can independently configure each VM and run it under a choice of software-based virtualization or hardware assisted virtualization if the underlying host hardware supports this. The host OS and guest OSs and applications can communicate with each other through a number of mechanisms including a common clipboard and a virtualized network facility. Guest VMs can also directly communicate with each other if configured to do so.Hardware-assisted
VirtualBox supports both Intel's VT-x and AMD's AMD-V [|hardware-assisted virtualization]. Making use of these facilities, VirtualBox can run each guest VM in its own separate address-space; the guest OS ring 0 code runs on the host at ring 0 in VMX non-root mode rather than in ring 1.Starting with version 6.1, VirtualBox only supports this method. Until then, VirtualBox specifically supported some guests only on hosts with hardware-assisted virtualization.
Devices and peripherals
VirtualBox emulates hard disks in three formats: the native VDI, VMware's VMDK, and Microsoft's VHD. It thus supports disks created by other hypervisor software. VirtualBox can also connect to iSCSI targets and to raw partitions on the host, using either as virtual hard disks. VirtualBox emulates IDE, SCSI, SATA, and SAS controllers, to which hard drives can be attached.VirtualBox has supported Open Virtualization Format since version 2.2.0.
Both ISO images and physical devices connected to the host can be mounted as CD or DVD drives. VirtualBox supports running operating systems from live CDs and DVDs.
By default, VirtualBox provides graphics support through a custom virtual graphics-card that is VBE or UEFI GOP compatible. The Guest Additions for Windows, Linux, Solaris, OpenSolaris, and OS/2 guests include a special video-driver that increases video performance and includes additional features, such as automatically adjusting the guest resolution when resizing the VM window
and desktop composition via virtualized WDDM drivers.
For an Ethernet network adapter, VirtualBox virtualizes these Network Interface Cards:
- AMD PCnet PCI II
- AMD PCnet-Fast III
- Intel Pro/1000 MT Desktop
- Intel Pro/1000 MT Server
- Intel Pro/1000 T Server
- Paravirtualized network adapter
For a sound card, VirtualBox virtualizes Intel HD Audio, Intel ICH AC'97, and SoundBlaster 16 devices.
A USB 1.1 controller is emulated, so that any USB devices attached to the host can be seen in the guest. The proprietary extension pack adds a USB 2.0 or USB 3.0 controller and, if VirtualBox acts as an RDP server, it can also use USB devices on the remote List of [Remote Desktop Protocol clients|RDP client], as if they were connected to the host, although only if the client supports this VirtualBox-specific extension.
Software-based
In the absence of hardware-assisted virtualization, versions 6.0.24 and earlier of VirtualBox made use of a standard software-based virtualization approach. This mode supports 32-bit guest operating systems which run in rings 0 and 3 of the Intel ring architecture.- The system reconfigures the guest OS code, which would normally run in ring 0, to execute in ring 1 on the host hardware. Because this code contains many privileged instructions which cannot run natively in ring 1, VirtualBox employs a Code Scanning and Analysis Manager to scan the ring 0 code recursively before its first execution to identify problematic instructions and then calls the Patch Manager to perform in-situ patching. This replaces the instruction with a jump to a VM-safe equivalent compiled code fragment in hypervisor memory.
- The guest user-mode code, running in ring 3, generally runs directly on the host hardware in ring 3.
Using these techniques, VirtualBox could achieve performance comparable to that of VMware in its later versions.
The feature was dropped starting with VirtualBox 6.1.
Features
- Snapshots of the RAM and storage that allow reverting to a prior state.
- Screenshots and screen video capture
- "Host key" for releasing the keyboard and mouse cursor to the host system if captured to the guest system, and for keyboard shortcuts to features such as configuration, restarting, and screenshot. By default, it is the right-side key, or on Mac, the left key.
- Mouse pointer integration, meaning automatic coupling and uncoupling of mouse cursor when moved inside and outside the virtual screen, if supported by guest operating system.
- Seamless mode – the ability to run virtualized applications side by side with normal desktop applications
- Shared clipboard
- Shared folders through "guest additions" software
- Special drivers and utilities to facilitate switching between systems
- Ability to specify amount of shared RAM, video memory, and CPU execution cap
- Ability to emulate multiple screens
- Command line interaction
- Public API |Java], Python to control VM configuration and execution
- Nested [paging for AMD-V and Intel VT
- Limited support for 3D graphics acceleration 3.0 and Direct3D 9.0c via SMP support, since version 3.0
- Teleportation
- 2D video output acceleration, since version 3.1
- EFI has been supported since version 3.1
Storage emulation
- Ability to mount [virtual hard disk drive">Symmetric multiprocessing">SMP support, since version 3.0
- Teleportation
- 2D video output acceleration, since version 3.1
- EFI has been supported since version 3.1
Storage emulation
- Ability to mount [virtual hard disk drives and disk images. Virtual optical disc images can be used for booting and sharing files to guest systems lacking networking support.
- NCQ support for SATA, SCSI and SAS raw disks and partitions
- SATA disk hotplugging
- Pass-through mode for solid-state drives
- Pass-through mode for CD/DVD/BD drives – allows users to play audio CDs, burn optical disks, and play encrypted DVD discs
- Can disable host OS I/O cache
- Allows limitation of IO bandwidth
- PATA, SATA, NVMe, SCSI, SAS, iSCSI, floppy disk controllers
- VM disk image encryption using AES128/AES256
- Raw hard disk access – allows physical hard disk partitions on the host system to appear in the guest system
- VMware Virtual Machine Disk format support – allows exchange of disk images with VMware
- Microsoft VHD support
- QEMU qed and qcow disks
- HDD format disks used by Parallels virtualization products
Limitations
- 3D graphics acceleration for Windows guests earlier than Windows Vista was removed in version 6.1.
- VirtualBox has a very low transfer rate to and from USB2 devices.
- For USB3 equipment, device pass-through does not work in older guest OSes, such as Windows Vista and Windows XP, which lack appropriate drivers. However, since version 5.0, VirtualBox has added an experimental USB3 controller, which enables USB3 in these operating systems. This requires editing some configuration files.
- Guest Additions for macOS are unavailable at this time.
- Native Guest Additions for Windows 9x are not available. This results in poor performance due to the lack of graphics acceleration with the default limited color depth. External third-party software is available to enable support for 32-bit color mode, resulting in better performance.
- EFI support is incomplete, e.g. EFI boot for a Windows 7 guest is not supported.
- Only older versions of DirectX and OpenGL pass-through are supported.
- Video RAM is limited to 128 MiB due to technical difficulties.
- Windows 95/98/98SE/ME cannot be installed or work unreliably with modern CPUs and hardware assisted virtualization. This is due to these OSes not being coded correctly. An open source patch has been developed to fix the issue which also addresses Windows 95/98/98SE bug which makes the system crash when running on new fast CPUs.
- VirtualBox 7.0 and later is required to run a pristine Windows 11 guest. Full compatibility with Windows 11 is achieved in VirtualBox version 7.0.14 and higher.
- The provided NVMe controller doesn't support Windows guests.
Host OS
- Windows 10 64-bit and higher. Support for 64-bit Windows was added with VirtualBox 1.5. Support for 32-bit Windows was removed in 6.0.
- * Support for Windows 2000 was removed in version 1.6.
- * Support for Windows XP was removed in version 5.0.
- * Support for Windows Vista was removed in version 5.2.
- * Support for Windows 7 was removed in version 6.1.
- * Support for Windows 8 was removed in version 7.0.
- * Support for Windows 8.1 was removed in version 7.1.
- Windows Server 2019 and higher.
- * Support for Windows Server 2003 was removed in 5.0.
- * Support for Windows Server 2008 was removed in 6.0.
- * Support for Windows Server 2008 R2 was removed in version 7.0.
- * Support for Windows Server 2012 and 2016 was removed in version 7.1.
- Linux distributions
- macOS from version 11 to 14 both ARM and Intel versions:
- * Preliminary Mac OS X support was added with VirtualBox 1.4, full support with 1.6.
- * Support for Mac OS X 10.4 and earlier was removed with VirtualBox 3.1.
- * Support for Mac OS X 10.5 was removed with VirtualBox 4.2.
- * Support for Mac OS X 10.6 and 10.7 was removed with VirtualBox 5.0.
- * Support for Mac OS X 10.8 was removed with VirtualBox 5.1.
- * Support for Mac OS X 10.9 was removed with VirtualBox 5.2.
- * Support for Mac OS X 10.10 and OS X 10.11 was removed with VirtualBox 6.0.
- * Support for macOS 10.12 was officially removed with VirtualBox 6.1 .
- * Support for macOS 10.13 and macOS 10.14 was officially removed with VirtualBox 7.0.
- * Support for macOS 10.15 was officially removed with VirtualBox 7.1.
- Oracle Solaris
Guest additions
While VirtualBox itself is free to use and is distributed under an open source license the VirtualBox Extension Pack is licensed under the VirtualBox Personal Use and Evaluation License. Personal use of the extension pack is free but commercial users need to purchase a license.
Guest Additions are installed within each guest virtual machine which supports them; the Extension Pack is installed on the host running VirtualBox.