How to configure wine

  
under centos

Background Sometimes you need to use wine to run some programs designed for windows. The command line program runs under the wine and there is usually no problem. Wine is generally installed in /usr/local/wine-1.3.13/, the executable program is /usr/local/wine-1.3.13/bin/wine

If not, the installation process is as follows:
$ sudo mkdir /usr/local/wine-1.3.13/$ wget http://l5.yunpan.cn/lk/Q6vUV4fGyLSU7$ sudo tar -C /usr/local/wine-1.3.13 -jxvf wine-1.3. 13-i386.tar.bz2

This is where the wine program is located. When you run wine, the .wine directory will be created in the home directory by default, which will cause the ROOT partition to be occupied too much. Be sure to specify the WINEPREFIX environment variable when calling.

Some programs need to use their own DLL to operate, you need to set the environment variable WINEDLLOVERRIDES, see the wine documentation.

Copyright © Windows knowledge All Rights Reserved