Quantcast
Channel: LinuxG.net
Viewing all articles
Browse latest Browse all 2249

How To Install Wine 1.7.12 On Fedora 20, Fedora 19, CentOS 6 And RHEL 6

$
0
0

Hello Linux Geeksters. Wine 1.7.12 has been recently released, coming with support for the Microsoft Windows Media Player interfaces, better support for the Task Scheduler, fixes for the C++ runtime, enhanced support for the Windows 8 API and over 80 bug-fixes. For more information, see the official changelog.

how to install Wine 1.7.12 on Fedora 20, Fedora 19, CentOS 6 and RHEL 6.

In this article I will show you how to install Wine 1.7.12 on Fedora 20, Fedora 19, CentOS 6 and RHEL 6.

There is no Wine repository available for the Fedora and CentOS/RHEL so we have to download the tar archive and install it by hand. Follow the instructions for your system’s architecture, in order to get a successful installation.

How to install Wine 1.7.12 on 32 bit Fedora, CentOS and RHEL systems:

Install the dependencies first:

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

Download Wine 1.7.12:

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

Extract the archive and cd into it:

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

Install Wine 1.7.12:

$ ./tools/wineinstall

How to install Wine 1.7.12 on 64 bit Fedora, CentOS and RHEL systems:

Install the dependencies first:

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

Download Wine 1.7.12:

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

Extract the archive and cd into it:

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

Install Wine 1.7.12:

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

Share and Enjoy

TwitterFacebookGoogle PlusEmailRSS

Viewing all articles
Browse latest Browse all 2249

Trending Articles