这里详细讲解Python执行Shell获取硬件参数并写入MySQL的完整攻略。
硬件参数获取
首先,我们需要编写一个Shell脚本获取硬件参数。可以使用命令行工具如lshw
、lspci
、lsblk
等获取硬件信息。以lshw
为例,以下是获取CPU信息的脚本:
#!/bin/bash
cpu_info=$(lshw -C cpu)
echo "$cpu_info"
运行脚本可以得到CPU信息,如下所示:
*-cpu
product: Intel(R) Core(TM) i7-8550U CPU @ 1.80GHz
vendor: Intel Corp.
physical id: 43
bus info: cpu@0
size: 1619MHz
capacity: 4500MHz
width: 64 bits
capabilities: fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 hle avx2 smep bmi2 erms invpcid rtm mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp pku ospke md_clear flush_l1d
Python调用Shell脚本
接下来,我们使用Python调用Shell脚本,并将获取到的硬件参数写入到一个文本文件中。使用Python内置的subprocess
模块可以轻松实现。
import subprocess
# 执行Shell脚本
shell_cmd = "sh get_cpu_info.sh"
result = subprocess.run(shell_cmd.split(), capture_output=True)
# 将结果写入文件
with open("cpu_info.txt", "w") as f:
f.write(result.stdout.decode("utf-8"))
将结果写入MySQL
最后,我们使用Python的MySQL库mysql-connector-python
将硬件参数写入MySQL数据库中。需要先安装该库:pip install mysql-connector-python
以下是将CPU信息写入MySQL的示例代码:
import mysql.connector
# 连接MySQL数据库
cnx = mysql.connector.connect(
host='localhost',
user='username',
password='*****',
database='mydb'
)
cursor = cnx.cursor()
# 读取硬件参数
with open("cpu_info.txt", "r") as f:
cpu_info = f.read().strip()
# 将硬件参数插入到MySQL表中
add_cpu_info = ("INSERT INTO hardware_info "
"(type, info) "
"VALUES (%s, %s)")
data_cpu_info = ('cpu', cpu_info)
cursor.execute(add_cpu_info, data_cpu_info)
# 提交更改,并关闭连接
cnx.commit()
cursor.close()
cnx.close()
以上示例仅展示了如何将CPU信息写入MySQL,其他硬件信息类似处理即可,完整详细的代码请参考下面的链接:https://gist.github.com/AlvinZhuuu/5ede0ea3d1a07d17bea30e9fae7209b0
希望本文对你有所帮助!
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:python执行shell获取硬件参数写入mysql的方法 - Python技术站