How to install and use Qubes OS inside VirtualBox

A blatant copy-paste of the walkthrough I wrote and posted here.


Why bother?

Why not? It’s a fun project. :wink:

Despite the final effect being an unsupported configuration and lacking essential security features for production use, there are still some cases, besides having fun, like testing out the workflow of this system when no supported hardware is present. Or developing software for Domain-0, which is better suited for testing on a living system, rather than with mocks. Or learning some of the internals of Qubes OS’ underlying infrastructure, like Xen virtualization modes, commandline applications for managing qubes, among others.

Things to keep in mind

  • This procedure is for the Qubes OS 4.2.0 release
  • VirtualBox Version 7.0.12 r159484 has been used for this laboratory, as it was the newest version at the time of writing this document.
  • Most of the time, especially during the installation phases, the virtual machine display resolution will be stuck at 800x600, making some crucial menus out-of-bounds - there will be descriptions, how to handle them.
  • The options described in this document have been tested to work fine, but may not be required for the whole setup to work fine - feel free to experiment with them on your own.

Creating and configuring the virtual machine

Create a new virtual machine with the following parameters:

  • ISO Image: Qubes-R4.2.0-x86_64.iso
  • Skip Unattended Installation: (checked)
  • Base Memory: 8192 MB
  • Processors: 4
  • Enable EFI (special OSes only): (checked)
  • Virtual Hard Disk β†’ Disk Size 80,00 GB

Then open the virtual machine’s Settings menu and change the following:

  • General β†’ Basic β†’ Version: from Red Hat (64-bit) to Fedora (64-bit)
  • System β†’ Motherboard β†’ Pointing Device: from PS/2 Mouse to USB Tablet
  • Display β†’ Screen β†’ Video Memory: from 16 MB to 128 MB

Installation

Start the virtual machine and once the boot menu shows up, uncheck the option β€œView β†’ Auto-resize Guest Display” in the virtual machine’s menu bar. Select the Install Qubes OS R4.2.0 option, and wait for the installer to start automatically.

On the β€œWELCOME TO QUBES OS R4.2.” screen click on the blue β€œContinue” button, leaving the default β€œEnglish (United States)” language option intact.

A modal will pop up with the notice β€œUnsupported Hardware Detected” and the following missing features: β€œHVM/VT-x/AMD-V, IOMMU/VT-d/AMD-Vi, HAP/SLAT/EPT/RVI, Interrupt Remapping”. Click on the β€œContinue” button.

On the β€œINSTALLATION SUMMARY” screen select the β€œSYSTEM β†’ Installation Destination” option and scroll down, so the β€œEncryption β†’ Encrypt my data.” option will show up. Uncheck it - we don’t need to encrypt the disk in this laboratory setting. Then click on the blue β€œDone” button in the top left corner.

Back on the β€œINSTALLATION SUMMARY” screen, scroll down so the β€œUSER SETTINGS β†’ User Creation” option will show up. Click on it, fill in the required options with:

  • Full name: user
  • User name: user
  • Password: password
  • Confirm password: password

and click on the blue β€œDone” button twice in the top left corner.

Back on the β€œINSTALLATION SUMMARY” screen, click on the blue β€œBegin Installation” button. Wait until this installation phase has finished and then click on the blue β€œReboot System” button. Wait until the machine reboots - it may take a while.

Wait until the system has finished loading - an β€œINITIAL SETUP” screen will appear. Click on the SYSTEM β†’ QUBES OS option and change the following options:

  • Make sys-net disposable: (checked)
  • Automatically accept USB mice (discouraged): (checked)
  • Automatically accept USB keyboard (discouraged if non-USB keyboard is available): (checked)

Click on the blue β€œDone” button in the top left corner. You’ll be back on the β€œINITIAL SETUP” screen with the crucial options out-of-bounds due to low screen resolution - press the β€œTab” key twice and then the β€œEnter” key to proceed.

The β€œINSTALLATION PROGRESS” screen will show up. Wait until the installation is finished (it may take a long time) and a modal will pop up with the message:

['/usr/bin/qvm-start', 'sys-firewall'] failed:
stdout: ""
stderr: "Failed to start an HVM qube with PCI devices assigned - hardware does not support IOMMU/VT-d/AMD-Vi
"

This is normal in the case of this laboratory - sys-firewall can’t start as sys-net couldn’t start. Proceed with β€œOK” and login to the desktop session.

Post-installation tweaks

Switch all domains from using PVH or HVM virtualization modes to use PV instead. You can do this manually through Qube Manager or automate it with qvm-prefs, for instance:

[user@dom0 ~]$ for i in $(qvm-ls --raw-list) ; do qvm-prefs $i virt_mode pv ; done

Next, apply these workarounds for sys-net:

[user@dom0 ~]$ qvm-features sys-net pci-e820-host False
[user@dom0 ~]$ qvm-prefs --set sys-net kernelopts " iommu=soft"

Next, switch to the root user and edit /etc/default/grub by adding:

  • qubes.enable_insecure_pv_passthrough to GRUB_CMDLINE_LINUX
  • pv-l1tf=false to GRUB_CMDLINE_XEN_DEFAULT

for instance:

[root@dom0 ~]# cat /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=false
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="rd.lvm.lv=qubes_dom0/root rd.lvm.lv=qubes_dom0/swap plymouth.ignore-serial-consoles rd.net.dhcp.vendor-class=anaconda-Linux 6.1.43-1.qubes.fc37.x86_64 x86_64 rd.driver.pre=btrfs rhgb quiet qubes.enable_insecure_pv_passthrough"
GRUB_DISABLE_RECOVERY="true"
GRUB_THEME="/boot/grub2/themes/qubes/theme.txt"
GRUB_CMDLINE_XEN_DEFAULT="console=none dom0_mem=min:1024M dom0_mem=max:4096M ucode=scan smt=off gnttab_max_frames=2048 gnttab_max_maptrack_frames=4096 pv-l1tf=false"
GRUB_DISABLE_OS_PROBER="true"
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX rd.qubes.hide_all_usb"

then run grub2-mkconfig -o /etc/grub2-efi.cfg and reboot.

The results

Once rebooted, log in to the desktop and wait for all autostarting qubes to start. You shall be able to play around in the graphical session and have a working Internet connection in your system. Have fun!


Licensed under the Creative Commons Attribution-ShareAlike 4.0 International license.
Β© 2023 Kamil Aronowski

5 Likes

Got a different errorr on Virtualbox 7.0.12 using 22 GB disk. It doesnt grow like on other linux`es.
And qubes didnt finish installing. One time ony 2 qubes installed, 2nd time ony 3 qubes installed.

How to make qubes install post-install?

Sometiimes on different Disk sizes error:
Failed to save storage configuration
for few seconds and changes to
Error checking storage configuration

When using 45 GB disk then worked but
Doesnt work command to change to pv.

Oh… edit… i see my mistake- virt mode vs virt_mode

Did everything

UPDATE- found mistake

i did pv-litf=false vs pv-l1tf=false

=====
Updates bug

Still all after is fixed dom0 updated. Others not. Rebooted. whoonix wizzard or somekind wizzard came up.
After did update again and doesnt work.

Then did again this

And now update worked.
Will need to check if each time need to do this for update to work.

====
Mouse bug.

Sometime mouse gets stuck and doesnt move and stays same place, only left/right click works in same place. Then need to close VM sending shutdown signal and with keyboard to move buttons over shutdown.