会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
代码诠释的世界
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
19
20
21
22
23
24
25
26
27
···
51
下一页
2022年10月8日
【python】No module named 'pyqtgraph'
摘要: 1、pypi https://pypi.org/project/pyqtgraph/ 2、安装 pip install pyqtgraph
阅读全文
posted @ 2022-10-08 16:15 代码诠释的世界
阅读(546)
评论(0)
推荐(0)
2022年10月1日
【压力测试】ubuntu使用stress-ng做CPU, 内存及硬盘使用率测试
摘要: 1、安装 sudo apt-get install stress sudo apt-get install stress-ng 2、查看cpu,内存,硬盘方法 # 查看cpu个数 cat /proc/cpuinfo # 查看内存大小 cat /proc/meminfo # 查看磁盘大小 df -h
阅读全文
posted @ 2022-10-01 16:24 代码诠释的世界
阅读(20475)
评论(0)
推荐(0)
【centos】使用netstat报错command not found
摘要: 1、问题 使用netstat报错command not found 2、处理 主要是因为没有安装 yum install net-tools 参考链接: https://blog.csdn.net/huangbaokang/article/details/88417221
阅读全文
posted @ 2022-10-01 16:03 代码诠释的世界
阅读(935)
评论(0)
推荐(0)
【yaml】python解析yaml的 None类型
摘要: 1、问题 做接口测试自动化时,参数传递时,默认给的null,直接写None会被解析成字符串 2、出问题的格式 打印 “Total': 'None' 3、正确的解析成None的方法 方式一,后面留空 输出 方式二、写成 null 输出 方式三、写成 ~ 输出 参考链接: https://blog.cs
阅读全文
posted @ 2022-10-01 16:00 代码诠释的世界
阅读(381)
评论(0)
推荐(0)
【python】Error:'int' object is not callable
摘要: 1、问题 rpc接口在调用的时候报错 2、原因 这个报错的意思就是int转换时,转换的对象不能调用 本次错误,主要是因为int(obj.a) 写成了int(obj.a()), 导致属性获取失败 3、处理 修改int(obj.a())为int(obj.a) 即可 本质上int转换的对象也就是那字符串,
阅读全文
posted @ 2022-10-01 15:43 代码诠释的世界
阅读(487)
评论(0)
推荐(0)
【压力测试】使用stress 工具对CPU,内存, 硬盘进行压力测试
摘要: 1、安装 sudo apt-get update sudo apt-get install -y linux-tools-$(uname -r) sudo apt-get install stress 2、命令介绍 stress --help `stress' imposes certain typ
阅读全文
posted @ 2022-10-01 15:28 代码诠释的世界
阅读(7595)
评论(0)
推荐(0)
2022年9月19日
【sonic】安装配置sonic及接入设备
摘要: 1、效果图 2、安装java15及以上版本并配置环境变量 添加JAVA_HOME变量 添加CLASSPATH 添加path https://blog.csdn.net/weixin_54557847/article/details/125091817 3、安装Android SDK并配置环境变量 添
阅读全文
posted @ 2022-09-19 17:34 代码诠释的世界
阅读(1021)
评论(0)
推荐(0)
2022年9月16日
【sonic】使用docker搭建单机sonic-server-1.5.0-release
摘要: 1、官网 https://sonic-cloud.gitee.io/#/Deploy 2、github https://github.com/SonicCloudOrg 3、下载 https://download.sonic-cloud.wiki/sonic/sonic-server/v1.5.0-
阅读全文
posted @ 2022-09-16 13:20 代码诠释的世界
阅读(637)
评论(0)
推荐(0)
2022年9月7日
【k8s】使用kubeasz一键安装k8s多主集群
摘要: 1、 kubeasz https://github.com/easzlab/kubeasz 2、文档 https://github.com/easzlab/kubeasz/tree/master/docs 3、quickstart https://github.com/easzlab/kubeasz
阅读全文
posted @ 2022-09-07 18:04 代码诠释的世界
阅读(1182)
评论(0)
推荐(0)
2022年8月31日
【centos7】网卡开机启动与配置静态ip
摘要: 1、使用ip addr查看ip 2、查看路由 3、设置开机启动 vi /etc/sysconfig/network-scripts/ifcfg-ens33 ONBOOT=yes TYPE=Ethernet PROXY_METHOD=none BROWSER_ONLY=no BOOTPROTO=dhc
阅读全文
posted @ 2022-08-31 14:19 代码诠释的世界
阅读(687)
评论(0)
推荐(0)
上一页
1
···
19
20
21
22
23
24
25
26
27
···
51
下一页
公告