File tree Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Expand file tree Collapse file tree 2 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,13 @@ export default defineConfig({
5454 { text : 'Kubernetes部署' , link : '/manual/deployment/mmc_deploy_kubernetes' }
5555 ]
5656 } ,
57+ {
58+ text : '社区提供的部署方案' ,
59+ collapsed : false ,
60+ items : [
61+ { text : 'Linux一键脚本部署' , link : '/manual/deployment/community/linux_one_key' }
62+ ]
63+ } ,
5764 {
5865 text : '功能介绍' ,
5966 collapsed : false ,
Original file line number Diff line number Diff line change 1+ # MaiBot Linux 一键脚本部署
2+
3+ 作者:Astriora
4+
5+
6+
7+ ## 使用脚本部署 MaiBot
8+
9+ ## 安装wget
10+
11+ ::: code-group
12+
13+ ``` bash [apt]
14+ sudo apt install wget
15+ ```
16+
17+ ``` bash [yum]
18+ sudo yum install wget
19+ ```
20+
21+ ``` bash [dnf]
22+ sudo dnf install wget
23+ ```
24+
25+ ``` bash [pacman]
26+ sudo pacman -S wget
27+ ```
28+
29+ ``` bash [zypper]
30+ sudo zypper install wget
31+ ```
32+
33+ :::
34+
35+ ## 下载脚本 & 部署
36+
37+ ``` bash
38+
39+
40+ wget -O maibot-install.sh https://raw.githubusercontent.com/Astriora/Antlia/refs/heads/main/Script/MaiBot/MaiBot-install.sh &&
41+ bash maibot-install.sh
42+
43+
44+ ```
45+
46+
47+ ## 启动
48+ ``` bash
49+ source ~ /.bashrc # 第一次需要更新shell
50+ ```
51+ ``` bash
52+ maibot
53+ ```
You can’t perform that action at this time.
0 commit comments