Page 1 of 1

Guru Meditation error

Posted: 3. Jun 2018, 00:18
by MGG
Hi guys,

Since I replaced my broken LCD of my laptop, I get a fault starting W7 in Virtual Box. I don know if it;s related to the replacement of the LCD.
I sent the log file. Hopefully there is a solution.

Thanks in advance.

Marc

Re: Guru Meditation error

Posted: 3. Jun 2018, 08:05
by andyp73
00:03:12.520248 !! VCPU0: Guru Meditation 1155 (VINF_EM_TRIPLE_FAULT)
Your guest OS has done something nasty causing it to triple fault at which point it gives up with the guru meditation you see. This particular issue can be extremely difficult to debug and find the root cause of but there are some things that jump out immediately from your log file...
00:00:00.501195 Host RAM: 15953MB (15.5GB) total, 9729MB (9.5GB) available
00:00:00.675671 RamSize <integer> = 0x00000002a0c00000 (11 286 872 064, 10 764 MB, 10.5 GB)
00:00:00.676118 VRamSize <integer> = 0x0000000010000000 (268 435 456, 256 MB)
You have allocated memory to the guest that you don't have available on the host. Your options are: a) allocate less memory to the guest, b) close some applications on the host, or c) buy some more memory for the host.
00:00:00.841635 CPUM: Physical host cores: 2
00:03:12.533568 NumCPUs <integer> = 0x0000000000000002 (2)
Your CPU only has two physical cores and you have allocated both of these to the guest. This may lead to resource starvation on the host. If you can, reduce it to 1 on the guest.

-Andy.