66
Does anybody here use Deluge? How do you get magnet links to work?
(lemmy.dbzer0.com)
1. Posts must be related to the discussion of digital piracy
2. Don't request invites, trade, sell, or self-promote
3. Don't request or link to specific pirated titles, including DMs
4. Don't submit low-quality posts, be entitled, or harass others
📜 c/Piracy Wiki (Community Edition):
💰 Please help cover server costs.
Ko-fi | Liberapay |
When you attempt to open a link in your browser it calls the executable you specify with the link URL as its first argument. Glancing at the deluge torrent source, it seems to want a different command line than the one the web browser provides. You can fix this using a small wrapping script.
thanks, what's the wrapping script and how would I enable it?).
A wrapping script is a small text file that calls the program you want to call. For instance in Linux this would be something like:
You save it as deluge-wrapper.sh. Use chmod to enable the execution bit (
chmod a+x deluge-wrapper.sh
). And then point your browser at it.Be sure to doublecheck that running deluge in this way does open the torrent. You can test it in the command line. It might be --torrent or I might be misreading or misremembering the code from last night. Additionally, it might be deluge-gtk or something.
thank you very much