Home | Bug Tracker | Wiki | Mailing Lists | Forums | Download  
   Username:  Password:  Signup
   
   Main Menu
· Home
   Please Support Parsix
We pay for our project server and bandwidth costs; Spending lots of hours to come up with a stable and usable operating system you can enjoy and save money! So do not forget to give back. Thank you.

Donations '10: $0,00
   Get Parsix
· SF.Net Mirrors
· Linux Freedom
· Bittorrent
   Search
   Bug Report
Help us to fix problems and defects. Please report bugs here.
   Online Users
Admins
No Online Admins
Members:Online
Members:Members:0
Guests:Guests:36
Total:Total:36
Online Members
No online members
   Sponsored Links



Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Author Message
st0.0pidn0.0bieOffline
Post subject: [SOLVED] parsix via bit torrent?  PostPosted: Oct 22, 2008 - 04:42 PM



Joined: Jun 26, 2008
Posts: 58

Status: Offline
link to torrent:

http://linuxtracker.org/index.php?page=torrent-details&id=4664f44f67f73130e84edf7f6f30bc243d6a13a6

that's the i386 version.

are there any plans to release parsix as torrents? it could take a load off your main server, if you are having trouble with hosting costs/bandwidth.

it would also be a way for people to donate that don't have any money to spare.

just a thought Idea


Last edited by st0.0pidn0.0bie on Oct 30, 2008 - 12:28 AM; edited 2 times in total
 
 View user's profile Send private message  
Reply with quote Back to top
ergheziOffline
Post subject: RE: parsix via bit torrent?  PostPosted: Oct 22, 2008 - 10:47 PM



Joined: Aug 11, 2008
Posts: 37

