TranslateProject/sources/tech/20141022 Wine 1.7.29 (Development Version) Released – Install in RedHat and Debian Based Systems.md
DoubleC 29cca26d13 SPccman translating
申领文章
2014-10-24 22:11:58 +08:00

4.8 KiB
Raw Blame History

SPccman translating Wine 1.7.29 (Development Version) Released Install in RedHat and Debian Based Systems

Wine, a most popular and powerful open source application for Linux, that used to run Windows based applications and games on Linux Platform without any trouble.

Install Wine (Development Version) in Linux

Install Wine (Development Version) in Linux

WineHQ team, recently announced a new development version of Wine 1.7.29. This new development build arrives with a number of new important features and 44 bug fixes.

Wine team, keep releasing their development builds almost on weekly basis and adding numerous new features and fixes. Each new version brings support for new applications and games, making Wine a most popular and must have tool for every user, who want to run Windows based software in a Linux platform.

According to the changelog, following key features are added in this release:

  • Added much improved shaping and BiDi mirroring in DirectWrite.
  • Few page fault handling problems have been udpated.
  • Included few more C runtime functions.
  • Various bug fixes.

For more in-depth details about this build can be found at the official changelog page.

This article guides you how to install most recent development version of Wine 1.7.29 on Red Hat and Debian based systems such as CentOS, Fedora, Ubuntu, Linux Mint and other supported distributions.

Installing Wine 1.7.29 Development Version in Linux

Unfortunately, there are no official Wine repository available for the Red Hat based systems and the only way to install Wine, is to compile it from source. To do this, you need to install some dependency packages such as gcc, flex, bison, libX11-devel freetype-devel and Development Tools, etc. These packages are must required to compile Wine from source. Lets install them using following YUM command.

On RedHat, Fedora and CentOS

# yum -y groupinstall 'Development Tools'
# yum -y install flex bison libX11-devel freetype-devel

Next, download the latest development version of Wine (i.e. 1.7.29) and extract the source tallball package using the following commands.

$ cd /tmp
$ wget http://citylan.dl.sourceforge.net/project/wine/Source/wine-1.7.29.tar.bz2
$ tar -xvf wine-1.7.29.tar.bz2 -C /tmp/

Now, its time to compile and build Wine installer using the following commands as normal user.

Note: The installation process might take up-to 15-20 minutes depending upon your internet and hardware speed, during installation it will ask you to enter root password.

On 32-Bit Systems

$ cd wine-1.7.29/
$ ./tools/wineinstall

On 64-Bit Systems

$ cd wine-1.7.29/
$ ./configure --enable-win64
$ make
# make install

On Ubuntu, Debian and Linux Mint

Under Ubuntu based systems, you can easily install the latest development build of Wine using the official PPA. Open a terminal and run the following commands with sudo privileges.

$ sudo add-apt-repository ppa:ubuntu-wine/ppa 
$ sudo apt-get update
$ sudo apt-get install wine 1.7 winetricks

Note: At the time of writing this article, available version was 1.7.26 and the new build not yet updated in official Wine Repository, but the above instructions will install 1.7.29 when they made available.

Once the installation completes successfully, you can install or run any windows based applications or games using wine as shown below.

$ wine notepad
$ wine notepad.exe 
$ wine c:\\windows\\notepad.exe

Note: Please remember, this is a development build and cannot be installed or used on production systems. It is advised to use this version only for testing purpose.

If youre looking for a most recent stable version of Wine, you can go through our following articles, that describes how to install most latest version on almost all Linux environments.


via: http://www.tecmint.com/install-wine-in-linux/

作者:Ravi Saive 译者:译者ID 校对:校对者ID

本文由 LCTT 原创翻译,Linux中国 荣誉推出