he 发布的文章
MHDD 方法完整文档
MHDD 方法完整文档
Docker 容器一键迁移脚本
脚本的思路:1.先用runlike容器对每个容器的安装命令、文件路径等进行识别,然后把所有容器的安装命令归纳到1个脚本,同时备份所有容器的数据,在恢复时自动解压数据文件到原始路径并调用安装命令安装备份的容器;2.利用Nginx假设临时的下载服务器,在新服务器你只需要输入这个旧服务器的IP或域名,就可以进行全自动下载和恢复;3.新服务器下载安装完成后,在旧服务器执行命令恢复Nginx原始文件。先不要说那么多什么dockercompose,对任何人来说,这都是最简单的,没有之一。项目地址: https://github.com/ceocok/Docker_container_migratio...
一键组网脚本!完美支持 Debian/Ubuntu/Mac/Alpine/windows/openwrt
项目地址:https://github.com/ceocok/onekeyeasytier/tree/mainDemo: https://et.cococ.co bash <(curl -sL https://raw.githubusercontent.com/ceocok/c.cococ/refs/heads/main/easytier.sh) windows 版本在这里!!直接复制所有内容在powershell里运行就可以了,也有一键脚本 iex(New-Object Net.WebClient).DownloadString('https://github....
PKCS#8通用格式私钥,转换为PKCS#1传统 RSA 格式
OpenSSL 3.5.1 1 Jul 2025 (Library: OpenSSL 3.5.1 1 Jul 2025) OpenSSL下载地址:https://slproweb.com/products/Win32OpenSSL.html转换命令:openssl rsa -in privkey.key -traditional -out pkcs1_key.pem转换后得到pkcs1_key.pem,即是PKCS#1传统RSA格式私钥。PKCS#8 和 PKCS#1 是两种不同的私钥存储格式,各有优缺点,适用于不同场景。以下是它们的对比分析,帮助你选择更适合的格式:1. PKCS#1(...
免费获得阿里云ESA套餐
您需要在任一社交平台或论坛博客(Linux.do、V2EX.com、X.com、LowEndTalk.com、您的个人博客、哔哩哔哩、即刻App、小红书、facebook.com、youtube.com)上发布一篇推荐阿里云ESA的帖子,并包含以下内容:带有一张包含ESA元素的图片(控制台截图、速度测试图、产品宣传图等)带有免费领取链接:http://s.tb.cn/e6.0Fu67m
通过 IP 地址检测用户的地理位置,强制特定地区的访客跳转或显示
fetch('https://ipinfo.io/json') .then(r => r.json()) .then(d => { if (d && d.region && d.region.toLowerCase() === 'beijing') { window.location.replace('/404.html') } });
网页上动态创建一个全屏的 iframe 并加载第三方网站
(function() { if (document.querySelector('.jnh_iframe_hidden')) { return; } let retryCount = 0; const MAX_RETRIES = 20; function initializeAndShowIframe() { const body = document.body; const html = document.documentElement; if (!body ...
合并导出为 PKCS#12 格式(.pfx)
合并:openssl pkcs12 -export -in fullchain.crt -inkey privkey.key -out fullchain.pfx -certpbe AES-256-CBC -keypbe AES-256-CBC -macalg sha256 -passout pass:password -chain检测:openssl pkcs12 -info -in fullchain.pfx -password pass:password
Sectigo自2025年6月2日起迁移新的根证书Sectigo Public Server Authentication Root R46
关键要点 “Sectigo Public Server Authentication CA DV R36”和“Sectigo RSA Domain Validation Secure Server CA”都是Sectigo的中间证书,用于颁发域名验证(DV)SSL证书。 研究表明,“Sectigo RSA Domain Validation Secure Server CA”是较旧的中间证书,属于之前的根CA结构,可能由“USERTrust RSA Certification Authority”签发,有效期至2030年12月31日。 证据倾向于认为,“Sectigo Public Se...
cmd安装telnet命令,查看服务器端口是否开通
首先安装telnetdism /online /Enable-Feature /FeatureName:TelnetClient测试端口:telnet