
华为 AI Shell 免费容器,4 核 CPU、8 GB 内存、100 GB 存储,支持 root 权限,内置 GLM-5.1、DeepSeek 等模型。
采用鲲鹏 ARM64 架构,配置4 核 CPU、8GB 内存、100GB 磁盘。
Beta阶段:容器限用6小时自动销毁,重启换新,支持提前延时。保活方案见下面。
免费模型:GLM-5、GLM-5.1、DeepSeek-R1-250528、DeepSeek-V3、DeepSeek-V3.2 和 DeepSeek-V3.1-Terminus
容器体验地址:https://developer.huaweicloud.com/aishell.html
保活方案:
6 小时到期之后可以无限续期,使用 Tampermonkey 脚本自动续期!一次可以拉 3 个独立会话!
使用场景自己研究~可以利用这个去做迁移数据等~无公网 IP,启动之后是 AI 对话界面,如果想直接使用 Shell 需要连续按二次 Ctrl+C 即可!
下面教大家使用 cloudflare 隧道实现 SSH 或 SFTP 连接~
一键脚本:wget -N –no-check-certificate https://baixiong.ss.bscstorage.com/setup_cloudflared_ssh.sh && chmod +x setup_cloudflared_ssh.sh && bash setup_cloudflared_ssh.sh
保活脚本:
// ==UserScript==
// @name Refresh Auto Click
// @namespace https://qm.qq.com/q/sxWCl2a9H2
// @version 1.0
// @description 每 2 小时自动执行一次点击
// @author Baixiong
// @match https://devstation.connect.huaweicloud.com/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
// 执行点击
function autoClick() {
console.log ("[AutoClick]" + new Date ().toLocaleString () + "开始执行...");
const el = document.getElementsByClassName("bottom-content")[0]?.childNodes[1];
if (el) {
el.click();
console.log ("[AutoClick] 点击成功");
} else {
console.log ("[AutoClick] 未找到目标元素");
}
}
// 页面加载完成后等待 12 秒执行第一次
window.addEventListener('load', () => {
setTimeout(() => {
autoClick();
// 之后每 2 小时执行一次
setInterval(autoClick, 2 60 60 * 1000);
}, 12000);
});
})();