Custom Query (16363 matches)
Results (544 - 546 of 16363)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #5329 | fixed | vbox claims SVME, even when in use by KVM -> fixed in SVN | ||
| Description |
vbox claims SVME, even when it is already in use by KVM How to reproduce: have a CPU/system AMD VT-x (SVM) start a VM using KVM start VirtualBox ; start a VM that uses hardware virtualisation (SVM) Actual Results: VBox VM started, but at the same time KVM VM stopped execution and could only be terminated with killall -9 qemu-kvm with some bugs visible in dmesg. A reboot was needed to get it back to a working state. Expected Results: when a VM using HVM is actually started, availability of SVME should be checked and an error be reported to the user like "hardware virtualisation is already in use - either stop kvm or disable HVM on this VM" maybe related to the fix of bug 3058 http://www.virtualbox.org/ticket/3058 |
|||
| #1153 | fixed | vbox can't delete dvd image that is not accessable | ||
| Description |
When I start VirtualBox I see following: Invalid image file path: '/mnt/cdrom/winxp-sp2-en.iso' (VERR_ACCESS_DENIED).
Result Code: 0x80004005
Component: DVDImage
Interface: IDVDImage {140fff03-e479-4194-8562-abc4f8171009}
Ok, I unmounted /mnt/cdrom that was NFS share and now /mnt/cdrom/ is drwx------ root:root, but I don't need the image anymore, let's try to unregister it from command line... darkk@thinkpad ~ $ VBoxManage unregisterimage dvd /mnt/cdrom/winxp-sp2-en.iso
VirtualBox Command Line Management Interface Version 1.5.4
(C) 2005-2007 innotek GmbH
All rights reserved.
[!] Failed to create the VirtualBox object!
[!] Primary RC = 0x80004005
[!] Full error info present: true , basic error info present: true
[!] Result Code = 0x80004005
[!] Text = Invalid image file path: '/mnt/cdrom/winxp-sp2-en.iso' (VERR_ACCESS_DENIED)
[!] Component = DVDImage, Interface: IDVDImage, {140fff03-e479-4194-8562-abc4f8171009}
[!] Callee = <NULL>, {00000000-0000-0000-0000-000000000000}
Oops, seems my vbox is broken until admin comes back. ;) |
|||
| #10465 | invalid | vbox can't automount transient shared folders after logining in guest os | ||
| Description |
According sdk document, I can creates transient new shared folders by IConsole::createSharedFolder([in]wstring name,[in] wstring hostPath,[in] boolean writable,[in] boolean automount). And I set the automount ture.
I wrote some code like below: IMachine machine = vbox.findMachine("windowsxp");
IProcess process = machine.launchVMProcess(session, "gui", null);
progress.waitForCompletion(10000);
IConsole console = session.getConsole();
sharename = "shared" + String.valueOf(new Random().nextInt());
console.createSharedFolder(sharename, "d:\\uml", false, true);
And the code work well. The shared folder was automounted, and i see a new driver with a driver letter in windows explorer. But after i logined in my guest xp, i wanted to add a new transient shared folder(like d: Is this a bug in guest additions?Thank you. |
|||

