Transmission 的玩法

参考自以下内容,感谢各位分享者,侵删
https://www.jianshu.com/p/bbd4f6832268?nomobile=yes
https://www.jianshu.com/p/736e3e49ccc5
https://github.com/transmission-remote-gui/transgui#command-line-parameters

问题描述:通过macbook远程管理 linux服务器上的PT任务

Linux上安装transmission

apt-get install transmission-cli
apt-get install transmission-common
apt-get install transmission-daemon

apt-get install transmission-daemon 即可装上cli等,忘记从哪里看到的了

常用状态 查询

使用 service transmission-daemon status 查看当前daemon的运行状态
使用 service transmission-daemon start 启动daemon
使用 service transmission-daemon reload 重新启动daemon
使用 service transmission-daemon stop 停止daemon

配置linux服务器上的tranmission

安装完毕后先中止服务

service transmission-daemon stop

修改的它的配置文件

  vim /etc/transmission-daemon/settings.json

确保相关设置为以下参数以启用远端管理

  "rpc-enable" = true,
  "rpc-password" = yourpassword,
  "rpc-port" = 9091 (or customport),
  "rpc-username" = transmission (or customname),
  "rpc-whitelist" = "*",

在末尾添加watch相关参数以开启自动下载(非末尾项须逗号结尾)

"watch-dir": "PATH/TO/Watch",
"watch-dir-enabled": true

保存并退出,重启Transimission应该就能用Transmission Remote GUI连接上了。
此时可直接通过Remote修改其他数值。

mac上下载Transmission-remote-gui

Without a package manager

This method needs no additional pre-requirement or dependency, just:

  1. Download the app image from release page.
  2. Open the image file to mount the image.
  3. Directly run the application or drag the app icon to your disk / Application folder.

Homebrew-Cask

You need to have Homebrew installed, and Homebrew-Cask enabled, with Homebrew, you can enable Homebrew-Cask by a single command, skip this step if you already got it:

 brew tap caskroom/cask

With Homebrew-Cask, directly execute this command to install Transmission Remote Gui:

brew cask install transmission-remote-gui

下一步需要了解一下 homebrew cask 怎么玩

mac 本地配置

1.链接时填写的用户名和密码是需要和在配置文件中设置的用户名和密码一致
2.在transmission选项中设置下载路径,和缓存大小
3.一般的PT要求禁用DHT网络
4.可以在应用程序选项中更改显示的与语言

备用带宽设置不太清楚功能,需探索一下,目测勾选后下载速度变慢了。。。

其他问题尚未发现,以后记录

你可能感兴趣的:(Transmission 的玩法)