LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Debian (https://www.linuxquestions.org/questions/debian-26/)
-   -   need help on bittorrent for console (https://www.linuxquestions.org/questions/debian-26/need-help-on-bittorrent-for-console-237265/)

j.vilon 09-30-2004 07:00 PM

need help on bittorrent for console
 
hi guys
i have the bittorrent for console on debian but i have always 1 error

Quote:

$ btdownloadcurses --max_uploads 15 -url lalalala(i cant put the url here)
These errors occurred during execution:
[00:59:30] error: Too many args - 1 max.
run with no args for parameter explanations
what is the problem here?
anyone know a goob bittorrent for console? and easy:) tks guys

Dead Parrot 09-30-2004 07:41 PM

Quote:

anyone know a goob bittorrent for console?
Perhaps "apt-cache search torrent" will produce something useful?

CroMagnon 09-30-2004 07:49 PM

You have missed a - on the url parameter

btdownloadcurses --max_uploads 15 --url lalala

:)

j.vilon 10-01-2004 10:10 AM

hey :)

Look the same:

btdownloadcurses --max_uploads 15 --url lalaaaa
These errors occurred during execution:
[16:09:37] got bad file info -

maybey it's not this.. :(

CroMagnon 10-01-2004 07:10 PM

OK, you might be better off doing what I do then - download the torrent file to your hard drive and use that as a parameter to btdownloadcurses:

wget http://address/of/the.torrent (use your browser to save the file if you don't have wget)
btdownloadcurses --max_uploads 15 the.torrent

marcheikens 10-02-2004 12:00 AM

Does the url need to be in quotes maybe? Or (depending on the nature of your download) the site requires a referrer equal to the address or hostname of the site itself, so they know you're not getting their torrent linked from someone else's site. Either way I usually use a script to do this after downloading the file:

Code:

#!/bin/sh

btdownloadcurses --max_uploads 15 "$1"

That way you can just save it in your path as btget or something and just invoke it by typing "btget the.torrent". Another plus to this is that if you're interrupted (i.e. you have to restart or the power goes out or something) youc an just restart the torrent without even opening a webbrowser window.

Don't forget to run btdownloadcurses with NO commandline parameters to see what options you can invoke in the script: --max_upload_rate, --display_interval, --min_peers, --report_hash_failures, and more.

marc


All times are GMT -5. The time now is 12:04 PM.