LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 06-04-2005, 09:03 PM   #1
worldgnat
Member
 
Registered: Oct 2004
Posts: 337

Rep: Reputation: 30
BitTorrent - what to run?


Ok, this is going to sound really stupid - I installed the bittorrent rpm from www.bittorrent.com on my suse 9.2 machine, and I have no idea how to run it. Actually, I'm trying to upgrade to 9.3 via bittorrent. If anyone knows what to run or a good ftp site for suse prof 9.3, please let me know.

-Peter
 
Old 06-04-2005, 09:07 PM   #2
Mega Man X
LQ Guru
 
Registered: Apr 2003
Location: ~
Distribution: Ubuntu, FreeBSD, Solaris, DSL
Posts: 5,339

Rep: Reputation: 65
Type "btdownload<tab>" on a terminal. That will bring up a list of the possible ways to start your torrent, depending if you have gtk support or something like that. I use the ncurses interface only
 
Old 06-04-2005, 10:22 PM   #3
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
BitTorrent in Linux uses the Python programming langauge. Type find / -iname 'bt*.py' 2>/dev/null. This will find bittorrent files. The ones that has gui in the name is for gui but it needs wxWidgets (wxGTK) and wxPython. The python based BitTorrent is for only downloading one torrent file at time. If you want to use a program that is much easier use Azureus. Its a Java based program that is easy to use.
 
Old 06-06-2005, 06:20 PM   #4
worldgnat
Member
 
Registered: Oct 2004
Posts: 337

Original Poster
Rep: Reputation: 30
Thanks for the help. Actually, I'm writing this to you from Torrented Suse 9.3.

-Peter
 
Old 06-13-2005, 10:46 AM   #5
ambelos
Member
 
Registered: Nov 2003
Location: npr, fl, usa
Distribution: suse 9.3 / xp pro sp2
Posts: 226

Rep: Reputation: 30
hey guys

here is an error i am getting when trying to download mercury via bt:

jpolitis@dhcp22-32:~> btdownloadcurses.py 1708_Linux_VM.torrent
Traceback (most recent call last):
File "/usr/bin/btdownloadcurses.py", line 25, in ?
from BitTorrent.download import Feedback, Multitorrent
ImportError: No module named BitTorrent.download
jpolitis@dhcp22-32:~> btdownload
btdownloadcurses.py btdownloadgui.py btdownloadheadless.py
jpolitis@dhcp22-32:~> btdownloadheadless.py 1708_Linux_VM.torrent
Traceback (most recent call last):
File "/usr/bin/btdownloadheadless.py", line 24, in ?
from BitTorrent.download import Feedback, Multitorrent
ImportError: No module named BitTorrent.download
jpolitis@dhcp22-32:~>


what does this mean? how do i fix this?

thnx
gyro-x
 
Old 06-13-2005, 12:41 PM   #6
sploit
LQ Newbie
 
Registered: Dec 2004
Posts: 24

Rep: Reputation: 15
have you tried:
Code:
$ btdownloadgui.py 1708_Linux_VM.torrent
Or just launch btdownloadgui.py and a pop-up box should come up to select the .torrent file.
 
Old 06-13-2005, 01:20 PM   #7
ambelos
Member
 
Registered: Nov 2003
Location: npr, fl, usa
Distribution: suse 9.3 / xp pro sp2
Posts: 226

Rep: Reputation: 30
jpolitis@dhcp22-32:~> btdownloadgui.py 1708_Linux_VM.torrent
Traceback (most recent call last):
File "/usr/bin/btdownloadgui.py", line 27, in ?
import gtk
ImportError: No module named gtk
jpolitis@dhcp22-32:~>

either way, i get an error and it doesn't work.


gyro-x
 
Old 06-29-2005, 12:02 AM   #8
colesen101
LQ Newbie
 
Registered: Feb 2004
Posts: 3

Rep: Reputation: 0
I just downloaded and installed the latest version of the bittorent rpm from the bittorrent site on my SuSE 9.3 box and got this when trying it out

/usr/bin> btdownloadgui.py
Traceback (most recent call last):
File "/usr/bin/btdownloadgui.py", line 17, in ?
from BitTorrent import locale_root
ImportError: No module named BitTorrent
/usr/bin>

I got past the problem by doing this
cd /usr/lib/python2.4/site-packages
cp -a /usr/lib/python2.3/site-packages/BitTorrent
cp -a /usr/lib/python2.3/site-packages/khashmir

