Transmission Web Control 下载及安装教程
transmission-web-control maintained fork of ronggang/transmission-web-control [这里是图片001] 项目地址: https://gitcode.com/gh_mirrors/tra/transmission-web-control
1、项目介绍
Transmission Web Control 是一个自定义的 Web UI,用于增强 Transmission 客户端的 Web 操作能力。该项目原本由 ronggang 编写,现由社区维护。它支持 Transmission 2.40 及以上版本(RPC 版本: 14 及以上),并提供了丰富的功能,如拖放添加种子、在线修改设置、查看统计信息等。
2、项目下载位置
你可以通过以下链接下载 Transmission Web Control 项目:
Transmission Web Control GitHub 仓库
3、项目安装环境配置
在安装 Transmission Web Control 之前,请确保你的系统满足以下环境要求:
- 操作系统:Linux、macOS 或 Windows
- Transmission 版本:2.40 及以上
- 浏览器支持:Chrome 63、Firefox 67、Edge 79、Safari 11.1、Opera 50 及以上
环境配置示例
以下是一个典型的 Linux 环境配置示例:
-
安装 Transmission:
sudo apt-get update sudo apt-get install transmission-daemon
-
启动 Transmission:
sudo service transmission-daemon start
-
检查 Transmission 版本:
transmission-daemon --version
4、项目安装方式
步骤 1:克隆项目
首先,使用 Git 克隆 Transmission Web Control 项目到本地:
git clone https://github.com/transmission-web-control/transmission-web-control.git
步骤 2:安装依赖
进入项目目录并安装依赖:
cd transmission-web-control
corepack enable
corepack prepare --activate pnpm
pnpm install
步骤 3:启动项目
启动 Transmission Web Control:
pnpm run start
步骤 4:配置 Transmission
将 Transmission Web Control 的 Web UI 路径配置到 Transmission 中。编辑 Transmission 配置文件(通常位于 /etc/transmission-daemon/settings.json
),将 "rpc-whitelist"
设置为 "*.*.*.*"
,并确保 "web-ui-enabled"
为 true
。
{"rpc-whitelist": "*.*.*.*","web-ui-enabled": true
}
步骤 5:重启 Transmission
重启 Transmission 以应用更改:
sudo service transmission-daemon restart
5、项目处理脚本
Transmission Web Control 提供了一些处理脚本,用于自动化任务。以下是一个简单的示例脚本,用于自动添加种子文件:
#!/bin/bash# 自动添加种子文件
transmission-remote -a /path/to/your/torrent/file.torrent
你可以将此脚本保存为 add_torrent.sh
,并赋予执行权限:
chmod +x add_torrent.sh
然后,你可以通过以下命令运行脚本:
./add_torrent.sh
通过以上步骤,你应该能够成功下载并安装 Transmission Web Control,并开始使用其增强的 Web UI 功能。
transmission-web-control maintained fork of ronggang/transmission-web-control [这里是图片003] 项目地址: https://gitcode.com/gh_mirrors/tra/transmission-web-control
)