netripper

easy torrent seeding

Sep 30th, 2010
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. # step 1: place file to seed somewhere
  2.  
  3. # step 2: create the .torrent file
  4. # -n = file to create torrent for
  5. # -a = announce url, openbittorrent.com is a free open tracker
  6. # -c = comment
  7. # target .torrent file goes at the end
  8. transmissioncli -n hd2-ubuntu_0.2.zip -a http://tracker.openbittorrent.com/announce -c "HD2 Ubuntu v0.2" hd2-ubuntu_0.2.zip.torrent
  9.  
  10. # step 3: seed
  11. # -w = directory where to save the contents of the torrent (or where to find the file, for seeding)
  12. # -v = verify data
  13. # -M = no portmapping (server has dedicated ip, do not use UPnP)
  14. # torrent goes at the end
  15. # (and put it in a screen so that it doesn't stop on disconnect)
  16. screen transmissioncli -w . -v -M hd2-ubuntu_0.2.zip.torrent
Add Comment
Please, Sign In to add comment