简介
该用户还未填写简介
擅长的技术栈
未填写擅长的技术栈
可提供的服务
暂无可提供的服务
fio源码编译后的fio运行报错 fio: file:ioengines.c:89, func=dlopen, error=libaio: cannot open shared object file
先安装libaio-devel,再重新编译fio。
linux禁止root账户远程访问
root无法通过mobaxterm远程访问服务器解决办法
一种使用Windows下的python语言获取ping网络IP链接状态的方法
#!/usr/bin/python3#-*-coding:utf8-*-#!/usr/bin/pythonimportsubprocessimportredefLinkState(ip):returngetLinkState(ip)#获取链路状态defgetLinkState(ip):#运行ping程序p=subprocess.Popen(["ping.exe",ip],st...
用python写的一个简单的串口程序实现自动化测试
用例1:#!/usr/bin/python# -*- coding: UTF-8 -*-import serialfrom time import sleepdef recv(serial):while True:data = serial.readline()if data == '':continueelse:breaksleep(0.02)re...
到底了