wine
실행 파일 (버전 2.12) 을 시작하려고 하지만 다음 오류가 발생합니다 ( $
= shell 프롬프트).
$ wine
bash: /usr/bin/wine: No such file or directory
$ /usr/bin/wine
bash: /usr/bin/wine: No such file or directory
$ cd /usr/bin
$ ./wine
bash: ./wine: No such file or directory
그러나 파일은 다음과 같습니다.
$ which wine
/usr/bin/wine
실행 파일은 분명히 존재하고 죽은 심볼릭 링크는 없습니다 :
$ stat /usr/bin/wine
File: /usr/bin/wine
Size: 9712 Blocks: 24 IO Block: 4096 regular file
Device: 802h/2050d Inode: 415789 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-07-13 13:53:00.000000000 +0200
Modify: 2017-07-08 03:42:45.000000000 +0200
Change: 2017-07-13 13:53:00.817346043 +0200
Birth: -
32 비트 ELF입니다.
$ file /usr/bin/wine
/usr/bin/wine: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV),
dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.32,
BuildID[sha1]=eaf6de433d8196e746c95d352e0258fe2b65ae24, stripped
실행 파일의 동적 섹션을 얻을 수 있습니다.
$ readelf -d /usr/bin/wine
Dynamic section at offset 0x1efc contains 27 entries:
Tag Type Name/Value
0x00000001 (NEEDED) Shared library: [libwine.so.1]
0x00000001 (NEEDED) Shared library: [libpthread.so.0]
0x00000001 (NEEDED) Shared library: [libc.so.6]
0x0000001d (RUNPATH) Library runpath: [$ORIGIN/../lib32]
0x0000000c (INIT) 0x7c000854
0x0000000d (FINI) 0x7c000e54
[more addresses without file names]
그러나 ldd
다음을 사용하여 공유 객체 종속성을 나열 할 수 없습니다 .
$ ldd /usr/bin/wine
/usr/bin/ldd: line 117: /usr/bin/wine: No such file or directory
strace
보여줍니다 :
execve("/usr/bin/wine", ["wine"], 0x7fff20dc8730 /* 66 vars */) = -1 ENOENT (No such file or directory)
fstat(2, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 4), ...}) = 0
write(2, "strace: exec: No such file or di"..., 40strace: exec: No such file or directory
) = 40
getpid() = 23783
exit_group(1) = ?
+++ exited with 1 +++
@jww의 제안을 추가하기 위해 편집 : ld
디버그 메시지가 생성 되지 않기 때문에 동적으로 연결된 라이브러리가 요청되기 전에 문제가 발생합니다.
$ LD_DEBUG=all wine
bash: /usr/bin/wine: No such file or directory
의 가능한 값만 인쇄하더라도 LD_DEBUG
오류가 대신 발생합니다
$ LD_DEBUG=help wine
bash: /usr/bin/wine: No such file or directory
@Raman Sailopal의 제안을 추가하기 위해 편집 :/usr/bin/wine
이미 작성된 파일 의 내용을 복사 하면 동일한 오류가 발생하므로 문제는 실행 파일 내에있는 것 같습니다
root:bin # cp cat testcmd
root:bin # testcmd --help
Usage: testcmd [OPTION]... [FILE]...
Concatenate FILE(s) to standard output.
[rest of cat help page]
root:bin # dd if=wine of=testcmd
18+1 records in
18+1 records out
9712 bytes (9.7 kB, 9.5 KiB) copied, 0.000404061 s, 24.0 MB/s
root:bin # testcmd
bash: /usr/bin/testcmd: No such file or directory
어떤 파일 또는 디렉토리가 누락되었는지 확인하기 위해 문제점은 무엇입니까?
uname -a
:
Linux laptop 4.11.3-1-ARCH #1 SMP PREEMPT Sun May 28 10:40:17 CEST 2017 x86_64 GNU/Linux
/etc/pacman.conf
. wine
패키지 의 모든 종속성 이 설치되었습니다. 그러나, 그냥 확인하기 위해 다시 설치 ...
/lib/ld-linux.so.2
시스템에 존재? 모든 증상은 검사 중 누락되었음을 나타냅니다.
/lib
가 누락되었습니다 :-)
file
어떤 인터프리터 명령 프로그램이 실행 설정됩니다.