Changes between Version 31 and Version 32 of Solaris build instructions
- Timestamp:
- Aug 9, 2010 12:56:20 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Solaris build instructions
v31 v32 86 86 You can run !VirtualBox directly from the build target directory (`out/solaris.x86/release/bin/`). But first of all, you must install the !VirtualBox kernel module. There is a script {{{src/VBox/HostDrivers/Support/solaris/mod.sh}}} which does this for you. It requires you to either install sudo or run it as root. 87 87 88 {{{ 89 cd out/solaris.amd64/release/bin 90 }}} 91 92 For the other drivers you will need to copy the driver file and .conf file if any into the appropriate locations. Current drivers include vboxflt (bridged networking, host-only networking), vboxnet (host-only networking), vboxusbmon, vboxusb (USB drivers). 93 {{{ 94 /platform/i86pc/kernel/drv/ (32-bit drivers and .conf files) 95 /platform/i86pc/kernel/drv/amd64 (64-bit drivers) 96 }}} 97 98 And then run as root/sudo: 99 {{{ 100 vboxconfig.sh --setupdrivers 101 }}} 102 88 103 Finally, you can start one of the frontends, e.g. 89 104 {{{ 90 cd out/solaris.x86/release/bin 91 LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH" ./VirtualBox 105 ./VirtualBox 92 106 }}} 93 Note that the {{{LD_LIBRARY_PATH=".:$LD_LIBRARY_PATH"}}} is required because we have to find our {{{.so}}} files and the output directory is not in the system's library path.