Skip to main content

Command Palette

Search for a command to run...

How to Install VirtualBox on Linux

Published
6 min readView as Markdown

Installing VirtualBox on Linux is a great way to run multiple operating systems on your computer without needing extra hardware. Whether you want to test software, run Windows apps, or experiment with different Linux distros, VirtualBox makes it simple. If you’re new to Linux or virtualization, don’t worry—I’ll walk you through the process step-by-step.

In this guide, you’ll learn how to install VirtualBox on popular Linux distributions like Ubuntu, Fedora, and Debian. I’ll also cover how to set up VirtualBox after installation so you can start creating virtual machines right away. Let’s get started and make your Linux system more versatile with VirtualBox.

What is VirtualBox and Why Use It on Linux?

VirtualBox is a free and open-source virtualization software developed by Oracle. It allows you to create and run virtual machines (VMs) on your computer. Each VM acts like a separate computer with its own operating system, running inside your main Linux system.

Here’s why VirtualBox is popular among Linux users:

  • Free and Open Source: No cost and community-supported.
  • Cross-Platform: Works on Linux, Windows, and macOS.
  • Supports Many OSes: Run Windows, Linux, BSD, Solaris, and more.
  • Easy to Use: Friendly GUI and command-line tools.
  • Snapshots and Cloning: Save VM states and duplicate setups easily.

Using VirtualBox on Linux helps you test software safely, run apps that only work on Windows, or learn new operating systems without affecting your main system.

Preparing Your Linux System for VirtualBox Installation

Before installing VirtualBox, you need to prepare your Linux system. This includes updating your package lists and installing required dependencies.

Here’s what to do:

  1. Update Package Lists:
    Open a terminal and run:

    sudo apt update
    

    (Use dnf or yum for Fedora or CentOS.)

  2. Install Required Packages:
    VirtualBox needs some kernel headers and build tools to work properly. Install them with:

    sudo apt install build-essential dkms linux-headers-$(uname -r)
    

    For Fedora:

    sudo dnf install kernel-devel kernel-headers gcc make perl dkms
    
  3. Check Your Linux Version:
    Knowing your Linux distribution and version helps you get the right VirtualBox package. Use:

    lsb_release -a
    

    or

    cat /etc/os-release
    

Preparing your system ensures VirtualBox installs smoothly and integrates well with your Linux kernel.

Installing VirtualBox on Ubuntu and Debian

Ubuntu and Debian are among the most popular Linux distros. Installing VirtualBox on them is straightforward using the official Oracle repository or the default package manager.

Method 1: Using the Official Oracle Repository

This method ensures you get the latest VirtualBox version.

  1. Add Oracle’s Public Key:

    wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
    wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
    
  2. Add VirtualBox Repository: For Ubuntu 22.04, add:

    sudo add-apt-repository "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian jammy contrib"
    

    Replace jammy with your Ubuntu codename or buster for Debian.

  3. Update Package Lists:

    sudo apt update
    
  4. Install VirtualBox:

    sudo apt install virtualbox-7.0
    
  5. Verify Installation:

    vboxmanage --version
    

Method 2: Using Default Package Manager

If you prefer simplicity, install the VirtualBox version available in your distro’s repositories:

sudo apt install virtualbox

This may not be the latest version but is stable and well-tested.

Installing VirtualBox on Fedora and CentOS

Fedora and CentOS users can install VirtualBox using Oracle’s repository or RPM packages.

Step 1: Add Oracle VirtualBox Repository

Create a repo file:

sudo nano /etc/yum.repos.d/virtualbox.repo

Add the following content for Fedora 38:

[virtualbox]
name=Oracle Linux / RHEL / CentOS-$releasever / $basearch - VirtualBox
baseurl=https://download.virtualbox.org/virtualbox/rpm/fedora/38/$basearch
enabled=1
gpgcheck=1
gpgkey=https://www.virtualbox.org/download/oracle_vbox.asc

Save and exit.

Step 2: Install Required Packages

sudo dnf install gcc make perl kernel-devel kernel-headers dkms

Step 3: Install VirtualBox

sudo dnf install VirtualBox-7.0

Step 4: Setup Kernel Modules

Run:

sudo /sbin/vboxconfig

