command line to install wine on kali 2020 dist
sudo dpkg --add-architecture i386 && apt-get update && apt-get install wine-bin:i386
Here is what the above code is Doing:
1. sudo dpkg –add-architecture i386
This command adds the i386 architecture to your system.
2. apt-get update
This command updates the list of available packages and their versions, but it does not install or upgrade any packages.
3. apt-get install wine-bin:i386
This command installs the wine-bin:i386 package.