Linux 应用程序代码库

Linux 应用程序代码库

什么 Linux 命令可以确定 Linux 第三方应用程序是 32 位还是 64 位

答案1

您可以使用文件:

user@host:~$ file /bin/ls 
/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped

就我而言,是 64 位 LSB 可执行文件。

答案2

file(1)

$ file =ls
/bin/ls: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped

相关内容