I just installed Ubuntu 16.04 just to get familiar with the environment but I can't install the softwares I use on windows. I need all the help I can get right now .
Asked
Active
Viewed 691 times
1 Answers
0
If you really need to use a windows program (a .exe file) you can use Wine. follow these:
- Go to Ubuntu Software Center, search for
wine
and install it. - Afterward by pressing CtrlAltt open the terminal.
- Change direction with the command
cd Desktop
- Finally, run your program with this commad:
wine YourProgram.exe
It will run your program. (I assumed that your exe file is on your Desktop, change the direction considering your exe file's real path.)
here you can find helpful things about Wine: help.ubuntu.com/community/wine
but you will learn to find alternative programs for ubuntu very soon.
-
1Please expand on your answer. Rather than just posting a link, explaining how to use wine would be much better. A quick Step by Step would be ideal. – AnotherKiwiGuy Nov 27 '16 at 07:56