Heim > Artikel > Betrieb und Instandhaltung > So überprüfen Sie die Anzahl der Bits des Systems in Centos
View-Methode: 1. Verwenden Sie den Befehl „getconf LONG_BIT“. 2. Verwenden Sie den Befehl „file /bin/ls“. es bedeutet 32-Bit. Wenn „64-Bit“ erscheint, handelt es sich um 64-Bit.
Die Betriebsumgebung dieses Tutorials: Centos7-System, Thinkpad T480-Computer.
So überprüfen Sie, wie viele Bits das System in Centos hat (32-Bit oder 64-Bit)
In einem 32-Bit-System betragen der int-Typ und der long-Typ im Allgemeinen 4 Bytes -Bit-System, der int-Typ beträgt immer noch 4 Bytes, aber long ist zu 8 Bytes geworden.
In Linux-Systemen können „getconf WORD_BIT“ und „getconf LONG_BIT“ verwendet werden, um die Anzahl der Ziffern von Word und Long zu ermitteln.
Auf 64-Bit-Systemen sollten Sie 32 bzw. 64 erhalten.
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
kann sehen ELF 64-bit LSB
so ist das System. 64-bit
Empfohlen: „ Tutorial zur Centos-Nutzung》
Das obige ist der detaillierte Inhalt vonSo überprüfen Sie die Anzahl der Bits des Systems in Centos. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!