How to Run Windows Software on Linux
Open your Linux terminal and type these commands one-by-one
Start by updating the Linux kernel repositories.
type
sudo apt updateand press ↵ Enter. When prompted, enter your password and press ↵ Enter. Then, when prompted, type
clearand press ↵ Enter. Now you’re ready to enter the commands to download Wine
Download Wine
sudo apt-get install wineand press ↵ Enter
sudo apt-get install wine32and press ↵ Enter
sudo apt-get install libwineand press ↵ Enter
Even though the terminal might look intimidating, don’t worry! You’re unlikely to mess anything up, and all you have to do is copy these commands.
Navigate to the directory with the file, then open the file with Wine
In the terminal, navigate to the directory containing the file with the command
cd <directory name>Then, run the file with the command
wine <filename>.exeFor instance, if the file example.exe were stored on your desktop, you’d follow this procedure:
cd Desktop/and press ↵ Enter
wine example.exeand press ↵ Enter