【发布时间】:2014-05-02 16:10:58
【问题描述】:
如何通过 ssh 使用远程 ubuntu 服务器下载 torrent 文件?
我尝试过使用 bittorrent,但是当我关闭 putty 时,下载过程也会停止
【问题讨论】:
-
如果你想使用交互式ascii客户端,你可以使用screen或者byobu来运行它。
标签: ubuntu bittorrent
如何通过 ssh 使用远程 ubuntu 服务器下载 torrent 文件?
我尝试过使用 bittorrent,但是当我关闭 putty 时,下载过程也会停止
【问题讨论】:
标签: ubuntu bittorrent
您可以使用 Bash 中的 & 运算符将进程移至后台。
例如,在后台运行一些 Python 进程:
$ python somefile.py &
因此,您可以通过在末尾添加& 在后台运行您正在使用的任何 torrent 客户端。
【讨论】: