Opened 9 years ago

Closed 8 years ago

#16 closed defect (fixed)

The VBox 'Main' server does not automatically start when starting VBoxHeadless

Reported by: Valery V. Sedletski Owned by: Valery V. Sedletski
Priority: major Milestone: VBox driver
Component: Frontends Keywords:
Cc:

Description

Noticed that in WinXP and Linux, VBoxSVC is started automatically by each frontend, like VBoxHeadless, VBoxSDL or VirtualBox?. But it isn't so on OS/2. Need to work it out.

Change History (3)

comment:1 Changed 9 years ago by Valery V. Sedletski

Summary: VBoxSVC does not automatically start when starting VBoxHeadlessThe VBox 'Main' server does not automatically start when starting VBoxHeadless

comment:2 Changed 9 years ago by Valery V. Sedletski

The same problem like in ticket #13 with VBoxXPCOMIPCD.exe -- it fails to daemonize when trying to open "/dev/null": src\VBox\Main\src-server\xpcom\server_module.cpp:

#ifndef RT_OS_OS2
    devNull = PR_Open("/dev/null", PR_RDWR, 0);
#else
    devNull = PR_Open("/dev/nul", PR_RDWR, 0);
#endif
    if (!devNull)
        goto end;

Fixed.

Last edited 9 years ago by Valery V. Sedletski (previous) (diff)

comment:3 Changed 8 years ago by Valery V. Sedletski

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.