Opened 12 years ago
Closed 8 years ago
#11656 closed defect (obsolete)
Multiple installation problems with Oracle Solaris 10u11 and VB 4.2.10
Reported by: | Mounty1 | Owned by: | |
---|---|---|---|
Component: | installer | Version: | VirtualBox 4.2.10 |
Keywords: | installation dependency | Cc: | |
Guest type: | all | Host type: | Solaris |
Description
- The Solaris packages SUNWdtrp and SUNWmdu (!) are dependencies because the postinstall script refers to drivers that they include; but the two packages are not specified as dependencies in the VB package.
- SUNWgccruntime is also an unspecified dependency because the zoneaccess service requires libgcc_s.so.1 but in this case it's still wrong because /opt/VirtualBox/VBoxZoneAccess can't find the library so it is necessary to modify the start method (as is done in OmniOS for example) thus:
<exec_method type='method' name='start' exec='/opt/VirtualBox/VBoxZoneAccess' timeout_seconds='10' > <method_context> <method_credential user='root' group='root' /> <method_environment> <!-- Gross hack, to pick up the right library --> <envvar name='LD_LIBRARY_PATH' value='/usr/sfw/lib/amd64' /> </method_environment> </method_context> </exec_method>
so that the start command is:
# LD_LIBRARY_PATH=/usr/sfw/lib/amd64 /opt/VirtualBox/VBoxZoneAccess
Change History (4)
comment:1 by , 12 years ago
comment:3 by , 12 years ago
https://forums.oracle.com/forums/thread.jspa?threadID=2020573 has the solution in this case.
This is a 3 1/2 year old bug with a simple solution.
comment:4 by , 8 years ago
Resolution: | → obsolete |
---|---|
Status: | new → closed |
Please reopen if still relevant with a recent VirtualBox release.
Note:
See TracTickets
for help on using tickets.
So VB reports that a needed shared object is missing, even though it is present.