Please follow the steps here to Install WINE, so that we can run any .exe file in Ubuntu OS
step1 : Check if you have an Ubuntu 32-bit or 64-bit system
lscpu
step2 :for 64 bit ubuntu/Installing Wine from a Standard Ubuntu Repository (recommended)
sudo apt install wine64
[OR]
for 32 bit ubuntu
sudo apt install wine32
step 3 :
wine --version //To verify the version of Wine through the following command:
step 4 : TO Install Wine from the WineHQ Repository
To add i386 architecture before installing a 64-bit version of Wine
sudo dpkg --add-architecture i386
step 5 : Add the relevant repository from the WineHQ,ie.,to add the WineHQ signing key:
wget -qO- https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
step 6 : Add the relevant repository from the WineHQ:
sudo apt-add-repository 'deb http://dl.winehq.org/wine-builds/ubuntu/ artful main'
step 7:Here you have two options about which release of Wine you want to install;
the stable version or the development versions.
WineHQ Stable:
sudo apt-get install --install-recommends winehq-stable
WineHQ Development:
sudo apt-get install --install-recommends winehq-devel
step 8:In order to verify installation and checking which version is installed on your system,
run the following command:
wine --version
No comments:
Post a Comment