Custom Query (16363 matches)
Results (967 - 969 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #18766 | fixed | 6.0.10 r132072 crashes Windows VM when Shared Folders are used | ||
| Description |
OS Host: Ubuntu Mate 18.04.2 x64 VM: Windows 7 SP1 pro x64 VirtualBox version + Guest Addition: 6.0.10 r132072 UAC: disabled Bug Description: When accessing an executable (.exe) exclusively from a shared disk, Virtualbox crash error irql zero at system service. This does not happen with Windows 10 VMs (I have not tested with other systems). Neither happens in Windows 7 if the executable is in the c: drive (desktop or directories). It also does not happen with version 6.0.8 r130520 Link Bug Video 6.0.10 r132072: https://mega.nz/#!vR8yRArb!xsshqGCtIqVYBxtZAiKmeuS6VNiyP_My9ggS4no9O-Y Link Image Normal Run 6.0.8 r130520: https://mega.nz/#!DAFT0YzD!cEZflU3ySvgNS2cjt1R3xC4ZIP2YVR2fwqLYx6Cj1wE |
|||
| #18764 | fixed | Create a debian 10 (buster) repository -> fixed as of 6.0.10/5.2.32 | ||
| Description |
Buster being the new debian stable, please provide a buster repository for debian |
|||
| #18762 | duplicate | ACPI Shutdown lead to "Failed to open session" | ||
| Description |
I have 9 virtual machines joined in a group, configured as headless. When I use 'ACPI Shutdown' on the group, sometimes (not always) I get error: Failed to open a session for the virtual machine Witness4Tuchanka.
Failed to get a console object from the direct session (NS_ERROR_ABORT).
Result Code: VBOX_E_VM_ERROR (0x80BB0003)
Component: MachineWrap
Interface: IMachine {5047460a-265d-4538-b23e-ddba5fb84976}
Also I created few script, which simply start/stop all VMs in a loop: $ less is_vm_running.bash
# $1 VM name to test
. "${script_dir}/is_function_absent.bash"
if is_function_absent 'is_vm_running'
then
function is_vm_running {
test 0 -ne $(VBoxManage list runningvms | { grep --count --fixed-strings "\"$1\"" || [ $? -eq 1 ]; })
}
readonly -f is_vm_running
fi
$ less start_vms.bash
. "${script_dir}/is_function_absent.bash"
. "${script_dir}/is_vm_running.bash"
. "${script_dir}/vm_ssh.bash"
if is_function_absent 'start_vms'
then
function start_vms {
local i
for i in "${!vm_name[@]}"
do
if ! is_vm_running "${vm_name[$i]}"
then
echo "Start ${vm_name[$i]}"
VBoxManage startvm "${vm_name[$i]}"
fi
done
for i in "${!vm_name[@]}"
do
echo "Waiting for system on ${vm_name[$i]}"
until vm_ssh "${vm_hostname[$i]}" 'systemctl is-system-running' 2>/dev/null
do
sleep 1
done
done
sleep 5
}
readonly -f start_vms
fi
$ less soft_off.bash
. "${script_dir}/is_function_absent.bash"
. "${script_dir}/is_vm_running.bash"
. "${script_dir}/vm_ssh.bash"
if is_function_absent 'soft_off'
then
function soft_off {
local i
for i in "${!vm_name[@]}"
do
if is_vm_running "${vm_name[$i]}"
then
VBoxManage controlvm "${vm_name[$i]}" acpipowerbutton
fi
done
for i in "${!vm_name[@]}"
do
echo "Waiting Off of ${vm_name[$i]}"
while is_vm_running "${vm_name[$i]}"
do
sleep 1
done
done
sleep 5
}
readonly -f soft_off
fi
$ less power_loop #!/bin/bash
# safe bash
set -o errexit -o noclobber -o nounset -o pipefail
readonly script_dir="$(dirname "${BASH_SOURCE[0]}")"
. "${script_dir}/load_config.bash"
. "${script_dir}/start_vms.bash"
. "${script_dir}/soft_off.bash"
i=0
echo "i=$i $(date +'%FT%T')" |tee 'test.log'
while true
do
start_vms
soft_off
let i=$i+1
echo "i=$i $(date +'%FT%T')" |tee -a 'test.log'
done
And also I get the same error, less often. Just GUI window with message about error (I has opened GUI), but all other keep working. |
|||

