LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-07-2010, 12:39 PM   #31
JamesGT
Member
 
Registered: Oct 2009
Location: St. Louis, MO, USA
Distribution: Slackware64 Live
Posts: 300

Rep: Reputation: 51

+1 vuze (Formerly Azureus)
 
Old 09-07-2010, 12:39 PM   #32
fancylad
Member
 
Registered: Mar 2008
Distribution: slackware
Posts: 175

Rep: Reputation: 19
transmission-daemon is the best!
 
Old 09-07-2010, 01:01 PM   #33
igadoter
Senior Member
 
Registered: Sep 2006
Location: wroclaw, poland
Distribution: many, primary Slackware
Posts: 2,717
Blog Entries: 1

Rep: Reputation: 625Reputation: 625Reputation: 625Reputation: 625Reputation: 625Reputation: 625
@fancylad
Transmission runs as a daemon? I don't know that. Thank's.
 
Old 09-07-2010, 01:02 PM   #34
wadsworth
Member
 
Registered: Aug 2007
Distribution: Slackware64 13.37
Posts: 215

Rep: Reputation: 65
Here's a couple off-the-beaten-path clients:

lftp has had a built-in torrent client since version 4.0.0

kget includes a torrent plugin.


But I'm usually just another rtorrent+screen user.
 
Old 09-07-2010, 08:21 PM   #35
gilead
Senior Member
 
Registered: Dec 2005
Location: Brisbane, Australia
Distribution: Slackware64 14.0
Posts: 4,141

Rep: Reputation: 168Reputation: 168
Quote:
Originally Posted by fancylad View Post
transmission-daemon is the best!
I like transmission-daemon too - I just drop torrent files in a directory, they get picked up and the files download. Simple...
 
Old 09-08-2010, 10:19 AM   #36
dimm0k
Member
 
Registered: May 2008
Location: Brooklyn ZOO
Distribution: Slackware64 14.2
Posts: 564

Rep: Reputation: 56
Quote:
Originally Posted by JamesGT View Post
+1 vuze (Formerly Azureus)
Just wondering why you use vuze... It was my first ever torrent client and I had used it for a while until I switched. Switched because the updates would give difficulties in starting up the client from time to time until I was fed up dealing with that and while I did like some of the little features in vuze over transmission, I could not be happier. Vuze always ran like a sluggish piece of badly written software...
 
Old 09-08-2010, 11:15 AM   #37
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,949
Blog Entries: 8

Rep: Reputation: 203Reputation: 203Reputation: 203
Transmission in all it's un-blingy brilliance.
 
Old 09-08-2010, 12:33 PM   #38
qweasd
Member
 
Registered: May 2010
Posts: 621

Rep: Reputation: Disabled
Quote:
Originally Posted by dimm0k View Post
Did you link to libevent via flags put along the ./configure? I thought I had libevent installed properly so that ./configure for transmission would be able to find it, but until I used the flags it was not.
I swore off polluting default locations with custom-built libraries, so I keep everything as local as possible.

My libevent is configured with
Code:
./configure --prefix=`pwd`/install
My transmission is built like so (IIRC, what really matters is the -levent switch)
Code:
#!/bin/bash

install_path="`pwd`/install"
libevent_path="/usr/local/src/libevent-1.4.14b-stable/install"

export LIBEVENT_LIBS="-L$libevent_path/lib -levent"
export LIBEVENT_CFLAGS="-I$libevent_path/include"

./configure --prefix=$install_path

if [ $? != 0 ] ; then exit ; fi
echo press any key to make... ; read a

make
if [ $? != 0 ] ; then exit ; fi

echo Install into $install_path [Y/n]
read -n 1 a
if [[ $a == "" ]] || [[ $a == "y" ]] || [[ $a == "Y" ]] ; then
    make install
fi
I just finished testing this code with libevent-1.4.14b-stable and transmission-2.04 (both latest stable), everything seems kosher.
 
1 members found this post helpful.
Old 09-08-2010, 01:59 PM   #39
dimm0k
Member
 
Registered: May 2008
Location: Brooklyn ZOO
Distribution: Slackware64 14.2
Posts: 564

Rep: Reputation: 56
Quote:
Originally Posted by qweasd View Post
I swore off polluting default locations with custom-built libraries, so I keep everything as local as possible.

My libevent is configured with
Code:
./configure --prefix=`pwd`/install
My transmission is built like so (IIRC, what really matters is the -levent switch)
Code:
#!/bin/bash

install_path="`pwd`/install"
libevent_path="/usr/local/src/libevent-1.4.14b-stable/install"

export LIBEVENT_LIBS="-L$libevent_path/lib -levent"
export LIBEVENT_CFLAGS="-I$libevent_path/include"

./configure --prefix=$install_path

if [ $? != 0 ] ; then exit ; fi
echo press any key to make... ; read a

make
if [ $? != 0 ] ; then exit ; fi

echo Install into $install_path [Y/n]
read -n 1 a
if [[ $a == "" ]] || [[ $a == "y" ]] || [[ $a == "Y" ]] ; then
    make install
fi
I just finished testing this code with libevent-1.4.14b-stable and transmission-2.04 (both latest stable), everything seems kosher.
Ahh yes, the LIBEVENT variables you set were the ones I needed to get transmission to see where libevent was installed to. I also stray from polluting default locations as much as I can... All these years of using Slackware and I have never thought of using a script to not only store necessary variables needed for a compile, but also to automate the compile process until now! Thanks!
 
Old 09-25-2010, 04:54 PM   #40
Laodiceans
Member
 
Registered: Jan 2006
Distribution: Slackware
Posts: 188

Original Poster
Rep: Reputation: 18
Anyone with deluge 1.3 on slackware 64 13.1?
 
Old 09-26-2010, 03:53 AM   #41
H_TeXMeX_H
LQ Guru
 
Registered: Oct 2005
Location: $RANDOM
Distribution: slackware64
Posts: 12,928
Blog Entries: 2

Rep: Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301Reputation: 1301
I use ctorrent, because it just works, unlike all the fancy GUI BS apps I've tried, all bloated and unstable and have to update all the time. I just want something simple that gets the job done.
 
Old 09-26-2010, 04:13 AM   #42
konsolebox
Senior Member
 
Registered: Oct 2005
Distribution: Gentoo, Slackware, LFS
Posts: 2,248
Blog Entries: 8

Rep: Reputation: 235Reputation: 235Reputation: 235
ctorrent-enhanced + qbittorrent + utorrent
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Cannot install Bit Torrent client Flush client on Sabayon 4.2 dj1120 Linux - Software 0 08-11-2009 03:20 PM
Best torrent client sofakinggreat Linux - Software 10 08-05-2009 09:40 PM
Favorite torrent client? GammaPoint Linux - Software 13 09-25-2007 01:43 PM
torrent client binary_dreamer Linux - Networking 3 01-31-2007 05:50 AM
What is your favorite IRC client? php Linux - General 18 06-18-2002 05:42 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:32 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration