Created
December 22, 2021 05:08
-
-
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!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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