TRSS-Yunzai安装教程

常用链接

QSign

现在开始正式安装 [Linux 安装]

Debian 系

1. 安装常用软件

更新源:

apt update

安装 Redis, FFmpeg, Git, Wget, Curl:

apt install -y redis ffmpeg git wget curl

2. 拉取 TRSS-Yunzai 本体

使用 GitHub:

git clone --depth 1 https://github.com/TimeRainStarSky/Yunzai

使用 Gitee:

git clone --depth 1 https://gitee.com/TimeRainStarSky/Yunzai

3. 进入 Yunzai 目录

cd Yunzai

4. 安装 Node.js

下载并运行 NVM 脚本:

wget -O nvm.sh https://pan.hxh.wiki/down.php/bd08f549965af3f04d857f1cffe84ac1.sh && bash nvm.sh

重新连接 SSH 或执行:

source ~/.bashrc

5. 安装 pnpm

npm install pnpm -g

如果执行速度较慢,可使用以下镜像源:

  • 腾讯云源:
    npm config set registry http://mirrors.cloud.tencent.com/npm/
    
  • 阿里云源:
    npm config set registry https://npm.aliyun.com
    
  • 华为云源:
    npm config set registry https://mirrors.huaweicloud.com/repository/npm/
    

6. 安装依赖

pnpm i

7. 运行 Yunzai

  • 前台运行

    node app
    
  • 后台运行

    pnpm start
    
  • 查看后台运行的 Yunzai 的控制台日志:

    pnpm log
    
  • 关闭后台运行的 Yunzai:

    pnpm stop