Opened 10 years ago
Closed 10 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 by , 10 years ago
| Summary: | VBoxSVC does not automatically start when starting VBoxHeadless → The VBox 'Main' server does not automatically start when starting VBoxHeadless |
|---|
comment:3 by , 10 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

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.