Difference between revisions of "Wine"
From Linuxintro
imported>ThorstenStaerk m (Reverted edits by ThorstenStaerk (talk) to last revision by 58.137.145.247) |
imported>ThorstenStaerk |
||
Line 1: | Line 1: | ||
− | + | [[wine]], the Windows Emulator, is a [[command]] to execute Windows files under Linux. | |
+ | |||
+ | = Getting it = | ||
+ | To download, compile and install it, [[find out your distribution]] and proceed accordingly. | ||
+ | |||
+ | == SUSE Linux Enterprise Server 11 SP1 x86_64 == | ||
+ | * Download it from http://www.winehq.com | ||
+ | * [[open a console]] and [[unpack]] it like this: | ||
+ | cd | ||
+ | bunzip2 Downloads/wine* | ||
+ | tar xvf Downloads/wine* | ||
+ | * [[install]] some dependencies | ||
+ | yast -i gcc-32bit | ||
+ | yast -i flex | ||
+ | yast -i bison | ||
+ | * [[compile]] it | ||
+ | cd | ||
+ | cd wine* | ||
+ | ./[[configure]] && [[make]] -j8 && make install | ||
+ | |||
+ | = Installing MSI files = | ||
+ | wine msiexec /a ''file''.msi |
Revision as of 09:04, 7 January 2012
wine, the Windows Emulator, is a command to execute Windows files under Linux.
Getting it
To download, compile and install it, find out your distribution and proceed accordingly.
SUSE Linux Enterprise Server 11 SP1 x86_64
- Download it from http://www.winehq.com
- open a console and unpack it like this:
cd bunzip2 Downloads/wine* tar xvf Downloads/wine*
- install some dependencies
yast -i gcc-32bit yast -i flex yast -i bison
- compile it
cd cd wine* ./configure && make -j8 && make install
Installing MSI files
wine msiexec /a file.msi