From 1454ba4a9e72015f25b139717d8d583a575b68d6 Mon Sep 17 00:00:00 2001 From: Matt Calvert Date: Tue, 13 Oct 2020 18:30:26 +0100 Subject: [PATCH] Disable audio device mapping for VirtualBox VMs (#6811) I can't see any reason why audio devices would be needed, and it can cause issues with the host audio --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index fd3bc5322..70a09581c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -142,6 +142,7 @@ Vagrant.configure("2") do |config| vb.gui = $vm_gui vb.linked_clone = true vb.customize ["modifyvm", :id, "--vram", "8"] # ubuntu defaults to 256 MB which is a waste of precious RAM + vb.customize ["modifyvm", :id, "--audio", "none"] end node.vm.provider :libvirt do |lv|