wine.rst
changeset 1698 b103b90e8b51
child 1750 91e1740580b5
equal deleted inserted replaced
1690:6347c3d54167 1698:b103b90e8b51
       
     1 .. -*- coding: utf-8; -*-
       
     2 .. include:: HEADER.rst
       
     3 
       
     4 =======
       
     5  Wine.
       
     6 =======
       
     7 .. contents::
       
     8 
       
     9 Installing into separate workspace.
       
    10 ===================================
       
    11 ::
       
    12 
       
    13   $ PROFILE=my-program
       
    14   $ export WINEPREFIX=~/.wine-$PROFILE
       
    15   $ winetricks dotnet20 dotnet40
       
    16   $ wine /path/to/installer.exe
       
    17   $ wine $WINEPREFIX/Program\ Files/Program/start.exe
       
    18 
       
    19 Write simple script to run program in your environment::
       
    20 
       
    21   #!/bin/sh
       
    22   env WINEPREFIX=~/.wine-my ~/.wine-my/
       
    23 
       
    24 winetricks.
       
    25 ===========
       
    26 
       
    27 List of available packages::
       
    28 
       
    29   $ winetricks apps list
       
    30 
       
    31 Instal .Net 2.0/4.0::
       
    32 
       
    33   $ winetricks dotnet20 dotnet40
       
    34 
       
    35 Wine utils.
       
    36 ===========
       
    37 ::
       
    38 
       
    39   $ winecfg
       
    40 
       
    41   $ wine notepad
       
    42   $ wine regedit
       
    43   $ wine uninstaller
       
    44 
       
    45 Installing fresh copy under Debian.
       
    46 ===================================
       
    47 
       
    48 https://www.winehq.org/download/debian
       
    49