Install Wine 1.7.9 on CentOS/RHEL
Wine is an open source and free application for Linux that empowers clients to run any windows built application in light of Unix/Linux like working framework. Windows has an extensive rundown of delightful applications for clients which is not accessible for Linux clients. As we realize that Linux does not bolster windows executable so WineHQ is an answer for run windows applications and Linux frameworks.
Wine benefits
To wrap things up, Wine can give advantages over Windows at this moment:
Step 1: Installing Prerequisite
Wine obliged numerous improvement bundles, So we have to introduce obliged bundles for Wine utilizing yum bundle administrator utilizing after charges.
# yum groupinstall 'Development Tools' # yum install libX11-devel freetype-devel zlib-devel libxcb-devel
Step 2: Download Wine
Download the source document utilizing wget charge as an ordinary User. Follow below command to download wine:
# wget http://mirrors.ibiblio.org/wine/source/1.7/wine-1.7.9.tar.bz2
Step 3: Extracting Wine
Once the file is downloaded use the below commands to extract it.
# bunzip2 wine-1.7.9.tar.bz2 # tar -xvf wine-1.7.9.tar
Step 4: Installing Wine
Configure wine beverage making use of one of next order depending on your whole body architectural mastery.
On 32-Bit Systems # cd wine-1.7.9 # ./configure On 64-Bit Systems # cd wine-1.7.9 # ./configure --enable-win64
# make # make install
Step 5: Check Wine Version
Use following command to check version of wine.
On 32-Bit Systems # wine --version On 64-Bit Systems # wine64 –version
Step 5: Use of Wine
To utilize wine we have to login on GUI desktop. After that Download a windows executable (.exe) record like PuTTY on your framework and open it with Wine as underneath screenshot or utilization taking after order.
On 32-Bit Systems # wine putty.exe On 64-Bit Systems # wine64 putty.exe