Armbian固定IP
参考:https://blog.5625.cn/index.php/archives/51/ 版本:Armbian_25.08.0_rockchip_wxy-oect_bookworm_6.12.40_server_2025.08.01 找到 netplan 配置文件 ls /etc/netplan/ sudo cp /etc/netplan/&l…
OECT安装pve踩坑
参考: https://masuc.cn/46113.html https://docs.pxvirt.lierfang.com/zh/installfromdebian.html 1.添加key curl https://mirrors.apqa.cn/proxmox/debian/pveport.gpg -o /etc/apt/trusted.…
RustDesk部署 非docker版
下载服务端的包 wget https://github.com/rustdesk/rustdesk-server/releases/download/1.1.11-1/rustdesk-server-linux-amd64.zip 然后解压 unzip rustdesk-server-linux-amd64.zip mv amd64/ rustde…
npm编译 vue devtools
参考:https://blog.csdn.net/weixin_44315181/article/details/131580858 1.下载地址 github地址:https://github.com/vuejs/devtools/tree/v6.5.0 2.编译 1)npm版本是8.5.0(npm -v查看npm版本) 2)安装Vue-Devt…
npm源管理器nrm
什么是nrm nrm 是一个 npm 源管理器,允许你快速地在 npm 源间切换。 安装nrm npm install -g nrm 1 使用 查看可选的源 nrm ls 1 切换 如果要切换到taobao源,执行命令 nrm use taobao 1 测试速度 nrm test
java通用返回实体类
public class ResponseData<T> { private boolean success; private String message; private T data; public ResponseData(boolean success, String message, T data) { this.succe…
docker的nginx配置过程
启动 docker run -d --name nginx --privileged -p 8000:8000 -p 8091:8091 \ -v /docker/nginx/html/ruoyi-ui:/usr/share/nginx/html/ruoyi-ui \ -v /docker/nginx/html/samr-ui:/usr/share…
鸿蒙微信降级流程
1.设置--》关于手机 ---》软件版本 多次点击 开启 开发者模式 2.开发者选项 ---》 usb调试 ----》 关闭 监控adb安装应用 ---》选择usb配置 usb以太网 3.安装 adb devices adb install -r -d weixinXXXXXXXXX.apk
windows激活
https://uuzi.net/activate-windows-10-11-without-key/ irm https://massgrave.dev/get | iex
js中阻塞线程方法
async function executeWithDelay() { console.log("开始"); await sleep(2500); // 等待 2.5 秒 console.log("2.5 秒后执行的代码"); } executeWithDelay(); function sleep(ms) …