Cannot run .exe files











up vote
3
down vote

favorite
1












Normally my Linux OS allows me to create runnable executables (like a.out), but when I attempt to download an .exe from the Internet, it basically is permission restricted (neither user has execution (-x) rights). The problem is, when I change the file permissions with either chmod u+x or chmod 777, and I try to run the program, I always get this error message:



run detectors: unable to find an interpreter for ./[file_name].exe


where the [file_name] stands for the name of the file. Since my Linux experience and knowledge are very weak, and I did some research but haven't found anyone with this exact problem, any help would be highly appreciated!



PS. My OS is Ubuntu 16.04.3 LTS 32-bit










share|improve this question




















  • 1




    What does file [file_name].exe and ldd [file_name].exe tell you?
    – Doug O'Neal
    Dec 22 '17 at 14:59






  • 5




    It looks like you're trying to run Windows executables on Linux. This won't work.
    – dr01
    Dec 22 '17 at 15:02










  • As the answer said, you are trying to use a Windows executable in Linux. Won't work without WINE and maybe even not then. What program are you trying to run? There is probably a native Linux equivalent...
    – ivanivan
    Dec 22 '17 at 15:41















up vote
3
down vote

favorite
1












Normally my Linux OS allows me to create runnable executables (like a.out), but when I attempt to download an .exe from the Internet, it basically is permission restricted (neither user has execution (-x) rights). The problem is, when I change the file permissions with either chmod u+x or chmod 777, and I try to run the program, I always get this error message:



run detectors: unable to find an interpreter for ./[file_name].exe


where the [file_name] stands for the name of the file. Since my Linux experience and knowledge are very weak, and I did some research but haven't found anyone with this exact problem, any help would be highly appreciated!



PS. My OS is Ubuntu 16.04.3 LTS 32-bit










share|improve this question




















  • 1




    What does file [file_name].exe and ldd [file_name].exe tell you?
    – Doug O'Neal
    Dec 22 '17 at 14:59






  • 5




    It looks like you're trying to run Windows executables on Linux. This won't work.
    – dr01
    Dec 22 '17 at 15:02










  • As the answer said, you are trying to use a Windows executable in Linux. Won't work without WINE and maybe even not then. What program are you trying to run? There is probably a native Linux equivalent...
    – ivanivan
    Dec 22 '17 at 15:41













up vote
3
down vote

favorite
1









up vote
3
down vote

favorite
1






1





Normally my Linux OS allows me to create runnable executables (like a.out), but when I attempt to download an .exe from the Internet, it basically is permission restricted (neither user has execution (-x) rights). The problem is, when I change the file permissions with either chmod u+x or chmod 777, and I try to run the program, I always get this error message:



run detectors: unable to find an interpreter for ./[file_name].exe


where the [file_name] stands for the name of the file. Since my Linux experience and knowledge are very weak, and I did some research but haven't found anyone with this exact problem, any help would be highly appreciated!



PS. My OS is Ubuntu 16.04.3 LTS 32-bit










share|improve this question















Normally my Linux OS allows me to create runnable executables (like a.out), but when I attempt to download an .exe from the Internet, it basically is permission restricted (neither user has execution (-x) rights). The problem is, when I change the file permissions with either chmod u+x or chmod 777, and I try to run the program, I always get this error message:



run detectors: unable to find an interpreter for ./[file_name].exe


where the [file_name] stands for the name of the file. Since my Linux experience and knowledge are very weak, and I did some research but haven't found anyone with this exact problem, any help would be highly appreciated!



PS. My OS is Ubuntu 16.04.3 LTS 32-bit







linux windows executable






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 23 '17 at 18:01









Gilles

524k12610471577




524k12610471577










asked Dec 22 '17 at 14:56









BogdanP

1815




1815








  • 1




    What does file [file_name].exe and ldd [file_name].exe tell you?
    – Doug O'Neal
    Dec 22 '17 at 14:59






  • 5




    It looks like you're trying to run Windows executables on Linux. This won't work.
    – dr01
    Dec 22 '17 at 15:02










  • As the answer said, you are trying to use a Windows executable in Linux. Won't work without WINE and maybe even not then. What program are you trying to run? There is probably a native Linux equivalent...
    – ivanivan
    Dec 22 '17 at 15:41














  • 1




    What does file [file_name].exe and ldd [file_name].exe tell you?
    – Doug O'Neal
    Dec 22 '17 at 14:59






  • 5




    It looks like you're trying to run Windows executables on Linux. This won't work.
    – dr01
    Dec 22 '17 at 15:02










  • As the answer said, you are trying to use a Windows executable in Linux. Won't work without WINE and maybe even not then. What program are you trying to run? There is probably a native Linux equivalent...
    – ivanivan
    Dec 22 '17 at 15:41








1




1




What does file [file_name].exe and ldd [file_name].exe tell you?
– Doug O'Neal
Dec 22 '17 at 14:59




What does file [file_name].exe and ldd [file_name].exe tell you?
– Doug O'Neal
Dec 22 '17 at 14:59




5




5




It looks like you're trying to run Windows executables on Linux. This won't work.
– dr01
Dec 22 '17 at 15:02




It looks like you're trying to run Windows executables on Linux. This won't work.
– dr01
Dec 22 '17 at 15:02












As the answer said, you are trying to use a Windows executable in Linux. Won't work without WINE and maybe even not then. What program are you trying to run? There is probably a native Linux equivalent...
– ivanivan
Dec 22 '17 at 15:41




