本教程操作环境:centos7系统、thinkpad t480电脑。
centos怎么查看系统是多少位的(是32位或者64位)
getconf LONG_BIT
[root@localhost ~]# getconf LONG_BIT 64
登录后复制
getconf WORD_BIT
[root@localhost ~]# getconf WORD_BIT 32
登录后复制
file /bin/ls
[root@localhost ~]# 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
登录后复制
可以看到 ELF 64-bit LSB
所以该系统为64位
推荐:《centos使用教程》
以上就是centos怎么查看系统是多少位的的详细内容,更多请关注Work网其它相关文章!