Difference between revisions of "Wine"

From Linuxintro
imported>ThorstenStaerk
Line 19: Line 19:
 
  ./[[configure]] && [[make]] -j8 && make install
 
  ./[[configure]] && [[make]] -j8 && make install
  
= Installing MSI files =
+
What a joy to find someone else who tihkns this way.
wine msiexec /a ''file''.msi
 

Revision as of 16:42, 22 May 2011

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

cd
bunzip2 Downloads/wine*
tar xvf Downloads/wine*
yast -i gcc-32bit
yast -i flex
yast -i bison
cd
cd wine*
./configure && make -j8 && make install

What a joy to find someone else who tihkns this way.