From 6485241a5c22b82145e8a76c472e8f7603a346df Mon Sep 17 00:00:00 2001 From: Maksim Malchuk Date: Wed, 21 Sep 2016 14:45:34 +0300 Subject: [PATCH] Disable audio totally Since VirtualBox 5.1 released on 2016-07-12 the audio setting enabled by default which can be an issue on some hardware because audio not supported in the Fuel. Change-Id: I19dfd0cb44d034e41e3b061f2107476907b78363 Closes-Bug: #1624303 Signed-off-by: Maksim Malchuk --- functions/vm.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/functions/vm.sh b/functions/vm.sh index 60a9e8d..3eafd05 100755 --- a/functions/vm.sh +++ b/functions/vm.sh @@ -100,6 +100,9 @@ create_vm() { # Set video memory to 16MB, so VirtualBox does not complain about "non-optimal" settings in the UI execute VBoxManage modifyvm $name --rtcuseutc on --memory $memory_mb --cpus $cpu_cores --vram 16 + # Disable audio totally because not supported in the Fuel + execute VBoxManage modifyvm $name --audio "none" + # Configure main network interface for management/PXE network add_hostonly_adapter_to_vm $name 1 "${nic}" execute VBoxManage modifyvm $name --boot1 disk --boot2 dvd --boot3 net --boot4 none