在Linux系统中查看系统信息几种查看的方式。
输入"uname -a ",可显示电脑以及操作系统的相关信息。
- Linux localhost.localdomain 2.4.20-8 #1 Thu Mar 13 17:54:28 EST 2003 i686 athlon i386 GNU/Linux
输入"cat /proc/version",说明正在运行的内核版本。
- Linux version 2.4.20-8 (bhcompile@porky.devel.redhat.com)
- (gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 2003
输入"cat /etc/issue", 显示的是发行版本信息
- Red Hat Linux release 9 (Shrike)
输入“cat /proc/cpuinfo”, 显示 cpu 相关信息,包括型号、主频、内核信息等
- processor : 0
- vendor_id : AuthenticAMD
- cpu family : 15
- model : 1
- model name : AMD A4-3300M APU with Radeon(tm) HD Graphics
- stepping : 0
- cpu MHz : 1896.236
- cache size : 1024 KB
- fdiv_bug : no
- hlt_bug : no
- f00f_bug : no
- coma_bug : no
- fpu : yes
- fpu_exception : yes
- cpuid level : 6
- wp : yes
- flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr
- sse sse2 syscall mmxext lm 3dnowext 3dnow
- bogomips : 3774.87
lsb_release -a (适用于所有的linux,包括Redhat、SuSE、Debian等发行版,但是在debian下要安装lsb)
如果不知道命令的意思.可以通过 "man 命令"可以查看它的使用方式.及详细信息.