Skip to content

🧪 Beta 版发布

用于查看 MSM dev 分支的每日构建发布记录。Beta 版可能包含未完全验证的功能,请勿直接用于生产环境。


🧪 最新 Beta 版本

当前 Beta 版本:beta-1.0.37
发布时间:2026-04-28 11:42:22 CST

🐛 修复(Fixed)

  • 修复 OpenRC 重启与更新自重启功能异常

📝 备注(Notes)

  • 0.x 升级到 1.x 需重装或重置安全并重新下载 DNS
📋 构建信息
  • 发布通道: beta(Beta 版)
  • 源提交: 8046435
  • 提交信息: 0.x版本升级到1.x必须 重装或者升级后重置安全重新下载dns服务,切记很重要,dns服务都变了
  • 提交作者: msm
  • 提交时间: 2026-04-28 11:42:22 CST

📚 历史 Beta 版本

下面仅列出最近几个 Beta 版本的主要变更,完整变更记录以 GitHub Release 为准。

beta-1.0.14(2026-03-31 16:29) Beta 版

新增 / 优化

  • 统一 MosDNS 恢复写操作重试策略
  • 调整组件更新 GitHub 下载优先级

问题修复

  • 修复 MosDNS 未启用列表插件回写失败
  • 修复许可证重激活因本地材料损坏失败
  • 修复 MosDNS 列表插件就绪前的回写问题

注意事项

  • 0.x 升级 1.x 必须重置或重装 DNS 服务

⚠️ 使用说明

  1. Beta 版标签格式:beta-x.x.x
  2. Docker 标签格式:msmbox/msm:beta-x.x.xmsmbox/msm:beta-latest
  3. 若需稳定环境,请使用稳定版发布

一键安装

bash
# 使用 curl(sudo)
curl -fsSL https://raw.githubusercontent.com/msm9527/msm-wiki/main/install_beta.sh | sudo bash
# root 用户
curl -fsSL https://raw.githubusercontent.com/msm9527/msm-wiki/main/install_beta.sh | bash

# 或使用 wget(sudo)
wget -qO- https://raw.githubusercontent.com/msm9527/msm-wiki/main/install_beta.sh | sudo bash
# root 用户
wget -qO- https://raw.githubusercontent.com/msm9527/msm-wiki/main/install_beta.sh | bash

国内加速(可选)

如果直连 GitHub 较慢,推荐直接使用 Beta 国内镜像脚本直链:

bash
# Beta 国内镜像脚本(等价于 install_beta_cn.sh)
# curl(sudo)
curl -fsSL https://msm.19930520.xyz/dl/beta/install.sh | sudo bash
# root 用户
curl -fsSL https://msm.19930520.xyz/dl/beta/install.sh | bash

# wget(sudo)
wget -qO- https://msm.19930520.xyz/dl/beta/install.sh | sudo bash
# root 用户
wget -qO- https://msm.19930520.xyz/dl/beta/install.sh | bash

https://msm.19930520.xyz/dl/beta/install.sh 为 Beta 国内镜像脚本直链,和仓库中的 install_beta_cn.sh 同步。

系统自带工具小贴士:Debian/Ubuntu/Alpine 最小镜像通常预装 wget 而不一定有 curl;CentOS/RHEL/Fedora 常见预装 curl;macOS 预装 curl。缺少对应工具时可先用包管理器安装(如 apt-get install curlyum install wget)。