| | 66 | == Install instructions == |
| | 67 | This instructions are a rough how to. It might be they are not complete. (If you find something not right or not complete, please report it) |
| | 68 | |
| | 69 | * Create a directory like: VboXOs2 |
| | 70 | * Copy all files to that directory |
| | 71 | * Copy vboxdrv.sys to X:\os2\boot\vboxdrv.sys (Where X is you're driveletter) |
| | 72 | * Add DEVICE=X:\OS2\BOOT\vboxdrv.sys to you're config.sys |
| | 73 | * Check if you have all dependencies with: |
| | 74 | * yum install libc |
| | 75 | * yum install libgcc1 |
| | 76 | * yum install libstdc++6 libstdc++ |
| | 77 | * yum install libsupc++6 libsupc++ |
| | 78 | * yum install libgcc-fwd |
| | 79 | * yum install libqt4 |
| | 80 | * yum install zlib |
| | 81 | * yum install pthread |
| | 82 | * Check with pmdll virtualbox.exe if all dll are loadable (pmdll is found on hobbes) |
| | 83 | * Start Virtualbox.exe and you see the Qt Gui (note: not all features work so far, like the mouse integration) |
| | 84 | * If you want the mouse integration you better use the SDL interface |
| | 85 | |
| | 86 | For the SDL interface you need to create a image and the start it: |
| | 87 | * VBoxManage.exe createvm --name Example --register |
| | 88 | * VBoxManage.exe storagectl Example --name IDE --add ide --controller PIIX3 --portcount 2 |
| | 89 | * VBoxManage.exe storageattach Example --storagectl IDE --port 0 --device 1 --type dvddrive --medium Example.iso |
| | 90 | * VBoxSDL.exe -s Example |
| | 91 | |
| | 92 | Please replace Example by you're needs. But be aware that the name is case sensitive. So example is not like Example and will give you an error. |
| | 93 | |