VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (1666 - 1668 of 16363)

Ticket Resolution Summary Owner Reporter
#11735 obsolete Failed to open a session for the virtual machine centos. tcflorea
Description

The guest used to work without issues for long time. Today, when starting the following message appeared: Failed to open a session for the virtual machine centos.

No error info.

Result Code: E_FAIL (0x80004005) Component: ProgressProxy Interface: IProgress {c20238e4-3221-4d3f-8891-81ce92d9f913} Dynamically allocated storage

Storage-> Controler: SATA controler-> centos.vdi cannot be read: Could not open medium 'C:\path\to\centos.vdi'. VDI: Invalid header in 'C:\path\to\centos.vdi' (VERR_VD_VDI_INVALID_HEADER). VD:error VERR_VD_VDI_INVALID_HEADER opening image file 'C:\path\to\centos.vdi' (VERR_VD_VDI_INVALID_HEADER).

On the Information about .vdi says "Detalis: Dynamically allocated storage". This was been created as "Fixed Size storage" and I have no clue why is now dinamically.

#12638 fixed VBOXADDITIONS_4.3.4_91027 does not compile in RHEL-7 beta tcamuso
Description

As reported in the VBox forum at ... https://forums.virtualbox.org/viewtopic.php?f=3&t=59094

In source file memobj-r0drv-linux.c starting at line 1536, and again at line 1542, the following test is made.

#  if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
                pTask->mm->numa_next_reset = jiffies + 0x7fffffffUL;
#  endif
                pTask->mm->numa_next_scan  = jiffies + 0x7fffffffUL;

This compile-time test was made to adapt to 3.13 kernel commit ...

commit 930aa174fcc8b0efaad102fd80f677b92f35eaa2
Author: Mel Gorman <mgorman@suse.de>
Date:   Mon Oct 7 11:29:37 2013 +0100

    sched/numa: Remove the numa_balancing_scan_period_reset sysctl

However, RHEL7 has backported this patch to its 3.10 kernel, so the result of compiling this file in VBoxGuest editions is ...

/tmp/vbox.0/r0drv/linux/memobj-r0drv-linux.c:1542:26: error: ‘struct mm_struct’ has no member named ‘numa_next_reset’
                 pTask->mm->numa_next_reset = jiffies + 0x7fffffffffffffffUL;
                          ^
make[2]: *** [/tmp/vbox.0/r0drv/linux/memobj-r0drv-linux.o] Error 1
make[1]: *** [_module_/tmp/vbox.0] Error 2
make: *** [vboxguest] Error 2

Applying the following patch provided by forum user "spicysomtam" made the VBoxGuestAdditions compile successfully, but I don't know if this is what you really want to do.

--- a/vboxhost/vboxdrv/r0drv/linux/memobj-r0drv-linux.c
+++ b/vboxhost/vboxdrv/r0drv/linux/memobj-r0drv-linux.c
@@ -1533,14 +1533,8 @@ DECLHIDDEN(int) rtR0MemObjNativeMapUser(PPRTR0MEMOBJINTERNAL ppMem, RTR0MEMOBJ p
                 /** @todo Ugly hack! But right now we have no other means to disable
                  *        automatic NUMA page balancing. */
 # ifdef RT_OS_X86
-#  if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
-                pTask->mm->numa_next_reset = jiffies + 0x7fffffffUL;
-#  endif
                 pTask->mm->numa_next_scan  = jiffies + 0x7fffffffUL;
 # else
-#  if LINUX_VERSION_CODE < KERNEL_VERSION(3, 13, 0)
-                pTask->mm->numa_next_reset = jiffies + 0x7fffffffffffffffUL;
-#  endif
                 pTask->mm->numa_next_scan  = jiffies + 0x7fffffffffffffffUL;
 # endif
             }
#3791 fixed Unknown Exception with Build 2.2.1-r46043 Tom Browder
Description

Mikhail gave me access to build VirtualBox-2009-04-16-20-10-53-win-2.2-rel-2.2.1-r46043-MultiArch.exe to see if I could get network access to my LAN.

It worked and I started merrily transferring files by scp. Twice I had to restart my virtual Linux box due to some kind of failure requiring me to restart the guest. Mikhail suggested I submit the log file with a bug report.

Attached is the log file.

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