I've downloaded a game (Shank) but the bin file doesn't run. The error that is shown when I try to launch the executable is:
bash: ./shank-linux-120720110-1-bin: No such file or directory
|
I've downloaded a game (Shank) but the bin file doesn't run. The error that is shown when I try to launch the executable is:
|
|||||||||||||
|
|
By installing the deb for 32 bit I realized I was missing some libraries (in addition to ia32-libs and libc6). I first solved this problem by giving this command:
sudo apt-get install -f |
|||
|
|
|
You're probably trying to run a 32-bit binary on a 64-bit system that doesn't have 32-bit support installed. There are three cases where you can get the message “No such file or directory”:
The error message in this last case is admittedly confusing. What it's telling you is that a key component of the runtime environment necessary to run the program is missing. Unfortunately, the channel through which the error is reported only has room for the error code and not for this extra information that it's really the runtime environment that's to blame. If you want the technical version of this explanation, read Getting “Not found” message when running a 32-bit binary on a 64-bit system. The In Ubuntu up to 11.04, to run a 32-bit binary on a 64-bit installation, you need to install the Since 11.10 (oneiric) introduced multiarch support, you can still install |
|||||||||||
|