As the answer said, you are trying to use a Windows executable in Linux. Won't work without WINE and maybe even not then. What program are you trying to run? There is probably a native Linux equivalent...
– ivanivan
Dec 22 '17 at 15:41










1 Answer
1






active

oldest

votes

















up vote
8
down vote



accepted










This is totally normal. .exe files are Windows executables, and are not meant to be executed natively by any Linux system.



However, there's a program called Wine which allows you to run .exe files by translating Windows API calls to calls your Linux kernel can understand.



To run a .exe program you first need to install Wine.



To do so you can follow the Official Wine installation tutorial for Ubuntu, or this AskUbuntu post.



Then you need to open a terminal, go to the directory where you stored your .exe file and run wine your_file.exe.



Some programs don't work properly, others don't work at all. To check whether a program will run properly under Wine or if it requires some tweaks, take a look at your program entry in the AppDB.






share|improve this answer























  • Oh, this may really be the issue indeed... Gonna follow your instructions :)
    – BogdanP
    Dec 22 '17 at 15:19










  • It works perfectly for now, thank you very much!
    – BogdanP
    Dec 22 '17 at 15:54











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f412524%2fcannot-run-exe-files%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
8
down vote



accepted










This is totally normal. .exe files are Windows executables, and are not meant to be executed natively by any Linux system.



However, there's a program called Wine which allows you to run .exe files by translating Windows API calls to calls your Linux kernel can understand.



To run a .exe program you first need to install Wine.



To do so you can follow the Official Wine installation tutorial for Ubuntu, or this AskUbuntu post.



Then you need to open a terminal, go to the directory where you stored your .exe file and run wine your_file.exe.



Some programs don't work properly, others don't work at all. To check whether a program will run properly under Wine or if it requires some tweaks, take a look at your program entry in the AppDB.






share|improve this answer























  • Oh, this may really be the issue indeed... Gonna follow your instructions :)
    – BogdanP
    Dec 22 '17 at 15:19










  • It works perfectly for now, thank you very much!
    – BogdanP
    Dec 22 '17 at 15:54















up vote
8
down vote



accepted










This is totally normal. .exe files are Windows executables, and are not meant to be executed natively by any Linux system.



However, there's a program called Wine which allows you to run .exe files by translating Windows API calls to calls your Linux kernel can understand.



To run a .exe program you first need to install Wine.



To do so you can follow the Official Wine installation tutorial for Ubuntu, or this AskUbuntu post.



Then you need to open a terminal, go to the directory where you stored your .exe file and run wine your_file.exe.



Some programs don't work properly, others don't work at all. To check whether a program will run properly under Wine or if it requires some tweaks, take a look at your program entry in the AppDB.






share|improve this answer























  • Oh, this may really be the issue indeed... Gonna follow your instructions :)
    – BogdanP
    Dec 22 '17 at 15:19










  • It works perfectly for now, thank you very much!
    – BogdanP
    Dec 22 '17 at 15:54













up vote
8
down vote



accepted







up vote
8
down vote



accepted






This is totally normal. .exe files are Windows executables, and are not meant to be executed natively by any Linux system.



However, there's a program called Wine which allows you to run .exe files by translating Windows API calls to calls your Linux kernel can understand.



To run a .exe program you first need to install Wine.



To do so you can follow the Official Wine installation tutorial for Ubuntu, or this AskUbuntu post.



Then you need to open a terminal, go to the directory where you stored your .exe file and run wine your_file.exe.



Some programs don't work properly, others don't work at all. To check whether a program will run properly under Wine or if it requires some tweaks, take a look at your program entry in the AppDB.






share|improve this answer














This is totally normal. .exe files are Windows executables, and are not meant to be executed natively by any Linux system.



However, there's a program called Wine which allows you to run .exe files by translating Windows API calls to calls your Linux kernel can understand.



To run a .exe program you first need to install Wine.



To do so you can follow the Official Wine installation tutorial for Ubuntu, or this AskUbuntu post.



Then you need to open a terminal, go to the directory where you stored your .exe file and run wine your_file.exe.



Some programs don't work properly, others don't work at all. To check whether a program will run properly under Wine or if it requires some tweaks, take a look at your program entry in the AppDB.







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 22 '17 at 15:14









Stephen Kitt

160k24357432




160k24357432










answered Dec 22 '17 at 15:10









Thomas Gros

40618




40618












  • Oh, this may really be the issue indeed... Gonna follow your instructions :)
    – BogdanP
    Dec 22 '17 at 15:19










  • It works perfectly for now, thank you very much!
    – BogdanP
    Dec 22 '17 at 15:54


















  • Oh, this may really be the issue indeed... Gonna follow your instructions :)
    – BogdanP
    Dec 22 '17 at 15:19










  • It works perfectly for now, thank you very much!
    – BogdanP
    Dec 22 '17 at 15:54
















Oh, this may really be the issue indeed... Gonna follow your instructions :)
– BogdanP
Dec 22 '17 at 15:19




Oh, this may really be the issue indeed... Gonna follow your instructions :)
– BogdanP
Dec 22 '17 at 15:19












It works perfectly for now, thank you very much!
– BogdanP
Dec 22 '17 at 15:54




It works perfectly for now, thank you very much!
– BogdanP
Dec 22 '17 at 15:54


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f412524%2fcannot-run-exe-files%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Entries order in /etc/network/interfaces

新発田市

Grub takes very long (several minutes) to open Menu (in Multi-Boot-System)