Heim > Artikel > Betrieb und Instandhaltung > So überprüfen Sie, ob die Centos-Systemversion 32-Bit oder 64-Bit ist
1.
[root@linuxzgf ~]#getconf LONG_BIT [root@linuxzgf ~]#getconf WORD_BIT
(In 32-Bit-Systemen sind der int-Typ und der long-Typ im Allgemeinen 4 Bytes und in 64-Bit-Systemen der Int-Typ ist immer noch 4 Bytes, aber long ist zu 8 Bytes geworden. In Linux-Systemen können Sie „getconf WORD_BIT“ und „getconf LONG_BIT“ verwenden, um die Anzahl der Wort- und Langbits zu erhalten und 64.)
(Empfohlenes Tutorial: Centos-Nutzungstutorial)
2. es ist 64-Bit, wenn nicht, ist es später 32-Bit; wenn es X686 ist oder Ein 64-Bit-System verfügt über zwei Verzeichnisse: /lib64 und /lib, während ein 32-Bit-System nur über /lib verfügt.
[root@linuxzgf ~]#uname -a
32-Bit ist 32-Bit-Linux, es wird 64-Bit angezeigt
5
[root@linuxzgf ~]#file /sbin/init /sbin/init: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
32-Bit ist 32-Bit-Linux. Wenn es 64-Bit ist, ist die Anzeige 64-Bit
[root@linuxzgf ~]#file /bin/cat /bin/cat: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, stripped
Empfohlene Video-Tutorials :
Linux-Video-TutorialDas obige ist der detaillierte Inhalt vonSo überprüfen Sie, ob die Centos-Systemversion 32-Bit oder 64-Bit ist. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!