Installing
-
2. Setting Up Wine Repo
How to Add Wine Kali Repository
-
3. Installing Dependencies
Now to Install Requirements for Kali
First, install the Aptitude Package Manager with:sudo apt install aptitude
Aptitude is a more advanced Tool to Manage the Software Dependencies.
-
3. Installing Latest Wine
Finally, to Install the Wine on
First, to Search for the available Releases:sudo apt search wine
And in the output you can see also all the available Wine Versions:
Possibly first Remove the Wine on System with:
sudo apt remove wine*
So, then for the current Wine Stable run:
sudo aptitude install wine-stable wine-stable-i386 wine-stable-amd64
When for the Release that includes the latest Patches:
sudo aptitude install wine-staging wine-staging-i386 wine-staging-amd64
This Setup includes the usually needed Wine 32-bit.
Simply Confirm the proposed Solution: -
4. Amending User’s Path
Again Append Wine into the Path
So for wine-stable play:echo "export PATH=$PATH:/opt/wine-stable/bin" >> ~/.bashrc
When in case of wine-staging:
echo "export PATH=$PATH:/opt/wine-staging/bin" >> ~/.bashrc
Finally, Reload the Bash Path simply with:
bash
Contents