PDA

View Full Version : ISO torrent...



rrfish72
03-31-2005, 03:19 AM
Is burning a torrent iso the same process as an iso? How does that work? Trying to get 3.8 but don't know about bit torrents. Please help.

chris-harry
03-31-2005, 08:21 AM
bit torrents are kinda like P2P... but not.... ish...

thats how i would explain it,... it just doesnt put much stress on the servers because it also gathers data from other people... and stuff like that... (man, if you havent knoticed, me explaining stuff went out the door)...

whoeverheis
03-31-2005, 04:17 PM
How you download it is immaterial. I downloaded my 3.8 by Bit Torrent. Just download, burn and go. The only problem with torrents is that if there are not a lot of people seeding it could take quite awhile to get it all. I'm on cable and I recall in the past when Knoppix was available as HTTP or FTP it was a half hour download. Since 3.8 was available only on torrent when I got it it took about seven hours :shock:

Dave_Bechtel
03-31-2005, 05:32 PM
--Bittorrent downloads things slightly differently (built-in equivalent to automatic MD5sum checking) but the end result is the same. Burn the ISO only after BT tells you it's done downloading 100%, and you've stopped BT from uploading.

--Here's what I use (don't forget to chmod +x it)

BEGIN /usr/local/bin/btor


#!/bin/bash

#export ftp_proxy=http://10.0.0.1:3128/
#export http_proxy=http://10.0.0.1:3128/

argg=$*
echo $argg >>~/btor-downloads.txt

# BitTorrent download
time btdownloadcurses --url $* \
--max_uploads 2 \
--max_upload_rate 32 \
--minport 6881 \
--maxport 6889 \
--report_hash_failures 1 \
--rerequest_interval 240 \
--display_interval 3

# max upload 64



Is burning a torrent iso the same process as an iso? How does that work? Trying to get 3.8 but don't know about bit torrents. Please help.