- 博客(10)
- 收藏
- 关注
原创 libvirt QEMU 源码编译安装
yum install glib2.x86_64 glib2-devel.x86_64yum install gnutls.x86_64 gnutls-devel.x86_64yum install libnl3.x86_64 libnl3-devel.x86_64 -yyum install libxml2.x86_64 libxml2-devel.x86_64 -yyum install libtirpc.x86_64 libtirpc-devel.x86_64 -yyum inst
2022-03-18 16:57:04 1651
原创 基于python通过libvirt接口发现宿主机的pci_device资源池( pools)
import libvirtimport jsonimport socketdef get_connection(): ip = socket.gethostbyname(socket.gethostname()) conn = libvirt.open('qemu+tcp://{ip}/system'.format(ip=ip)) return conndef get_pci_device_list(flags=0): conn = get_connect.
2020-10-19 15:28:40 391
原创 python协程代码测试
import eventletfrom eventlet import wsgifrom eventlet import greenpooldef hello_world(evn, start_response): start_response('200 OK', [('Content-Type', 'text/plain')]) return ['Hello World ! \r\n']def hello_demo(evn, start_response): star...
2020-06-30 14:20:04 185
原创 C语言main函数输入形参测试
C语言main函数输入形参通常情况下main函数没有形参,如:int main()。main函数是可以有形参的,如:int main(int argc, char **argv),C语言规定main函数的参数只能有两个, 习惯上这两个参数写为argc和argv,且argc为int型,argv为指向字符串的指针数组。测试main函数输入输出参数:测试代码如下:测试结果如下:测试结果分析:可以看出main函数输入参数个数为3,参数分别为 ./test1、10、5。其中图中第一
2020-06-11 17:10:05 1122
原创 Centos安装Python3实战操作
1 安装依赖包:yum install gcc openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel libffi-devel tk-devel wget curl-devel-y2 官网下载python3安装包:wget https://www.python.org/ftp/pyth...
2020-03-07 18:57:18 107
原创 基于centos操作系统学习mysql数据库操作(一)
安装数据库1. 下载MySQL源安装包:wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm正在上传…重新上传取消2. 安装MySQL源:yum localinstall mysql57-community-release-el7-8.noarch.rpm正在上传…重新上传取消3. 检测是...
2020-03-01 21:46:22 211
原创 解决centos7设置网卡dhcp模式时systemctl start network 失败问题
错误信息:1.设置网卡配置:2.关闭NetworkManager服务:systemctl disable NetworkManager,systemctl stopNetworkManager;3.将网络连接模式设置为桥接模式:5.成功解决:如果对您有所帮助,点个赞吧!!!...
2020-03-01 18:10:55 1431
原创 Python检查MAC地址代码
import redef isValidMac(mac): macth_mac = re.match(r"^\s*([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}\s*$", mac) if not macth_mac: print ("Enter mac is unvalide mac") if mac.startswith('0...
2019-11-04 09:26:01 960
原创 QGA网站
QGA源码网站:https://www.qemu.org/download/Windows系统QGA:https://qemu.weilnetz.de/w64/Ubuntu系统QGA:http://archive.ubuntu.com/ubuntu/pool/universe/q/qemu/CentOS系统QGA:https://cbs.centos.org/koji/buildinf...
2019-07-25 17:45:36 282
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人