how to install wine 1.7.27 on the most popular linux systems


Hello friends  As you may know, Wine (originally an acronym for "Wine Is Not an Emulator) is a software for running Windows applications on Linux machines.
is a compatibility layer capable of running Windows applications on Linux, Mac OSX and BSD.
Instead of simulating internal Windows logic like a virtual machine or emulator, Wine translates Windows API calls into POSIX calls on-the-fly, eliminating the performance and memory penalties of other methods and allowing you to cleanly integrate Windows applications into your desktop.

Open Source 
Wine will always be free software. Approximately half of Wine source code is written by volunteers, with the remaining effort sponsored by commercial interests, especially CodeWeavers, which sells a supported version of Wine.
how to install wine 1.7.27 on the most popular linux systems

What's new in this release
  • Some more work on Direct2D support.
  • Various improvements to RichEdit interfaces.
  • Initial support for ICMP version 6.
  • Various bug fixes.
The latest version available is wine 1.7.27 and this is what we will learn how to install it now
how to install Wine 1.7.27 on Fedora ,Deepin, OpenSUSE, ubuntu , Linux Mint , Elementary OS and  CentOS

install Wine 1.7.27 on 32 bit Fedora and CentOS  

$ sudo yum -y groupinstall 'Development Tools'
$ sudo yum -y install libX11-devel freetype-devel

$ wget -c http://citylan.dl.sourceforge.net/project/wine/Source/wine-1.7.27.tar.bz2

$ tar -xvf wine-1.7.27.tar.bz2
$ cd wine-1.7.27/

$ ./tools/wineinstall

install Wine 1.7.27 on 64 bit Fedora and CentOS

$ sudo yum groupinstall 'Development Tools'
$ sudo yum install libX11-devel freetype-devel

$ wget -c http://citylan.dl.sourceforge.net/project/wine/Source/wine-1.7.27.tar.bz2

$ tar -xvf wine-1.7.27.tar.bz2
$ cd wine-1.7.27/

$ ./configure --enable-win64
$ make
$ sudo make install

 install Wine 1.7.27 on OpenSUSE 13.1

$ sudo zypper ar -f http://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_13.1/ wine
$ sudo zypper refresh
$ sudo zypper install wine1.7 winetricks

 install Wine 1.7.27 on OpenSUSE 12.3

$ sudo zypper ar -f http://download.opensuse.org/repositories/Emulators:/Wine/openSUSE_12.3/ wine
$ sudo zypper refresh
$ sudo zypper install wine1.7 winetricks


 install Wine 1.7.27 on Ubuntu 14.10 , Ubuntu 14.04 and Linux Mint 17 
$ sudo add-apt-repository ppa:ubuntu-wine/ppa
$ sudo apt-get update
$ sudo apt-get install wine1.7 winetricks