首页 > 代码库 > 查看linux是32位还是64位
查看linux是32位还是64位
方法一:
file /sbin/init 或 file /bin/ls
结果如下
[root@localhost ~]# file /sbin/init
/sbin/init: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped
[root@localhost ~]# file /bin/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
如果显示为32bit为32位,64bit则为64位。
方法二:
[root@localhost ~]# uname -a
Linux localhost.lw 2.6.32-358.el6.i686 #1 SMP Thu Feb 21 21:50:49 UTC 2013 i686 i686 i386 GNU/Linux
显示x86_64表示为64位,i686则为32位。
方法三:
[root@localhost ~]# getconf LONG_BIT
32
直接看显示结果
查看linux是32位还是64位
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。