真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python實現(xiàn)獲取Linux操作系統(tǒng)基礎信息

獲取信息如下:

創(chuàng)新互聯(lián)公司成都企業(yè)網(wǎng)站建設服務,提供成都網(wǎng)站制作、成都做網(wǎng)站網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設計,成都響應式網(wǎng)站建設公司,網(wǎng)頁設計師打造企業(yè)風格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務。歡迎咨詢做網(wǎng)站需要多少錢:18980820575

    主機名

    系統(tǒng)版本

    系統(tǒng)內(nèi)核版本

    總內(nèi)存

    CPU生廠商

    CPU總核心數(shù)

    服務器生廠商

    服務器序列號

    各網(wǎng)卡IP,MAC和網(wǎng)卡名信息

實現(xiàn)代碼如下:

#!/usr/bin/python
#coding:utf8

from subprocess import Popen, PIPE
import re

#獲取主機名,也可以使用 uname -n 命令獲取
def hostname():
    hostname = Popen(["hostname"], stdout=PIPE)
    hostname = hostname.stdout.read()
    return hostname

#獲取操作系統(tǒng)版本
def osversion():
    with open("/etc/redhat-release") as f:
        osversion = f.read()
    return osversion

#獲取操作系統(tǒng)內(nèi)核版本
def oscoreversion():
    oscoreversion = Popen(["uname", "-r"], stdout=PIPE)
    oscoreversion = oscoreversion.stdout.read()
    return oscoreversion

#獲取CPU相關信息,如果存在多種不同CPU,那么CPU型號統(tǒng)計的為最后一種型號,這種情況少見
def cpuinfo():
    corenumber = []
    with open("/proc/cpuinfo") as cpuinfo:
        for i in cpuinfo:
            if i.startswith("processor"):
                corenumber.append(i)
            if i.startswith("model name"):
                cpumode = i.split(":")[1]
    return corenumber, cpumode	#調(diào)用此函數(shù)需要用兩個變量來接收參數(shù)
    
#獲取內(nèi)存相關信息
def meminfo():
    with open("/proc/meminfo") as meminfo:
        for i in meminfo:
            if i.startswith("MemTotal"):
                totalmem = i.split(":")[1]
    return totalmem

#獲取服務器硬件相關信息
def biosinfo():
    biosinfo = Popen(["dmidecode", "-t", "system"], stdout=PIPE)
    biosinfo = biosinfo.stdout.readlines()
    
    for i in biosinfo:
        if "Manufacturer" in i:
            manufacturer = i.split(":")[1]
        if "Serial Number" in i:
            serialnumber = i.split(":")[1]
    return manufacturer, serialnumber	#調(diào)用此函數(shù)需要使用兩個變量接收參數(shù)
    
#獲取網(wǎng)卡信息,包括網(wǎng)卡名,IP地址,MAC地址
def ipaddrinfo():

    #定義存儲格式,以網(wǎng)卡名為key,mac地址和ip地址為一個列表,這個列表又為這網(wǎng)卡名的value
    def add(dic, key, value): 
        dic.setdefault(key, [ ]).append(value)
    
    ipinfo = Popen(["ip", "addr"], stdout=PIPE)
    ipinfo = ipinfo.stdout.readlines()
    
    dict1 = {}
    for i in ipinfo:
        if re.search(r"^\d", i):
            devname = i.split(": ")[1]
            continue
        if re.findall("ether", i):
            devmac = i.split()[1]
            add(dict1, devname, devmac)
            continue
        if re.findall("global", i):
            devip = i.split()[1]
            add(dict1, devname, devip)
            continue
    return dict1
    
if __name__ == "__main__":
    hostname = hostname()
    osversion = osversion()
    oscoreversion = oscoreversion()
    totalmem = meminfo()
    cpunumber, cpumode = cpuinfo() 
    manufacturer, serialnumber = biosinfo()
    ipinfo = ipaddrinfo()
    print("%s:\t\t %s" %("主機名", hostname)),
    print("%s:\t %s" %("系統(tǒng)版本", osversion)),
    print("%s:\t %s" %("系統(tǒng)內(nèi)核版本", oscoreversion)),
    print("%s:\t %s" %("總內(nèi)存", totalmem)),
    print("%s:\t%s" %("CPU生廠商", cpumode)),
    print("%s:\t %s" %("CPU總核心數(shù)", len(cpunumber)))
    print("%s:\t%s" %("服務器生廠商", manufacturer)),
    print("%s:\t%s" %("服務器序列號", serialnumber)),
    for x in ipinfo:
        y = ipinfo.get(x)
        ip = y[1]
        mac = y[0]
        print("%s%s:\t %s\t%s" %("網(wǎng)卡", x, ip, mac))

輸出結(jié)果如下:

Python實現(xiàn)獲取Linux操作系統(tǒng)基礎信息

Python實現(xiàn)獲取Linux操作系統(tǒng)基礎信息

以上結(jié)果經(jīng)CentOS 7和CentOS 6測試沒有問題,其它系統(tǒng)使用可能會出現(xiàn)一些IO錯誤


文章標題:Python實現(xiàn)獲取Linux操作系統(tǒng)基礎信息
標題鏈接:http://weahome.cn/article/poiidp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部