as Python on my box is v2.4 while bt supports v2.3.
 
Old 06-29-2005, 11:32 AM   #9
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
Quote:
Originally posted by colesen101
cd /usr/lib/python2.4/site-packages
cp -a /usr/lib/python2.3/site-packages/BitTorrent
cp -a /usr/lib/python2.3/site-packages/khashmir
colesen101, is that typo?? it doesn't seem like those two copy commands are actually copying anything AFAIK...


Last edited by win32sux; 06-29-2005 at 11:35 AM.
 
Old 06-29-2005, 11:35 AM   #10
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
were you making a copy of file BitTorrent called khashmir??


Last edited by win32sux; 06-29-2005 at 11:38 AM.
 
Old 06-29-2005, 12:23 PM   #11
mrcheeks
Senior Member
 
Registered: Mar 2004
Location: far enough
Distribution: OS X 10.6.7
Posts: 1,690

Rep: Reputation: 52
you need to install wxgtk and gtk of course for bittornado/bittorrent.
 
Old 06-30-2005, 12:07 AM   #12
colesen101
LQ Newbie
 
Registered: Feb 2004
Posts: 3

Rep: Reputation: 0
Sorry, missed the dot
cd /usr/lib/python2.4/site-packages
cp -a /usr/lib/python2.3/site-packages/BitTorrent .
cp -a /usr/lib/python2.3/site-packages/khashmir .
Notice the trailing dot and the space in front it.

If you don't like the dot then this will work too
cp -a /usr/lib/python2.3/site-packages/BitTorrent /usr/lib/python2.4/site-packages/
cp -a /usr/lib/python2.3/site-packages/khashmir /usr/lib/python2.4/site-packages/

or alternatively this
cp -a /usr/lib/{python2.3,python2.4}/site-packages/BitTorrent
cp -a /usr/lib/{python2.3,python2.4}/site-packages/khashmir

All that the above does is (deep) copy a directory from one place to another.

Or you could symlink
ln -s /usr/lib/python2.3/site-packages/BitTorrent
ln -s /usr/lib/python2.3/site-packages/khashmir
but I think symlinking may not be a good idea because some time from now when memory of these symlinks has slipped but bt for 2.4 is now available (assuming it will be) then an install of bt for 2.4 might just put the contents of those directories in those of 2.3 if the directory names are still the same - leaving a mess - unless the symlinks are deleted first.

khashmir is correct. Initially I did not copy it but bt complained.
 
Old 06-30-2005, 04:05 PM   #13
worldgnat
Member
 
Registered: Oct 2004
Posts: 337

Original Poster
Rep: Reputation: 30
That worked perfectly, I torrented 9.3, but unfortunately I didn't like it that much. Anyway, on FC4 it works perfectly after typing cp -a /usr/lib/python2.3/BitTorrent. (Thanks for that by the way). Thanks for all the help everyone.

-Peter
 
Old 07-17-2005, 09:04 AM   #14
mikeshn
Member
 
Registered: Feb 2002
Posts: 586

Rep: Reputation: 30
I got the error message, on Fedora Core 4.
How to fix it?


Traceback (most recent call last):
File "/usr/bin/btdownloadcurses.py", line 25, in ?
from BitTorrent.download import Feedback, Multitorrent
ImportError: cannot import name Feedback
 
Old 07-24-2005, 12:53 AM   #15
kuurus_n
LQ Newbie
 
Registered: Jul 2005
Posts: 2

Rep: Reputation: 0
Solution for Fedora...

cd /usr/lib/python2.4/site-packages
cp -a /usr/lib/python2.4/site-packages/BitTorrent /usr/lib/python2.3/site-packages/
cp -a /usr/lib/python2.4/site-packages/khashmir /usr/lib/python2.3/site-packages/

This fixes the prob.

Thanks for the solution those who posted it...
 
  


Reply



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
bittorrent 3.2.1 won't run and bonus query krome Linux - Software 0 01-30-2005 08:17 PM
bittorrent JROCK1980 Linux - Software 2 04-09-2004 08:05 AM
BitTorrent Tracker Behaving Strangely When Run Through Linux Iptables Firewall tvynr Linux - Networking 0 04-07-2004 03:54 PM
is there anyone using bittorrent bittorrent-shadowsclient-5.8.3 moonloader Linux - Software 0 01-12-2004 05:35 AM
How to install and run BitTorrent on linux Mandrake 9.2 IronMaiden Linux - Software 3 12-05-2003 06:35 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:22 PM.

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