上一页 1 2 3 4 5 6 7 ··· 16 下一页
摘要: # 导入画图函数 import matplotlib.pyplot as plt # 创建画布, figsize:指定图的长宽, dpi:图像的清晰度,返回fig对象 plt.figure(figsize=(20, 8), dpi=100) # 创建X,Y坐标轴数据 x = [1,2,3,4,5] 阅读全文
posted @ 2022-12-21 16:14 ForLivetoLearn 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 安装字体 安装字体程序 yum -y install cups-libs fontconfig ttmkfdir 创建中文字体目录 mkdir /usr/share/fonts/chinese chmod -R 755 /usr/share/fonts/chinese 在windows中查找字体,上 阅读全文
posted @ 2022-12-21 15:50 ForLivetoLearn 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 配置文件格式 [root@yu ~]# cat /etc/logrotate.d/nginx /usr/local/openresty/nginx/logs/*.log { #指定你要切割的文件 daily #每天 rotate 7 #最多保留多少个切割后的日志. missingok #如果对应日志 阅读全文
posted @ 2022-11-28 14:12 ForLivetoLearn 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 查看帮助手册 man openvpn 1.安装依赖包 版本信息 easy-rsa: 3.0.8 openvpn: 2.4.12 yum install -y lzo openssl pam yum install -y epel-release yum install -y openvpn easy 阅读全文
posted @ 2022-11-02 14:48 ForLivetoLearn 阅读(1455) 评论(0) 推荐(0) 编辑
摘要: nssm官网:http://www.nssm.cc/ 下载好nssm包后解压,找到nssm.exe文件,后续操作都需要以命令行启动 1.安装服务 PS E:\> .\nssm.exe install test Administrator access is needed to install a s 阅读全文
posted @ 2022-06-15 16:24 ForLivetoLearn 阅读(1328) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/caicaibird0531/article/details/90694849 一、etree的Element类 1.通过etree.Element()创建XML树 from lxml import etree root = etree.Elemen 阅读全文
posted @ 2022-06-14 10:27 ForLivetoLearn 阅读(5636) 评论(0) 推荐(0) 编辑
摘要: 命令行连接数据库 -u:用户名 -p:密码 -S:socket文件 -h:ip -P:端口 -e:直接执行的命令 -N: 在命令行直接运行sql时,不显示表格框 <:恢复数据 常用字符集 > show charset; utf8:3个字节 utf8mb4:4个字节,支持emoji 常用排序规则 ut 阅读全文
posted @ 2022-06-07 11:10 ForLivetoLearn 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 最近发现esxi分配的虚拟机磁盘占满,删除虚拟机中的文件后,esxi中磁盘使用量没有减少的问题 在网上查可以使用vmware-toolbox-cmd命令在虚拟机中回收空间 vmware-toolbox-cmd disk shrink / 但是使用命令后发现报错,提示压缩功能不可用,最终也没查到这个命 阅读全文
posted @ 2022-05-17 10:01 ForLivetoLearn 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: 加密 tar zcf - 文件1 文件2 文件夹1 文件夹2 | openssl des3 -salt -k 密码 | dd of=文件名.des3 解密 dd if=文件名.des3 |openssl des3 -d -k 密码 | tar zxf - 解密时-k 密码可以省略,在解密时输入 阅读全文
posted @ 2022-05-09 12:54 ForLivetoLearn 阅读(292) 评论(0) 推荐(0) 编辑
摘要: 1.Prometheus安装 prometheus下载地址 创建prometheus工作目录,解压二进制包并放到工作目录下 mkdir /data tar xvfz prometheus-*.tar.gz mv prometheus /data/ 创建Prometheus的启动托管文件 /etc/s 阅读全文
posted @ 2022-04-07 16:30 ForLivetoLearn 阅读(181) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 16 下一页