摘要: 部署kubernetes 设别基础配置标准 Minimal Installed Debian 12 /11 2 CPU / vCPU 2 GB RAM 20 GB free disk space Sudo User with Admin rights Stable Internet Connecti 阅读全文
posted @ 2024-06-22 13:32 YueQAQ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 摘要 四链五表 4表: filter表,作用是过滤某些包,这是防火墙工作的基础, 例如:云厂商的安全组实现 一般不带 -t 参数,则默认使用filter表 nat表,作用是实现网络地址转换 raw, 作用是将命中规则的包,跳过其它表的处理,它的优先级最高。 mangle, 作用是根据规则修改数据包的 阅读全文
posted @ 2024-06-15 18:05 YueQAQ 阅读(3) 评论(0) 推荐(0) 编辑
摘要: windows的curl和wget是假的,实际上是Invoke-WebRequest.exe。 以下是脚本是使用Invoke-WebRequest上传文件到jfrog: $filePath = ".\file.zip" $targetFilePath = "file.zip" $url = "htt 阅读全文
posted @ 2024-01-30 16:59 YueQAQ 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 看来一圈抄来抄去的陈年老博客,还不如看博客评论区。 yaml文件的imagePullPolicy的IfNotPresent改为Never 没啥事用,本地存在镜像,kubectl还是选择去阿里代理仓拉取,尴尬的是calico 是从github下载的release-v3.26.4,阿里云镜像代理仓没有这 阅读全文
posted @ 2024-01-18 20:28 YueQAQ 阅读(223) 评论(0) 推荐(0) 编辑
摘要: sudo docker ps 查到容器id后,docker commit 提交容器为镜像 sudo docker commit b3047955060f devops-harbor.sany.com.cn/sany-wuhuport/ci-wuhu-vehicle:latest 可以直接推送到har 阅读全文
posted @ 2023-10-20 14:27 YueQAQ 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 查找版本 https://raw.githubusercontent.com/Bugazelle/chromium-all-old-stable-versions/master/chromium.stable.json 根据driver版本,找到Linux版本之后可以根据链接直接下载(有梯子) 例如 阅读全文
posted @ 2023-09-20 16:39 YueQAQ 阅读(476) 评论(0) 推荐(0) 编辑
摘要: To continuously convert an RGB data stream to H.265 and transmit it to an ARM machine running Ubuntu 18, you can use FFmpeg in combination with a netw 阅读全文
posted @ 2023-09-16 16:15 YueQAQ 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 安装内核 sudo sed -i '$a\deb https://mirrors.ustc.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse \​ deb-src https://mirrors.ustc.edu.c 阅读全文
posted @ 2023-08-16 17:05 YueQAQ 阅读(248) 评论(0) 推荐(0) 编辑
摘要: IP地址 IPv4 IP地址 = 网络地址 + 主机地址(又称:主机号和网络号组成) IP地址 192.168.1.168, 子网掩码 255.255.255.0作为示例: 192.168.100.168(IP地址) = 192.168.1.0 (网络地址) + 0.0.0.168(主机地址) 排除 阅读全文
posted @ 2023-02-27 21:55 YueQAQ 阅读(1386) 评论(0) 推荐(0) 编辑
摘要: #perl中使用sed system("sed -i 's/wait_process/wait \${a} \&\& wait \${b}/g' xxx.sh"); 这么写会出现错误,达不到sed预期的替换效果,即“\&”在sed中写的是"&"。perl发生一次转义、sed也需要一次转义; syst 阅读全文
posted @ 2023-01-03 16:51 YueQAQ 阅读(46) 评论(0) 推荐(0) 编辑