Script won't execute
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I'm having this issue on Bash for Windows, but so far as I know it works by essentially making a Ubuntu VM.
I have a program which I'm trying to run, as one does with programs. It's called minion. However, I get the following when I try to run it:
user@my_pc:~/savilerow-1.6.4-linux/bin$ ./minion
bash: ./minion: cannot execute binary file: Exec format error
What the heck is going on? Below is the information that seemed relevant about the file. Let me know if you need more information than I gave. Yes, I'm running this on a 64 bit machine. Unless the Linux subsystem for Windows somehow simulates ARM?
user@my_pc:~/savilerow-1.6.4-linux/bin$ file minion
minion: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, stripped
user@my_pc:~/savilerow-1.6.4-linux/bin$ ls -l
total 7296
-rwxrwxr-x 1 user user 7470932 Feb 2 2016 minion
user@my_pc:~$ uname -a
Linux my_pc 3.4.0+ #1 PREEMPT Thu Aug 1 17:06:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux
executable windows-subsystem-for-linux
add a comment |Â
up vote
2
down vote
favorite
I'm having this issue on Bash for Windows, but so far as I know it works by essentially making a Ubuntu VM.
I have a program which I'm trying to run, as one does with programs. It's called minion. However, I get the following when I try to run it:
user@my_pc:~/savilerow-1.6.4-linux/bin$ ./minion
bash: ./minion: cannot execute binary file: Exec format error
What the heck is going on? Below is the information that seemed relevant about the file. Let me know if you need more information than I gave. Yes, I'm running this on a 64 bit machine. Unless the Linux subsystem for Windows somehow simulates ARM?
user@my_pc:~/savilerow-1.6.4-linux/bin$ file minion
minion: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, stripped
user@my_pc:~/savilerow-1.6.4-linux/bin$ ls -l
total 7296
-rwxrwxr-x 1 user user 7470932 Feb 2 2016 minion
user@my_pc:~$ uname -a
Linux my_pc 3.4.0+ #1 PREEMPT Thu Aug 1 17:06:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux
executable windows-subsystem-for-linux
Usually that means that the binary you're trying to execute is compiled for an architecture different from the one you're running on. Add the output ofuname -a
to your question; that might be helpful. Where didminion
come from?
â DopeGhoti
Feb 2 '17 at 2:03
minion was provided by my professor - it's packaged as part of the Savile Row constraint solver, but when I download it independently it still doesn't work. savilerow.cs.st-andrews.ac.uk/releases.html
â Conor
Feb 2 '17 at 14:05
There have been bugs in WSL's ELF parsing. It's possible you're hitting one of those, or a new one. If it happens on the newest fast-ring release I suggest filing a bug.
â Michael Homer
Feb 3 '17 at 5:42
The newest Windows release didn't change anything in the outputs.
â Conor
Feb 4 '17 at 13:41
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I'm having this issue on Bash for Windows, but so far as I know it works by essentially making a Ubuntu VM.
I have a program which I'm trying to run, as one does with programs. It's called minion. However, I get the following when I try to run it:
user@my_pc:~/savilerow-1.6.4-linux/bin$ ./minion
bash: ./minion: cannot execute binary file: Exec format error
What the heck is going on? Below is the information that seemed relevant about the file. Let me know if you need more information than I gave. Yes, I'm running this on a 64 bit machine. Unless the Linux subsystem for Windows somehow simulates ARM?
user@my_pc:~/savilerow-1.6.4-linux/bin$ file minion
minion: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, stripped
user@my_pc:~/savilerow-1.6.4-linux/bin$ ls -l
total 7296
-rwxrwxr-x 1 user user 7470932 Feb 2 2016 minion
user@my_pc:~$ uname -a
Linux my_pc 3.4.0+ #1 PREEMPT Thu Aug 1 17:06:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux
executable windows-subsystem-for-linux
I'm having this issue on Bash for Windows, but so far as I know it works by essentially making a Ubuntu VM.
I have a program which I'm trying to run, as one does with programs. It's called minion. However, I get the following when I try to run it:
user@my_pc:~/savilerow-1.6.4-linux/bin$ ./minion
bash: ./minion: cannot execute binary file: Exec format error
What the heck is going on? Below is the information that seemed relevant about the file. Let me know if you need more information than I gave. Yes, I'm running this on a 64 bit machine. Unless the Linux subsystem for Windows somehow simulates ARM?
user@my_pc:~/savilerow-1.6.4-linux/bin$ file minion
minion: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, stripped
user@my_pc:~/savilerow-1.6.4-linux/bin$ ls -l
total 7296
-rwxrwxr-x 1 user user 7470932 Feb 2 2016 minion
user@my_pc:~$ uname -a
Linux my_pc 3.4.0+ #1 PREEMPT Thu Aug 1 17:06:05 CST 2013 x86_64 x86_64 x86_64 GNU/Linux
executable windows-subsystem-for-linux
executable windows-subsystem-for-linux
edited 42 mins ago
Rui F Ribeiro
37.3k1374118
37.3k1374118
asked Feb 2 '17 at 1:57
Conor
112
112
Usually that means that the binary you're trying to execute is compiled for an architecture different from the one you're running on. Add the output ofuname -a
to your question; that might be helpful. Where didminion
come from?
â DopeGhoti
Feb 2 '17 at 2:03
minion was provided by my professor - it's packaged as part of the Savile Row constraint solver, but when I download it independently it still doesn't work. savilerow.cs.st-andrews.ac.uk/releases.html
â Conor
Feb 2 '17 at 14:05
There have been bugs in WSL's ELF parsing. It's possible you're hitting one of those, or a new one. If it happens on the newest fast-ring release I suggest filing a bug.
â Michael Homer
Feb 3 '17 at 5:42
The newest Windows release didn't change anything in the outputs.
â Conor
Feb 4 '17 at 13:41
add a comment |Â
Usually that means that the binary you're trying to execute is compiled for an architecture different from the one you're running on. Add the output ofuname -a
to your question; that might be helpful. Where didminion
come from?
â DopeGhoti
Feb 2 '17 at 2:03
minion was provided by my professor - it's packaged as part of the Savile Row constraint solver, but when I download it independently it still doesn't work. savilerow.cs.st-andrews.ac.uk/releases.html
â Conor
Feb 2 '17 at 14:05
There have been bugs in WSL's ELF parsing. It's possible you're hitting one of those, or a new one. If it happens on the newest fast-ring release I suggest filing a bug.
â Michael Homer
Feb 3 '17 at 5:42
The newest Windows release didn't change anything in the outputs.
â Conor
Feb 4 '17 at 13:41
Usually that means that the binary you're trying to execute is compiled for an architecture different from the one you're running on. Add the output of
uname -a
to your question; that might be helpful. Where did minion
come from?â DopeGhoti
Feb 2 '17 at 2:03
Usually that means that the binary you're trying to execute is compiled for an architecture different from the one you're running on. Add the output of
uname -a
to your question; that might be helpful. Where did minion
come from?â DopeGhoti
Feb 2 '17 at 2:03
minion was provided by my professor - it's packaged as part of the Savile Row constraint solver, but when I download it independently it still doesn't work. savilerow.cs.st-andrews.ac.uk/releases.html
â Conor
Feb 2 '17 at 14:05
minion was provided by my professor - it's packaged as part of the Savile Row constraint solver, but when I download it independently it still doesn't work. savilerow.cs.st-andrews.ac.uk/releases.html
â Conor
Feb 2 '17 at 14:05
There have been bugs in WSL's ELF parsing. It's possible you're hitting one of those, or a new one. If it happens on the newest fast-ring release I suggest filing a bug.
â Michael Homer
Feb 3 '17 at 5:42
There have been bugs in WSL's ELF parsing. It's possible you're hitting one of those, or a new one. If it happens on the newest fast-ring release I suggest filing a bug.
â Michael Homer
Feb 3 '17 at 5:42
The newest Windows release didn't change anything in the outputs.
â Conor
Feb 4 '17 at 13:41
The newest Windows release didn't change anything in the outputs.
â Conor
Feb 4 '17 at 13:41
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f341890%2fscript-wont-execute%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Usually that means that the binary you're trying to execute is compiled for an architecture different from the one you're running on. Add the output of
uname -a
to your question; that might be helpful. Where didminion
come from?â DopeGhoti
Feb 2 '17 at 2:03
minion was provided by my professor - it's packaged as part of the Savile Row constraint solver, but when I download it independently it still doesn't work. savilerow.cs.st-andrews.ac.uk/releases.html
â Conor
Feb 2 '17 at 14:05
There have been bugs in WSL's ELF parsing. It's possible you're hitting one of those, or a new one. If it happens on the newest fast-ring release I suggest filing a bug.
â Michael Homer
Feb 3 '17 at 5:42
The newest Windows release didn't change anything in the outputs.
â Conor
Feb 4 '17 at 13:41