⑴ 利用python寫一段讀取電腦配置信息的程序
主要利用python的wmi模塊,提供非常多的信息。
importwmi
defsys_version():
c=wmi.WMI()
#操作系統版本,版本號,32位/64位
print(' OS:')
sys=c.Win32_OperatingSystem()[0]
print(sys.Caption,sys.BuildNumber,sys.OSArchitecture)
#CPU類型CPU內存
print(' CPU:')
processor=c.Win32_Processor()[0]
print(processor.Name.strip())
Memory=c.Win32_PhysicalMemory()[0]
print(int(Memory.Capacity)//1048576,'M')
#硬碟名稱,硬碟剩餘空間,硬碟總大小
print(' DISK:')
fordiskinc.Win32_LogicalDisk(DriveType=3):
print(disk.Caption,'free:',int(disk.FreeSpace)//1048576,'M ','All:',int(disk.Size)//1048576,'M')
#獲取MAC和IP地址
print(' IP:')
forinterfaceinc.Win32_NetworkAdapterConfiguration(IPEnabled=1):
print("MAC:%s"%interface.MACAddress)
forip_addressininterface.IPAddress:
print(" IP:%s"%ip_address)
#BIOS版本生產廠家釋放日期
print(' BIOS:')
bios=c.Win32_BIOS()[0]
print(bios.Version)
print(bios.Manufacturer)
print(bios.ReleaseDate)
sys_version()
顯示:
OS:
MicrosoftWindows10專業版1713464位
CPU:
Intel(R)Core(TM)[email protected]
8192M
DISK:
C:free:34165M All:120825M
D:free:265648M All:390777M
E:free:35669M All:204796M
F:free:5814M All:28163M
G:free:328650M All:329999M
IP:
MAC:00:50:56:C0:00:01
IP:192.168.182.1
IP:fe80::e0fb:efd8:ecb0:77f4
MAC:00:50:56:C0:00:08
IP:192.168.213.1
IP:fe80::8da1:ce76:dae:bd48
MAC:54:E1:AD:77:57:AB
IP:192.168.199.105
IP:fe80::aca8:4e6f:46e7:ef4a
BIOS:
LENOVO-1
LENOVO
20170518000000.000000+000
⑵ 使用dmidecode命令查看伺服器硬體信息
dmidecode命令是通過DMI獲取主機硬體信息的重要工具,其輸出內容覆蓋BIOS、系統、主板、處理器、內存、緩存等各個層面。DMI,即Desktop Management Interface,包含Management Information Format (MIF)資料庫,內含電腦系統及配件的全部信息。
為了在CentOS 7.9操作系統上安裝dmidecode,您需執行以下步驟:
dmidecode支持多種數字參數,這些參數對應硬體信息的不同類別,例如:
使用dmidecode的示例包括:
10T技術資源大放送,涵蓋linux、虛擬化、容器、雲計算、網路、Python、Go等領域,只需在開源Linux公眾號內回復「10T」即可免費獲取。
⑶ bin文件用什麼軟體打開
bin文件是由來自不同公司的磁碟映像開發和編輯應用中創建的磁碟鏡像文件。這些文件的內容是二進制形式,從一個磁碟,這個輸出文件復制。可以包括圖片、游戲、音頻甚至是編程器用來刷晶元(ROM)的內容。
工具/材料:Notepad++、bin文件。
1、首先在桌面上,選中「bin文件」快捷方式。
⑷ python怎麼修改linux系統時間
1、修改系統時間。 linux系統時鍾有兩個,一個是硬體時鍾,即BIOS時間,就是我們進行CMOS設置時看到的時間,另一個是系統時鍾,是linux系統Kernel時間。當Linux啟動時,系統Kernel會去讀取硬體時鍾的設置,然後系統時鍾就會獨立於硬體運作。