Status: Offline
torrent is a good idea ! i cant download parsix until now! please help:(
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
cmostOffline
Post subject: RE: parsix via bit torrent?  PostPosted: Oct 23, 2008 - 01:57 AM
Forum Moderator
Forum Moderator


Joined: Feb 19, 2008
Posts: 205
Location: Cincinnati, Ohio
Status: Offline
It's certainly easy enough to build a torrent and host the ISO for a few days until enough peers form.

This great article by Mayank Sharma (linux.com) explains how:

The BitTorrent protocol has revolutionized peer-to-peer (P2P) file sharing. It works by enabling users to download fragments of a large file from other users simultaneously, rather than waiting for one file to complete, thus speeding the download process. As a result, many popular Linux distributions have started releasing their ISOs through torrents, many of which you can find at LinuxTracker. But if your favourite distro doesn't offer a release torrent, why not make your own?

Making a torrent isn't rocket science, but it requires a little more effort than moving the file into a sharable folder -- a method that most P2P software relies on. First, create a directory, then populate it with all the distribution ISOs. It's also a good idea to include a text file that has the MD5 checksums, to let those who download the software check the integrity of the ISO. Also include any other important readme or instruction files. You also need a tracker, which coordinates the activity of the transfer and keeps track of the packet flows. The tracker is also referred to as the announce URL. For example, LinuxTracker's announce URL is http://linuxtracker.org/announce.php.

Let's walk through creating a torrent of the GParted live CD. The directory looks like this:

-GParted_LiveCD_0.2.4-3
-gparted-livecd-0.2.4-3.iso
-md5sum
-readme.txt

Apart from the ISO file, you include a file that has the md5sum of the ISO, as well as a readme file that has some information about the distribution and links to its home page, FAQ, and forum boards.

You can create the actual torrent either through the command line with CreateTorrent, or through a graphical user interface (GUI) with MakeTorrent.

CreateTorrent

CreateTorrent is a small utility you can use to create torrents from the command line. Download the tarball, untar it, and then follow the ./configure, make, and sudo make install procedures to install the utility. The program depends on OpenSSL and some header files that are included in the libssl and libssl-dev packages. If you're using Ubuntu, just use apt-get to install openssl, libssl, and libssl-dev.

The utility lacks a manual page, but createtorrent -h lists its usage and options. You can specify the announce URL, the port through which BitTorrent data flows, the number of bytes each piece of the file is split into, the path to the file on the server, and any comments to the torrent.

Use this code to create a torrent for http://linuxtracker.org:

:-~/UPLOAD$ createtorrent -a http://linuxtracker.org/announce.php UPLOAD/GParted_LiveCD_0.2.4-3/ GParted_LiveCD_0.2.4-3.torrent
ignoring UPLOAD/GParted_LiveCD_0.2.4-3//.
ignoring UPLOAD/GParted_LiveCD_0.2.4-3//..
adding UPLOAD/GParted_LiveCD_0.2.4-3//gparted-livecd-0.2.4-3.iso
adding UPLOAD/GParted_LiveCD_0.2.4-3//md5sum
adding UPLOAD/GParted_LiveCD_0.2.4-3//readme.txt

This gives you a GParted_LiveCD_0.2.4-3.torrent file under the UPLOAD directory, from where you ran the createtorrent command.

BTMakeTorrentGUI

The BTMakeTorrentGUI utility has replaced the btcompletedir utility as of version 4.0 of the BitTorrent client from Bram Cohen, the creator of the BitTorrent protocol. The latest version for Linux is 4.4.0, and it's available as both an RPM and a Debian package. Make sure to remove your existing BitTorrent client before installing the new one by using either sudo dpkg -i BitTorrent-Stable.deb or su -; rpm -i BitTorrent-Stable.rpm.

Once installation is complete, running bittorrent from the command line should bring up the torrent GUI. Navigating to File -> Make New Torrent or pressing Ctrl-N should pop open the torrent file creator. Click on Choose and navigate to the file or directory that you want included in the torrent -- in this case, UPLOAD/GParted_LiveCD_0.2.4-3. Select a Piece Size, which defaults to 256KB, and specify the tracker -- in this case, http://linuxtracker.org/announce.php. Add a comment if you like. Clicking on Make assembles the torrent; once the process completes, you can start seeding directly by clicking on the Start Seeding button. Otherwise, click on OK to return to the torrent creator.

That's it. Now that you have the torrent file, you can share it with your peers. Upload it to the site whose tracker you specified; LinuxTracker allows only registered users to upload torrents. And don't forget to seed your own torrent!

_________________
AMD Athlon 64 X2 3800+
4096 MB DDR 400MHz RAM
nVidia GeForce 9400 GT w 512 MB DDR2
Parsix GNU/Linux (built from Debian Testing and a dash of Sid)
Kernel 2.6.29 amd64
Compiz-Fusion Git
 
 View user's profile Send private message  
Reply with quote Back to top
st0.0pidn0.0bieOffline
Post subject:   PostPosted: Oct 23, 2008 - 08:16 PM



Joined: Jun 26, 2008
Posts: 58

Status: Offline
thanks for the info, cmost. i wont be able to seed anything initially, as my upspeed is average only a mere 300kbps.
hopefully someone else could set this up who has high speed internet.

it seems the files hosted at sourceforge are unavailable since yesterday:
Quote:

Not Found

The requested URL /sourceforge/xfardic/parsix_1.5r2-i386.iso was not found on this server.
Apache/2.2.3 (CentOS) Server at master.dl.sourceforge.net Port 80


this is where a torrent would really come in handy.
 
 View user's profile Send private message  
Reply with quote Back to top
maxpowerOffline
Post subject:   PostPosted: Oct 29, 2008 - 02:27 PM



Joined: Oct 28, 2008
Posts: 5
Location: Tampa, FL
Status: Offline
I couldn't get Parsix from sourceforge last night, but did find the torrent to download. Thank you to whoever put the torrent together. I've got a pretty good connection so I will keep it seeding.
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
st0.0pidn0.0bieOffline
Post subject:   PostPosted: Oct 30, 2008 - 12:20 AM



Joined: Jun 26, 2008
Posts: 58

Status: Offline
awesome, thanks. i'll seed for the duration.
link to torrent:

http://linuxtracker.org/index.php?page=torrent-details&id=4664f44f67f73130e84edf7f6f30bc243d6a13a6
 
 View user's profile Send private message  
Reply with quote Back to top
cmostOffline
Post subject:   PostPosted: Oct 30, 2008 - 12:45 AM
Forum Moderator
Forum Moderator


Joined: Feb 19, 2008
Posts: 205
Location: Cincinnati, Ohio
Status: Offline
I can also seed! Thanks!

_________________
AMD Athlon 64 X2 3800+
4096 MB DDR 400MHz RAM
nVidia GeForce 9400 GT w 512 MB DDR2
Parsix GNU/Linux (built from Debian Testing and a dash of Sid)
Kernel 2.6.29 amd64
Compiz-Fusion Git
 
 View user's profile Send private message  
Reply with quote Back to top
mandog
Post subject:   PostPosted: Oct 30, 2008 - 01:12 AM
Forum Moderator
Forum Moderator


Joined: Jan 25, 2008
Posts: 368
Location: Thetford UK
Although I don't need it I can also seed to help others.

_________________
Parsix running AMD 6000 x2 64bt, Asus mother board 8gb ram, Nvidia graphic card 1gb unboard ram, Plextor PX760, EPSON R300, 2x 500gb sata+2x 500gb usb Hardrive, Netgear, 19" DELL monitor 1600X1200 X 75hz Resolution
 
 View user's profile Send private message Send e-mail AIM Address ICQ Number 
Reply with quote Back to top
GingerOffline
Post subject:   PostPosted: Mar 09, 2009 - 03:16 AM



Joined: Nov 19, 2008
Posts: 12
Location: UK
Status: Offline
64 bit edition, for which I couldn't find a torrent, can now be found here:

http://linuxtracker.org/index.php?page= ... 1d6686b2bc

Please help seed!
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
GingerOffline
Post subject:   PostPosted: Mar 26, 2009 - 06:43 AM



Joined: Nov 19, 2008
Posts: 12
Location: UK
Status: Offline
Parsix 2.0r0 Torrents:

64-bit:

http://linuxtracker.org/download.php?id ... 64.torrent


32-bit:

http://linuxtracker.org/download.php?id ... 86.torrent
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
GingerOffline
Post subject:   PostPosted: Jan 09, 2010 - 08:55 PM



Joined: Nov 19, 2008
Posts: 12
Location: UK
Status: Offline
Added torrents for 3.0r1:

64 bit:

http://linuxtracker.org/download.php?id ... 64.torrent


32 bit:

http://linuxtracker.org/download.php?id ... 86.torrent


Please assist with seeding! Thanks Smile
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
GingerOffline
Post subject:   PostPosted: Feb 02, 2010 - 12:40 AM



Joined: Nov 19, 2008
Posts: 12
Location: UK
Status: Offline
Sorry I had issues with my (non Parsix) machine that was doing the seeding. Will try to rectify this situation and post new torrent links above.... Embarassed
 
 View user's profile Send private message Visit poster's website  
Reply with quote Back to top
Display posts from previous:     
Jump to:  
All times are GMT - 8 Hours
Post new topic   Reply to topic
View previous topic Printable version Log in to check your private messages View next topic
Copyright© 2005-2010 Parsix Project
Contact: webmaster AT parsix DOT org