.. | ||
.env | ||
docker-compose.yml | ||
qbittorrent.env | ||
README.md |
Create a Torrent File
On Windows, use qBitTorrent's Torrent Creator
On Linux (CLI), use ctorrent
. (Like: ctorrent -t -s output_file.torrent /path/to/source/dir
)
Update Tracker URLs in Bulk
Requires: qbittorrent-cli
- Configure
qbt
to connect toqbt.jafner.net
.
qbt settings set username admin
qbt settings set url https://qbt.jafner.net
-
Get a list of hashes for torrents of the right category. Example:
qbt torrent list --category ggn --format json | jq ' .[].hash' | tr -d '"' > hashes.txt
-
Replace the old announce URL with the new announce URL for each hash. Example:
for hash in $(cat hashes.txt); do qbt torrent tracker edit $hash "https://tracker.gazellegames.net/7667910c8a2b5446890cbd0ad459d5c3/announce" "https://tracker.gazellegames.net/d0dd178494dd6ffcd9842934a13086e0/announce"; done
This will take a long time.