VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (2311 - 2313 of 16363)

Ticket Resolution Summary Owner Reporter
#2370 fixed Memory leak with Solaris Host for 2.0.2 => Fixed in 2.0.6 Dan Jones
Description

HostOS: SunOS jcc-one 5.10 Generic_137112-07 i86pc i386 i86pc
GuestOS: OpenSolaris 200805

I start off with the long term stable memory usage of

jcc-one> memcheck
Total memory = 3068 MB
 Used memory = 1652 MB
 Free memory = 1416 MB
jcc-one>

Then I fire up VirtualBox and after a couple of minutes it settles to look like this

jcc-one> memcheck
Total memory = 3068 MB
 Used memory = 2460 MB
 Free memory = 608 MB
jcc-one>

which is what I would expect given the 1024MB memory size configured in VirtualBox.

Let the system sit idle for about 6 hours and we get

jcc-one> memcheck
Total memory = 3068 MB
 Used memory = 2796 MB
 Free memory = 272 MB
jcc-one>

and if I let it continue on for another 6 we hit the death of swap city.

FYI - memcheck is this simple beastie that I wrote long ago to track database thrash on a large web site:

jcc-one> cat memcheck.c
#include <stdio.h>
#include <unistd.h>
void main ()
{
        long total;
        long free;
        long page_size;

        /* convert pages to kilo-pages */
        total = sysconf(_SC_PHYS_PAGES) / 1024;
        free = sysconf(_SC_AVPHYS_PAGES) / 1024;

        /* convert page size to KB */
        page_size = sysconf(_SC_PAGESIZE) / 1024;

        total *= page_size;
        free *= page_size;

        printf ("Total memory = %ld MB\n", total);
        printf (" Used memory = %ld MB\n", total - free);
        printf (" Free memory = %ld MB\n", free);

        exit(0);
}
#2371 fixed Unable to install Virtual Box 2.0.2 on Solaris x86 host Brian Strandtman
Description

I am having difficulty installing the latest version of VB for Solaris. This Solaris image is itself a VB client OS from Mac OS X.

uname -a SunOS solaris10-srss-vb 5.10 Generic_127128-11 i86pc i386 i86pc

isainfo -k i386

results of pkgadd -d VirtualBoxKern-2.0.2-SunOS-r36488.pkg: Using </> as the package base directory. ## Processing package information. ## Processing system information.

bad entry read from contents file

  • pathname: Unknown
  • problem: incomplete entry

pkgadd: ERROR: unable to merge package and system information

Installation of <SUNWvboxkern> failed (internal error). No changes were made to the system.

#2372 obsolete Cannot attach bluetooth usb devices to guest OS from OSX host Josh
Description

I am unable to attach a Bluetooth device to a guest OS from my OSX host environment. I am able to attach other USB devices, however when I attempt to attach a Bluetooth device, I get the following error:

USB device 'Apple, Inc. Bluetooth USB Host Controller' with UUID {906cb966-8615-4b75-9775-47f7d6689c2f} is in use by someone else.

Result Code: NS_ERROR_FAILURE (0x80004005) Component: HostUSBDevice Interface: IHostUSBDevice {173b4b44-d268-4334-a00d-b6521c9a740a} Callee: IConsole {d5a1cbda-f5d7-4824-9afe-d640c94c7dcf}

I get this error when I try to attach to either a Windows or Linux guest OS from an OSX host.

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