Commit 168485b75bfa0bd543412039c37967de93cf06b1
1 parent
5cd4393b
wine help
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@61 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
32 additions
and
4 deletions
qemu-doc.texi
| ... | ... | @@ -102,11 +102,39 @@ unset LD_LIBRARY_PATH |
| 102 | 102 | Then you can launch the precompiled @file{ls} x86 executable: |
| 103 | 103 | |
| 104 | 104 | @example |
| 105 | -qemu /usr/local/qemu-i386/bin/ls | |
| 105 | +qemu /usr/local/qemu-i386/bin/ls-i386 | |
| 106 | +@end example | |
| 107 | +You can look at @file{/usr/local/qemu-i386/bin/qemu-conf.sh} so that | |
| 108 | +QEMU is automatically launched by the Linux kernel when you try to | |
| 109 | +launch x86 executables. It requires the @code{binfmt_misc} module in the | |
| 110 | +Linux kernel. | |
| 111 | + | |
| 112 | +@end itemize | |
| 113 | + | |
| 114 | +@section Wine launch (Currently only tested when emulating x86 on x86) | |
| 115 | + | |
| 116 | +@itemize | |
| 117 | + | |
| 118 | +@item Ensure that you have a working QEMU with the x86 glibc | |
| 119 | +distribution (see previous section). In order to verify it, you must be | |
| 120 | +able to do: | |
| 121 | + | |
| 122 | +@example | |
| 123 | +qemu /usr/local/qemu-i386/bin/ls-i386 | |
| 124 | +@end example | |
| 125 | + | |
| 126 | +@item Download the binary x86 wine install | |
| 127 | +(@file{qemu-i386-wine.tar.gz} on the QEMU web page). | |
| 128 | + | |
| 129 | +@item Configure wine on your account. Look at the provided script | |
| 130 | +@file{/usr/local/qemu-i386/bin/wine-conf.sh}. Your previous | |
| 131 | +@code{$@{HOME@}/.wine} directory is saved to @code{$@{HOME@}/.wine.org}. | |
| 132 | + | |
| 133 | +@item Then you can try the example @file{putty.exe}: | |
| 134 | + | |
| 135 | +@example | |
| 136 | +qemu /usr/local/qemu-i386/wine/bin/wine /usr/local/qemu-i386/wine/c/Program\ Files/putty.exe | |
| 106 | 137 | @end example |
| 107 | -You can look at @file{/usr/local/qemu-i386/bin/qemu-conf.sh} so that QEMU is automatically | |
| 108 | -launched by the Linux kernel when you try to launch x86 executables. It | |
| 109 | -requires the @code{binfmt_misc} module in the Linux kernel. | |
| 110 | 138 | |
| 111 | 139 | @end itemize |
| 112 | 140 | ... | ... |