![]() |
ubuntu.com - launchpad.net - ubuntu help
|
|
|||||||
Ubuntu 9.10 is out!!!
When downloading Ubuntu 9.10 please consider using bittorrent to get your copy of Ubuntu. The Ubuntu Developers Summit for Lucid Lynx will be held the week of 16-Nov-2009 till 20-Nov-2009 in Dallas, TX USA. Visit the the Ubuntu wiki for more information about UDS and how to participate remotely. |
|
Tutorials & Tips The place to find Ubuntu related Tips & Tricks. |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Way Too Much Ubuntu
![]() Join Date: Nov 2005
Beans: 297
|
HOW TO: Fix Azureus issues
if you have been having issues with Azureus try this, I had azureus installed from the repositories, from one of the ones in the Ubuntu sources generator
but I've had constant problems with it, updates not installing, torrent files not downloading, etc. When running as root even then the updates didnt apply properly Heres what to do, uninstall Azureus completely then reinstall the latest from the azureus website it to a folder with user permissions, Azureus doesn't work well if set with root permissions, and it can auto update, so updates from repos are not needed step 1. Uninstall azureus from repos or delete wherever you installed it if not as a deb file step 2. Download latest azureus from website http://azureus.sourceforge.net/ download the file Azureus_2.4.0.0_linux.tar.bz2 to a location of your chosing step 3. Copy Azureus. sudo cp Azureus_2.4.0.0_linux.tar.bz2 /opt/ or your location of chosing, this can be in your /home/user directory if you like, but this may be a problem if you have multiple users step 3. change to /opt/ with cd /opt/ step 4. Unpack azureus. sudo tar -xvjf Azureus_2.4.0.0_linux.tar.bz2 it will create a folder called azureus step 5. Change permissions of folder to user. sudo chown -R user:user /opt/azureus user must be substituted for your user name step 6. the launch location for azureus is /opt/azureus/azureus, you can run it from the /opt/azureus directory from terminal by typing ./azureus its a good idea to update your menus to add the location for azureus, use smeg/alacarte for gnome Last edited by newuser111; February 13th, 2006 at 11:41 PM.. |
|
|
|
|
|
#2 |
|
Gee! These Aren't Roasted!
![]() Join Date: Nov 2005
Location: Vancouver, BC Canada
Beans: 121
Ubuntu 6.06
|
Re: HOW TO: Fix Azureus issues
Thank you. This worked perfectly.
|
|
|
|
|
|
#3 |
|
A Carafe of Ubuntu
![]() Join Date: Oct 2005
Beans: 103
|
Re: HOW TO: Fix Azureus issues
Yeah I've had the torrents not downloading problem. It has to do with torrents with spaces in the filename. Azureus requires the full file path to the file as well.
I wanted azureus to work for any user and leave it root owned though. Here's how I fixed it. Get from http://azureus.sourceforge.net/ and unpack into /opt/ I wouldn't use azureus deb files. They seem to install the free java version, and those cause all kinds of problems with azureus. It's better to just use the sun version. Then: Code:
sudo gedit /usr/local/bin/azureus Code:
#!/bin/sh
if [ "$1" != "" ]
then
/opt/azureus/azureus "$1"
else
/opt/azureus/azureus
fi
Code:
sudo chmod +x /usr/local/bin/azureus Last edited by no1wantdthisname; February 17th, 2006 at 04:24 PM.. |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|