Difference between revisions of "Wine"

From Linuxintro
imported>ThorstenStaerk
(adding comments)
imported>ThorstenStaerk
Line 21: Line 21:
 
= Installing MSI files =
 
= Installing MSI files =
 
  wine msiexec /a ''file''.msi
 
  wine msiexec /a ''file''.msi
 +
 +
= RS232 serial port =
 +
RS232 serial port is com1 under Windows and /dev/ttyUSB0 under SUSE Linux 12.1. As long as you use a [[USB to serial adapter]]. Then do a
 +
cd
 +
cd .wine
 +
cd dosdevices
 +
ln -s /dev/ttyUSB0 com1
 +
 +
and you can use your USB to serial adapter under wine.
  
 
= See also =
 
= See also =

Revision as of 07:19, 26 June 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

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

Installing MSI files

wine msiexec /a file.msi

RS232 serial port

RS232 serial port is com1 under Windows and /dev/ttyUSB0 under SUSE Linux 12.1. As long as you use a USB to serial adapter. Then do a

cd
cd .wine
cd dosdevices
ln -s /dev/ttyUSB0 com1

and you can use your USB to serial adapter under wine.

See also

Comments

<comments />

ThorstenStaerk said ...

Hey, please don't forget to add your comments... much appreciated!

--ThorstenStaerk 20:38, 14 January 2012 (CET)