2026年7月4日
摘要: https://github.com/zabbly/incus 安装密钥 curl -fsSL https://pkgs.zabbly.com/key.asc -o /etc/apt/keyrings/zabbly.asc 7.0 LTS repository sh -c 'cat <<EOF > 阅读全文
posted @ 2026-07-04 19:23 项希盛 阅读(5) 评论(0) 推荐(0)
摘要: 下载系统镜像 https://cdimage.debian.org/cdimage/archive/12.14.0/amd64/iso-cd/debian-12.14.0-amd64-netinst.iso 安装的时候选择手动创建xfs分区,不要swap分区 修改grub 1:开启目录级别的配额 2 阅读全文
posted @ 2026-07-04 19:03 项希盛 阅读(9) 评论(0) 推荐(0)
  2026年6月25日
摘要: apt update apt install lxc lxc-templates bridge-utils lxc-create -n c23 -t download -- -d debian -r bookworm -a amd64 lxc-create -n c24 -t download -- 阅读全文
posted @ 2026-06-25 01:54 项希盛 阅读(8) 评论(0) 推荐(0)
  2025年11月27日
摘要: 把DnspodClient.class.php文件放到class文件夹下面 <?php class DnspodClient { private $secretId; private $secretKey; private $endpoint = "dnspod.tencentcloudapi.co 阅读全文
posted @ 2025-11-27 21:08 项希盛 阅读(18) 评论(0) 推荐(0)
  2025年10月7日
摘要: 首先用Docker环境搭建 docker-compose.yml services: web: container_name: caddy image: caddy network_mode: host volumes: - ./root:/root - ./etc/caddy:/etc/caddy 阅读全文
posted @ 2025-10-07 01:53 项希盛 阅读(66) 评论(0) 推荐(0)
  2025年10月3日
摘要: Go语言非常适合做一些命令行小工具,编译下面这个代码生成golang-mikrotik-replace.exe文件 package main import ( "flag" "fmt" "net/url" "os" "strings" "github.com/go-routeros/routeros 阅读全文
posted @ 2025-10-03 01:54 项希盛 阅读(21) 评论(0) 推荐(0)
  2025年8月22日
摘要: 将当前Linux系统手动DD成Mikrotik系统 第一步:下载Mikrotik的硬盘镜像 wget -O /root/chr.img.xz https://us.feieryun.cn/users/xixi/public/image/mikrotik/chr-7.19.4-legacy-bios. 阅读全文
posted @ 2025-08-22 01:51 项希盛 阅读(84) 评论(0) 推荐(0)
  2025年7月27日
摘要: 先开好接收端 socat -u TCP-LISTEN:12345,fork,reuseaddr SYSTEM:"ffplay -autoexit -f wav -" 可以设置低延迟 socat -u TCP-LISTEN:12345,fork,reuseaddr SYSTEM:"stdbuf -o0 阅读全文
posted @ 2025-07-27 04:30 项希盛 阅读(30) 评论(0) 推荐(0)
  2025年5月21日
摘要: 手动模拟递归DNS解析过程:qwer.firadio.ip-ddns.com 本文档记录了使用Windows nslookup工具手动模拟递归DNS解析过程,从根域名服务器开始,一步步解析qwer.firadio.ip-ddns.com的A记录。 1. 根域名服务器 根据RFC文档,根域名服务器的I 阅读全文
posted @ 2025-05-21 15:20 项希盛 阅读(78) 评论(0) 推荐(0)
  2025年5月8日
摘要: VyOS学习笔记 1:添加IP地址 configure set interfaces ethernet eth1 address 192.168.9.6/24 commit save exit 2:添加静态路由 configure set protocols static route 192.168 阅读全文
posted @ 2025-05-08 22:24 项希盛 阅读(200) 评论(0) 推荐(0)