eATM

使用acme.sh自动申请/续期ssl证书

#安装 curl https://get.acme.sh | sh #可能需要使用一个邮箱来注册 acme.sh –register-account -m xxxxxxxxxx@gmail.com #–webroot使用网站根目录方式验证 # -d 指

cups相关

CUPS利用gutenprint生成ppd文件 命令查看所有支持的型号: cups-genppd.5.3 -M 生成指定型号的PPD文件到当前目录: cups-genppd.5.3 -p . “escp2-l130” https:/

linux shell函数

#!/bin/bash #文件:.easyshell.sh #放到/root目录 #在~/.bashrc文件中中插入一行 #source ~/.easyshell.sh #shell中执行,即时生效 #source ~/.bashrc #服务 #srv s

openwrt交叉编译

下载openwrt sdk https://mirror-03.infra.openwrt.org/releases/23.05.3/targets/x86/64/openwrt-sdk-23.05.3-x86-64_gcc-12.3.0_musl.Lin

openwrt编译单个包

下载配置交叉编译链工具 下载对应版本与平台的toolchain:https://mirror-03.infra.openwrt.org/releases/23.05.3/targets/x86/64/ 配置环境变量~/.bashrc #在.bashrc中找

Windows文件夹路径

发送到 %USERPROFILE%AppDataRoamingMicrosoftWindowsSendTo 开始菜单 C:ProgramDataMicrosoftWindowsStart Menu %USERPROFILE%AppDataRoamingMi

visual studio 2022/2019批量生成cmake项目

#BuildAll.bat #这里面的路径,是各个配置中的生成目录,是由CMake生成好的配置 @echo off chcp 65001 > NULL echo build lib_x86_Debug CMake.exe –build “E:\ea

git常用命令

拉取子模块-已有仓库 git submodule update –init –recursiv 拉取子模块-首次克隆时​ git clone –recursive XXX