当我输入uname -a时,它会给出以下输出。
Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux
我怎么知道给定的操作系统是32位还是64位?
这在编写配置脚本时很有用,例如:我为什么体系结构构建?
当我输入uname -a时,它会给出以下输出。
Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux
我怎么知道给定的操作系统是32位还是64位?
这在编写配置脚本时很有用,例如:我为什么体系结构构建?
当前回答
试试uname -m。它缺少uname——machine,输出:
x86_64 ==> 64-bit kernel
i686 ==> 32-bit kernel
否则,对于Linux内核,而是CPU,输入:
cat /proc/cpuinfo
or:
grep flags /proc/cpuinfo
在“flags”参数下,您将看到各种值:参见“/proc/cpuinfo中的flags是什么意思?” 其中一种是lm: Long Mode (x86-64: amd64,又称Intel 64,即64位)
lm ==> 64-bit processor
或者使用lshw(如下文由Rolf of Saxony所述),而不使用sudo(只是为了控制cpu宽度):
lshw -class cpu|grep "^ width"|uniq|awk '{print $2}'
注意:你可以安装一个64位CPU和一个32位内核。 (正如ysdx在他/她自己的回答中提到的,“现在,一个系统可以是多拱的,所以它无论如何都没有意义。你可能想要找到编译器的默认目标”)
其他回答
#include <stdio.h>
int main(void)
{
printf("%d\n", __WORDSIZE);
return 0;
}
关于答案“getconf LONG_BIT”。
我用C语言写了一个简单的函数:
/*
* check_os_64bit
*
* Returns integer:
* 1 = it is a 64-bit OS
* 0 = it is NOT a 64-bit OS (probably 32-bit)
* < 0 = failure
* -1 = popen failed
* -2 = fgets failed
*
* **WARNING**
* Be CAREFUL! Just testing for a boolean return may not cut it
* with this (trivial) implementation! (Think of when it fails,
* returning -ve; this could be seen as non-zero & therefore true!)
* Suggestions?
*/
static int check_os_64bit(void)
{
FILE *fp=NULL;
char cb64[3];
fp = popen ("getconf LONG_BIT", "r");
if (!fp)
return -1;
if (!fgets(cb64, 3, fp))
return -2;
if (!strncmp (cb64, "64", 3)) {
return 1;
}
else {
return 0;
}
}
“getconf”是个好主意!
简单的脚本获得64位或32位
if $(getconf LONG_BIT | grep '64'); then
echo "64 bit system"
else
echo "32 bit system"
fi
lscpu会列出关于你的CPU的其他信息:
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
...
如果您使用的是64位操作系统,uname -a的输出信息中有x86_64或ia64,而不是i686。因为你没有这两条弦中的任何一条;你有一个32位的操作系统(注意,这并不意味着你的CPU不是64位)。