Releases: xuanlove/ckms
Releases · xuanlove/ckms
Release list
v1.1.0 - 全平台预编译二进制
CKMS v1.1.0
本次发布包含全部支持平台的预编译二进制文件,开箱即用,无需自行编译。
下载清单
| 平台 | 架构 | 文件 |
|---|---|---|
| Linux | x86_64 (amd64) | ckms-linux_amd64.zip |
| Linux | i386 | ckms-linux_i386.zip |
| Linux | ARM64 (aarch64) | ckms-linux_arm64.zip |
| Windows | x64 | ckms-windows_x64.zip |
| Windows | x86 | ckms-windows_x86.zip |
每个压缩包内含:
ckmsd/ckmsd.exe— KMS 服务端ckms/ckms.exe— KMS 客户端config.ini— 默认配置文件README— 项目文档
快速开始
unzip ckms-linux_amd64.zip
cd ckms-linux_amd64
./ckmsd -P 1688 &
./ckms 127.0.0.1:1688Windows 客户端激活:
slmgr /skms <服务器IP>:1688
slmgr /ato编译说明
- 使用 gcc 13.3.0 编译,已 strip 调试符号
- Linux 版本为动态链接(glibc),Windows 版本为原生 PE
- 默认内置加密(CRYPTO=internal),不依赖 OpenSSL
- 远程管理默认走 HTTP;如需 HTTPS 用
make HAVE_SSL=1重新编译
本次变更
- 重写 README 文档
- 修复跨平台编译:SSL 改为可选(
make HAVE_SSL=1) - 新增
build-release.sh全平台编译脚本