Heim > Artikel > Betrieb und Instandhaltung > So überprüfen Sie die Linux-Version
So überprüfen Sie Versionsinformationen unter Linux, einschließlich Anzahl der Bits, Versionsinformationen, CPU-Kerninformationen, CPU-spezifisches Modell usw. Die gesamten CPU-Informationen sind auf einen Blick klar.
1,# UNAME -A (Linux-Version der aktuellen Betriebssystem-Kernel-Informationen anzeigen) (Empfohlenes Lernen: Linux-Tutorial ) >2 /version (Linux, um die aktuellen Versionsinformationen des Betriebssystems anzuzeigen)
[hadoop@admin01 ~]$ uname -a Linux admin01 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
3. # cat /etc/issue oder cat /etc/redhat-release (Linux, um die Version des aktuellen Betriebssystems anzuzeigen Release-Informationen)
[hadoop@admin01 ~]$ cat /proc/version Linux version 2.6.32-358.el6.x86_64 (mockbuild@c6b8.bsys.dev.centos.org) (gcc version 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC) ) #1 SMP Fri Feb 22 00:31:26 UTC 2013
4. # cat /proc/cpuinfo (Linux zum Anzeigen von CPU-bezogenen Informationen, einschließlich Modell, Hauptfrequenz, Kernel-Informationen usw.)
[hadoop@admin01 ~]$ cat /etc/issue CentOS release 6.4 (Final) Kernel \r on an \m [hadoop@admin01 ~]$ cat /etc/redhat-release CentOS release 6.4 (Final)
5. # getconf LONG_BIT (Linux überprüfen Sie die Versionsbeschreibung. Die aktuelle CPU läuft im 32-Bit-Modus, aber das bedeutet nicht, dass die CPU nicht 64bit unterstützt)
[hadoop@admin01 ~]$ cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 60 model name : Intel(R) Core(TM) i5-4200H CPU @ 2.80GHz stepping : 3 cpu MHz : 2793.544 cache size : 3072 KB physical id : 0 siblings : 2 core id : 0 cpu cores : 2 apicid : 0 initial apicid : 0 fpu : yes fpu_exception : yes cpuid level : 13 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq ssse3 fma cx16 pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm ida arat epb xsaveopt pln pts dts fsgsbase bmi1 avx2 smep bmi2 invpcid bogomips : 5587.08 clflush size : 64 cache_alignment : 64 address sizes : 42 bits physical, 48 bits virtual power management:
6. # lsb_release -a (Systemversion abfragen)
rrreeDas obige ist der detaillierte Inhalt vonSo überprüfen Sie die Linux-Version. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!