Archive for the ‘Peer2Peer’ Category.

Run rtorrent as a daemon in Arch Linux

Archlinux-icon.png

Copy this into /etc/rc.d/rtorrent and add the daemon to /etc/rc.conf. Make sure you change USER in the script below to your user name

#!/bin/bash

. /etc/rc.conf
. /etc/rc.d/functions

case "$1" in
  start)
    stat_busy "Starting rtorrent"
    su rtorrent -c 'screen -d -m rtorrent' &> /dev/null
    if [ $? -gt 0 ]; then
      stat_fail
    else
      add_daemon rtorrent
      stat_done
    fi
    ;;
  stop)
    stat_busy "Stopping rtorrent"
    killall -w -s 2 /usr/bin/rtorrent &> /dev/null
    if [ $? -gt 0 ]; then
      stat_fail
    else
      rm_daemon rtorrent
      stat_done
    fi
    ;;
  restart)
    $0 stop
    sleep 1
    $0 start
    ;;
  *)
    echo "usage: $0 {start|stop|restart}"
esac
exit 0

Source:
http://forums.gentoo.org/viewtopic-t-600362.html
http://wiki.archlinux.org/index.php/RTorrent#rtorrent_Daemon_with_screen

http://bbs.archlinux.org/viewtopic.php?id=53395

How to make sure Deluge’s blocklist stays up to date

deluge.png

I’m a fan of blocklists, I’ll admit.  They’re not a perfect solution to blocking out unwanted IP addresses, but every little bit helps.  Below I’ll show you how to use the Deluge Bit Torrent Client and Cron to ensure your blocklist stays up-to-date.

Continue reading ‘How to make sure Deluge’s blocklist stays up to date’ »

Import PeerGuardian Blocklists into Ktorrent & Deluge

bittorrent.png

Many lovers of PeerGuardian are out there, and some just happen to use linux. Luckily we have bit torrent clients that support PeerGuardian blocklists directly in the client, rather than affecting our entire internet connection. This is a rather simple prodcedure in both cases of Ktorrent and Deluge.

Note: Blocklists are not a fool proof protection and can come with their own problems. Please read up on the effectiveness of blocklists. That being said, every little bit helps.

Continue reading ‘Import PeerGuardian Blocklists into Ktorrent & Deluge’ »

Peer to Peer in Linux

pirate.gif

So you’ve made the switch to Linux but would still like to access Limewire, emule, bit torrent and/or Soulseek networks? Well you’re in luck as Linux has client applications for all of these networks and some mighty fine ones at that, along with access to some pretty nice legally free networks.

Continue reading ‘Peer to Peer in Linux’ »

How to Encrypt Bit Torrent Traffic With Ktorrent and Azurues

Azureus.png

More and more ISP’s are limiting throttling BitTorrent traffic on their networks. By throttling BitTorrent traffic the speed of BitTorrent downloads decrease, and high speed downloads are out of the question.

The list of ISP’s that limit BitTorrent traffic, or plan to do so is growing every day, and according to the BBC, the ‘bandwidth war’ has begun.

Are you not sure if your traffic is being throttled Check the list of bad ISP’s.

But there is a solution. Encrypting your torrents will prevent throttling ISP’s from shaping your traffic. I will explain how to enable encryption in Azureus, ktorrent, Deluge the three most popular torrent clients in Linux.

Continue reading ‘How to Encrypt Bit Torrent Traffic With Ktorrent and Azurues’ »