Linux rehat查看系統(tǒng)版本信息的方法總結(jié)
Linux rehat查看系統(tǒng)版本信息的方法總結(jié)
Linux rehat版本的系統(tǒng)信息我們可以通過(guò)命令簡(jiǎn)單就能獲取到。下面由學(xué)習(xí)啦小編為大家整理了查看Linux rehat查看系統(tǒng)版本信息的方法總結(jié),希望對(duì)大家有幫助!
Linux rehat查看系統(tǒng)版本信息的方法總結(jié)
Linux rehat查看系統(tǒng)版本信息
方法一:
查看redhat-release文件
[root@server ~]# cat /etc/redhat-release
Red Hat Enterprise linux AS release 4 (Nahant Update 8)
方法二:
查看issue文件
[root@server ~]# cat /etc/issue
Red Hat Enterprise Linux AS release 4 (Nahant Update 8)
Kernel /r on an /m
方法三:
使用lsb_release命令
[root@server ~]# lsb_release -a
LSB Version: :core-3.0-ia32:core-3.0-noarch:graphics-3.0-ia32:graphics-3.0-noarch
Distributor ID: RedHatEnterpriseAS
Description: Red Hat Enterprise Linux AS release 4 (Nahant Update 8)
Release: 4
Codename: NahantUpdate8
補(bǔ)充:Linux rehat查看系統(tǒng)硬件的方法
/proc目錄的內(nèi)容:
/proc/cpuinfo 關(guān)于處理器的信息,如類型、廠家、型號(hào)和性能等。
/proc/devices 當(dāng)前運(yùn)行內(nèi)核所配置的所有設(shè)備清單。
/proc/dma 當(dāng)前正在使用的dma通道。/proc/filesystems 當(dāng)前運(yùn)行內(nèi)核所配置的文件系統(tǒng)。
/proc/interrupts 正在使用的中斷,和曾經(jīng)有多少個(gè)中斷。
/proc/ioports 當(dāng)前正在使用的i/o端口。
舉例,使用下面的命令能讀出系統(tǒng)的cpu信息。
cat /proc/cpuinfo
查看CPU信息(型號(hào))
# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
8 Intel(R) Xeon(R) CPU E5410 @ 2.33GHz
(看到有8個(gè)邏輯CPU, 也知道了CPU型號(hào))
# cat /proc/cpuinfo | grep physical | uniq -c
4 physical id : 0
4 physical id : 1
(說(shuō)明實(shí)際上是兩顆4核的CPU)
# getconf LONG_BIT
32
(說(shuō)明當(dāng)前CPU運(yùn)行在32bit模式下, 但不代表CPU不支持64bit)
# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
8
(結(jié)果大于0, 說(shuō)明支持64bit計(jì)算. lm指long mode, 支持lm則是64bit)
再完整看cpu詳細(xì)信息, 不過(guò)大部分我們都不關(guān)心而已.
# dmidecode | grep 'Processor Information'
查看內(nèi) 存信息
# cat /proc/meminfo
# uname -a
Linux euis1 2.6.9-55.ELsmp #1 SMP Fri Apr 20 17:03:35 EDT 2007 i686 i686 i386 GNU/Linux
(查看當(dāng)前操作系統(tǒng)內(nèi)核信息)
# cat /etc/issue | grep Linux
Red Hat Enterprise Linux AS release 4 (Nahant Update 5)
(查看當(dāng)前操作系統(tǒng)發(fā)行版信息)
查看機(jī)器型號(hào)
# dmidecode | grep "Product Name"
查看網(wǎng)卡信息
# dmesg | grep -i eth