This compiles and loads the VirtualBox kernel modules.

Step 5: Verify Installation

vboxmanage --version

You’re ready to launch VirtualBox from your applications menu or terminal.

Post-Installation Steps: Setting Up VirtualBox on Linux

After installing VirtualBox, you should perform a few steps to optimize your experience.

1. Add Your User to the vboxusers Group

This allows your user to access USB devices in VirtualBox.

sudo usermod -aG vboxusers $USER

Log out and back in for changes to take effect.

2. Install VirtualBox Extension Pack

The Extension Pack adds USB 3.0 support, RDP, and other features.

sudo VBoxManage extpack install --replace /path/to/Oracle_VM_VirtualBox_Extension_Pack.vbox-extpack

3. Configure VirtualBox Network Settings

VirtualBox supports several network modes:

  • NAT: Default, allows internet access.
  • Bridged Adapter: Connects VM to your LAN.
  • Host-only: VM can communicate only with host.

Choose the mode based on your needs in the VM settings.

4. Create Your First Virtual Machine

  • Open VirtualBox.
  • Click “New” and follow the wizard.
  • Select OS type, allocate RAM and disk space.
  • Attach installation media (ISO file).
  • Start the VM and install the guest OS.

Troubleshooting Common Installation Issues

Sometimes, you might face issues installing or running VirtualBox on Linux. Here are common problems and fixes:

  • Kernel Module Errors:
    Run sudo /sbin/vboxconfig to rebuild modules. Ensure kernel headers match your running kernel.

  • USB Devices Not Detected:
    Add your user to vboxusers group and install the Extension Pack.

  • VirtualBox Won’t Start:
    Check for conflicting virtualization software like KVM or Hyper-V. Disable them if necessary.

  • Network Problems:
    Switch network mode or reinstall VirtualBox network drivers.

  • Permission Denied Errors:
    Run VirtualBox as your regular user, not root.

Benefits of Using VirtualBox on Linux

VirtualBox offers many advantages for Linux users:

  • Safe Testing Environment: Try new OS or software without risk.
  • Cross-Platform Compatibility: Run Windows or macOS apps on Linux.
  • Easy Snapshots: Save VM states and revert anytime.
  • Resource Control: Allocate CPU, RAM, and disk space per VM.
  • Community Support: Large user base and extensive documentation.

VirtualBox is a powerful tool that enhances your Linux system’s flexibility and productivity.

Alternatives to VirtualBox on Linux

While VirtualBox is popular, other virtualization tools exist:

ToolDescriptionProsCons
VMware Workstation PlayerCommercial, free for personal useBetter performance, 3D supportNot fully open source
KVM (Kernel-based Virtual Machine)Built into Linux kernelHigh performance, native integrationCommand-line focused, complex
QEMUEmulator and virtualizerSupports many architecturesSlower than others
GNOME BoxesSimple GUI for KVM/QEMUEasy to use, integrated with GNOMELimited advanced features

Choose based on your needs and comfort level.

Conclusion

Installing VirtualBox on Linux is a straightforward process that opens up many possibilities. Whether you use Ubuntu, Fedora, or Debian, you can easily set up VirtualBox to run multiple operating systems on your machine. Preparing your system, choosing the right installation method, and performing post-installation steps ensure a smooth experience.

VirtualBox’s flexibility and features make it an excellent choice for developers, testers, and anyone wanting to explore different OS environments. With this guide, you now have the knowledge to install and start using VirtualBox confidently on your Linux system.

FAQs

How do I check if VirtualBox is installed on Linux?

Open a terminal and type vboxmanage --version. If it returns a version number, VirtualBox is installed.

Can I run Windows on VirtualBox in Linux?

Yes, VirtualBox supports running Windows as a guest OS on Linux hosts.

Do I need to install kernel headers before VirtualBox?

Yes, kernel headers are required to build VirtualBox kernel modules for your Linux version.

How do I update VirtualBox on Linux?

Update the package from Oracle’s repository or your distro’s package manager, then run sudo /sbin/vboxconfig.

Is VirtualBox free to use on Linux?

Yes, VirtualBox is free and open-source software for personal and commercial use.

More from this blog

L

LinuxBloke | Linux Tips, Tricks & Troubleshooting

672 posts