celticmonkey
October 26th, 2005, 02:47 AM
Installing things without apt-get lacks elegance, but here's how for Azureus:
You need Java installed for Azureus to work. Here a good HOWTO on that:
http://www.ubuntuforums.org/showthread.php?t=76735
Next download azureus GTK from sourceforge and put it somewhere where users can access it:
wget -c http://internap.dl.sourceforge.net/sourceforge/azureus/Azureus_2.3.0.4_linux.GTK.tar.bz2
sudo tar jxvf Azureus_2.3.0.4_linux.GTK.tar.bz2 -C /opt/
sudo chown -R root:root /opt/azureus
sudo chmod -R a+wrx /opt/azureus
Next make a link so you can start it:
sudo gedit /usr/bin/azureus.sh
# Insert the following lines into the new file
cd /opt/azureus/
./azureus
# Save the edited file
sudo chmod +x /usr/bin/azureus.sh
Lastly, add it to you gnome-panel menu:
sudo gedit /usr/share/applications/azureus.desktop
# Insert the following lines into the new file
[Desktop Entry]
Name=Azureus
Comment=Azureus
Exec=azureus.sh
Icon=/opt/azureus/Azureus.png
Terminal=false
Type=Application
Categories=Application;Network;
To refresh the gnome-panel type:
killall gnome-panel
And there you go.
You need Java installed for Azureus to work. Here a good HOWTO on that:
http://www.ubuntuforums.org/showthread.php?t=76735
Next download azureus GTK from sourceforge and put it somewhere where users can access it:
wget -c http://internap.dl.sourceforge.net/sourceforge/azureus/Azureus_2.3.0.4_linux.GTK.tar.bz2
sudo tar jxvf Azureus_2.3.0.4_linux.GTK.tar.bz2 -C /opt/
sudo chown -R root:root /opt/azureus
sudo chmod -R a+wrx /opt/azureus
Next make a link so you can start it:
sudo gedit /usr/bin/azureus.sh
# Insert the following lines into the new file
cd /opt/azureus/
./azureus
# Save the edited file
sudo chmod +x /usr/bin/azureus.sh
Lastly, add it to you gnome-panel menu:
sudo gedit /usr/share/applications/azureus.desktop
# Insert the following lines into the new file
[Desktop Entry]
Name=Azureus
Comment=Azureus
Exec=azureus.sh
Icon=/opt/azureus/Azureus.png
Terminal=false
Type=Application
Categories=Application;Network;
To refresh the gnome-panel type:
killall gnome-panel
And there you go.