blob: 61feea946e544d9054fbaa69c907e2deed6a200a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Running torrents through socks
## Prereqs:
- qBittorrent
- winswitch (xpra) or qbittorrent-nox
## Install
### Winswitch
see http://winswitch.org/downloads/debian-repository.html
## Autostart (xpra)
# in startup script:
export DISPLAY=:11
xpra start $DISPLAY
tmux start-server
tmux new-window -t tools:1 'ssh -q -D1234 <remote-host>'
tmux new-window -t tools:2 'qbittorrent'
# attach to it:
xpra attach ssh:omo:11
## Autostart (nox)
see https://github.com/qbittorrent/qBittorrent/wiki/Running-qBittorrent-without-X-server
## Lessons learned
- transmission sucks (no proxy support
|