Skip to content

Instantly share code, notes, and snippets.

@dapize
Created December 22, 2021 05:08
Show Gist options
  • Select an option

  • Save dapize/271a145446850588ecba09f144f7c023 to your computer and use it in GitHub Desktop.

Select an option

Save dapize/271a145446850588ecba09f144f7c023 to your computer and use it in GitHub Desktop.
Solution for the message "No such file or directory" But the file exists!
# Solution for the message "No such file or directory" But the file exists!
# First lests to see is the file is a 32-bit file writing the command:
# file nameOfTheFile
# and pressing ENTER
# is possible of you get a message like that: "...ELF 32-bit LSB executable.."
# so, is right, is a 32-bit file
# now we have to install the 32-bit packages to execute that file write this command:
sudo dpkg --add-architecture i386 && sudo apt-get update && sudo apt-get install ia32-libs && sudo aptitude -y install lib32z1
# and that is all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment