VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2374 - 2376 of 16363)

Ticket Resolution Summary Owner Reporter
#2311 wontfix Configuring DMI setherghd
Description

If one follows section 9.13 of the User Manual, it does not meet (or satisfy) all of the criteria for passing WGA for Dell motherboards.

The installation for Windows XP was performed _in_ VirtualBox. This is _not_ a migration. OEM installations for Dell motherboards pre-validate via SMBIOS. Hardware is not considered, to my knowledge, in the evaluation for a genuine installation.

Activation is still pending despite configuring DMI correctly.

#7915 fixed Mircosecond timer returns value from the past seth bollinger
Description

We're running a ubuntu 10.04 (2.6.32-27-generic) guest on a ubuntu 10.10 (2.6.35-22-server) server using VirtualBox 4.0 (or 3.2.8). If I enable 2 virtual CPUs on the guest, every once in a while the timer will tick backwards by ~4-60 microseconds. If I allocate 1 virtual CPU instead of 2, this problem seems to happen much less often. I have tried a bunch of different things having to do with timer migration, disabling tickless support, and specifying the timer to use on the kernel load line. The only thing that seems to work is using jiffies for the counter, which limits you to HZ resolution (which would be a good reason from a microsecond resolution problem to go away :)).

I've looked through the timer get code in VMM/VMMAll/TMAllCpu.cpp, but it looks like returning a TSC value in the past is protected against so I don't understand how it's happening. My only guess is that somehow the timer value is set to a time in the past so the last seen protection on the get isn't working, but I don't have any proof.

I will try to gather some data using system tap next week. If there's any other data I can gather, please let me know. I see that it looks like some stats are logged when these time conditions occur, but I don't know how to capture them. I would be happy to capture them if someone would point me to a webpage that explains how.

Here's python and C code to recreate the issue on the guest: ####################################### import time

print("Start time => %s" % time.ctime()) while True: t = time.time() c = time.time()

if c < t: print("ERROR:\nCURR => %f\nLAST => %f" % (c, t)) break

print("End time => %s" % time.ctime()) ####################################### #include <stdio.h> #include <sys/time.h>

int main() { struct timeval last, curr;

while(1) { gettimeofday(&last, 0); gettimeofday(&curr, 0);

if ((last.tv_sec == curr.tv_sec) && (curr.tv_usec < last.tv_usec)) { printf("ERROR:\nCURR => %d\nLAST => %d", curr.tv_usec, last.tv_usec); break; } } } #######################################

#13050 duplicate Error al iniciar máquina virtual seterymco
Description

Fallo al abrir una sesión para la máquina virtual PC_Ubuntu1404LTS.

Failed to load VMMR0.r0 (VERR_LDR_MISMATCH_NATIVE).

Código Resultado: E_FAIL (0x80004005) Componente: Console Interfaz: IConsole {8ab7c520-2442-4b66-8d74-4ff1e195d2b6}

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy