檢視Linux是32位還是64位的方法

2021-09-06 12:51:04 字數 439 閱讀 4769

本節內容:

檢視linux作業系統的位數

一,方法a:

uname -m

看到 i386/i686 就是 32位

看到 x86_64 就是 64位

二,方法b:

file /bin/bash

看到 elf 32-bit lsb executable, intel 80386 就是 32位

看到 elf 64-bit lsb executable, x86-64 就是 64位

三,方法c:

getconf long_bit

看到 32 就是 32位

看到 64 就是 64位

您可能感興趣的文章:

檢視linux版本、cpu、位數、核心、記憶體等資訊

檢視linux系統位數的三個方法

檢視linux系統是32位或64位的命令

檢視Linux是32位還是64位

檢視linux機器是32位還是64位的方法 file sbin init 或者 file bin ls sbin init elf 64 bit lsb executable,x86 64,version 1 sysv dynamically linked uses shared libs for ...

如何檢視Linux是32位還是64位

檢視linux機器是32位還是64位的方法 sbin init elf64 bitlsb executable,x86 64,version 1 sysv dynamically linked uses shared libs for gnu linux 2.6.18,stripped 如果顯示 6...

檢視linux系統是32位還是64位

一 root linuxzgf getconf long bit root linuxzgf getconf word bit 32位的系統中int型別和long型別一般都是4位元組,64位的系統中int型別還是4位元組的,但是long已變成了8位元組inux系統中可用 getconf word b...