Tuesday 31 May 2016

How to install Wine on Kali Linux and Debian 64 bit

To install wine. We'll first enable maltiarch, then update the system and finally install wine. The commands to accomplish that are as shown below.

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine:i386
sudo apt-get install wine-bin:i386
It will download the packages and install them. After finishing the installation, check again to confirm that the wine have been installed successfully.Type
wine --version 
If you want an all in one command, here it is.
 sudo dpkg --add-architecture i386 && apt-get update && apt-get install wine-bin:i386

No comments:

Post a Comment