remote-app-

https://ms.sysu.edu.cn/install-root-ca
https://ms.sysu.edu.cn/sites/default/files/ms.local_Root_CA.cer

——————————————————————————————————————————————————————————————————
参考:
https://www.iplaysoft.com/remoteapp-tool.html

mosdns-smartdns

https://github.com/IrineSistiana/mosdns
https://pymumu.github.io/smartdns/

https://github.com/pmkol/easymosdns

gopeed
https://github.com/GopeedLab/gopeed/releases/download/v1.9.3/Gopeed-v1.9.3-windows-amd64-portable.zip

https://fastgit.cc/
https://github.akams.cn/
https://api.oplist.org/

debian-更新证书

1. debian buster 已经过期,apt 源官方改为
# 存档源(解决404关键)
deb http://archive.debian.org/debian/ buster main contrib non-free
deb http://archive.debian.org/debian-security/ buster/updates main contrib non-free
deb http://archive.debian.org/debian/ buster-updates main contrib non-free

2. 更新为http镜像

 sed -i 's|https://|http://|g'  /etc/apt/sources.list

3. 更新 ca 并验证状态


apt install --reinstall ca-certificates
update-ca-certificates --fresh
echo | openssl s_client -connect mirrors.zju.edu.cn:443 2>/dev/null | openssl x509 -noout -text

————–
参考:https://geekdaxue.co/read/baxiang@linux/ne2ilm

小龙虾 OpenClaw 快捷安装记录

安装 node npm nvm ( brew 在mac下)

硬件要求
内存:最低 2GB,建议 4GB 以上
硬盘:至少 20GB 可用空间
系统:macOS 12+、Ubuntu 20.04+、Windows 11(需要 WSL2)
必须有的东西
Node.js 22 或更高版本(安装脚本会自动检测,没有的话会提示你装)
一个 AI 模型的 API Key——这是最关键的。OpenClaw 是调度框架,它自己不带"大脑",你需要接入 ChatGPT、Claude 或 Gemini 的 API 才能让它工作

 

macOS / Linux 一键安装

打开终端(macOS 按 Cmd + 空格 搜索 “Terminal”),粘贴这行命令:

curl -fsSL https://get.openclaw.ai | bash

这个脚本会做三件事:

  1. 检测你有没有 Node.js 22+,没有会自动安装
  2. 下载 OpenClaw 的最新版本
  3. 把 openclaw 命令添加到你的系统 PATH 里

# 1. 必须配置显式用户名(自定义即可)
openclaw config set gateway.auth.username admin

# 2. 必须配置显式密码(自定义即可)
openclaw config set gateway.auth.password 123456

# 3. 重新设置 Token(必须保留)
openclaw config set gateway.auth.token $(openclaw doctor --generate-gateway-token)

# 4. 绑定局域网
openclaw config set gateway.bind lan

# 5. 重启网关生效
openclaw gateway restart

openclaw gateway status·
openclaw --version
# 显示当前token
openclaw   dashboard