๐พ Archived View for bbs.geminispace.org โบ u โบ norayr โบ 5048 captured on 2024-05-10 at 13:03:12. Gemini links have been rewritten to link to archived content
โฌ ๏ธ Previous capture (2024-03-21)
โก๏ธ Next capture (2024-05-26)
-=-=-=-=-=-=-
Re: "binary file reported as 'no such file or directory' upon..."
and what is the output of
file /bin/bash
or some other binary that runs?
also can you do ldd on both - the file that doesn't run and something that does?
2023-09-01 ยท 8 months ago
๐ stack [OP] ยท 2023-09-02 at 01:05:
I won't be able till tomorrow.
๐ dimkr ยท 2023-09-02 at 08:44:
dpkg --add-architecture i386 && apt update && apt install libc6:i386 should fix this, if this is Debian or a derivative like Ubuntu. This is the error you get when you run a 32-bit executable on a 64-bit OS but the 32-bit loader (part of glibc) is missing.
binary file reported as 'no such file or directory' upon execution โ This has to be the weirdest behavior ever. A small utility that works fine on my main machine was copied over to my Thinkpad, running identical XUbuntu. Fails on ThinkPad only I can ls it, permissions are fine, even HD and objdump look reasonable. When I try to invoke it from command line, bash reports that it does not exist. strace shows execve with correct path, craps with ENOENT (no such file or directory) It's like it...