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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
11-03-2005, 07:01 PM
|
#1
|
|
LQ Newbie
Registered: Oct 2005
Location: Mars
Distribution: Mandriva 2006
Posts: 1
Rep:
|
Azureus
I have installed Azureus for Linux, and everytime i want it to start-up, i type in the command line ./azureus, which is pretty annoying .. Is there any other way then typing in the konsole everytime i want to start up the Azureus ?
Like Put The Azureus in /home/ktane/Desktop and just double-click it to start it up, just like MicroSuck Windows !
Azureus file is in my /usr/local/src/azureus, and onces i went into that directory, I just type in ./azureus !
Hope you can help ! Thanks
|
|
|
|
11-03-2005, 08:50 PM
|
#2
|
|
Guru
Registered: Jan 2002
Posts: 6,042
Rep: 
|
As root, su, or sudo create a bash script in /usr/bin called azureus and chmod to 750. Something like the code below should work for any user.
#!/bin/sh
AZUREUS_PATH="/usr/local/src/azureus"
cd $AZUREUS_PATH
./azureus
Another way is to add an alias to .bashrc_profile, .bashrc, or /etc/profile.
|
|
|
|
11-04-2005, 05:15 AM
|
#3
|
|
Member
Registered: May 2005
Location: Winnipeg, Canada
Distribution: mostly mepis
Posts: 427
Rep:
|
Are you asking how to put a shortcut on your desktop ?
If using kde;
-right click desktop
-create new file->link to application
-application
-fill in Azureus as description
-In command box fill in path to application ie; /usr/local/src/azureus/azureus , the second azureus being your shell script
-That cute frog png can be used as an icon
Gnome works much the same. I'll let you figure out the double-click thing.
EDIT: In the general tab change 'link to application' to read 'Azureus'. Looks tidier this way 
Last edited by muddywaters; 11-04-2005 at 05:54 AM.
|
|
|
|
11-04-2005, 07:57 AM
|
#4
|
|
Member
Registered: Oct 2005
Location: Oxford, UK
Distribution: Debian Etch (w/ dual-boot XP for gaming)
Posts: 282
Rep:
|
You know what's strange? I ended up always running Azureus from the console, because I couldn't get it to run in any other context. No error messages or anything - it just didn't start (even when I ticked KDE's "run in console" option on the shortcut). It was probably something to do with my Java runtime config, though after a quick google I gave up since I usually do things from the console anyway.
I'd be interested to know if you had the same issue, since it's one of those niggly annoying things that I don't know what the problem with it was. If so, I'll help you through it as best I can.
|
|
|
|
11-04-2005, 08:31 AM
|
#5
|
|
LQ Newbie
Registered: Nov 2005
Location: Belgium
Distribution: Slackware 10.2 & Windows 98 & Windows XP Pro & ...
Posts: 9
Rep:
|
Rightclick on the KDE button, menu editor, start path, where you compiled it, and command ./azeurus
Pretty obvious
|
|
|
|
11-17-2005, 03:29 AM
|
#6
|
|
LQ Newbie
Registered: Nov 2005
Distribution: Ubuntu
Posts: 2
Rep:
|
Quote:
Originally posted by Dtsazza
You know what's strange? I ended up always running Azureus from the console, because I couldn't get it to run in any other context. No error messages or anything - it just didn't start (even when I ticked KDE's "run in console" option on the shortcut). It was probably something to do with my Java runtime config, though after a quick google I gave up since I usually do things from the console anyway.
I'd be interested to know if you had the same issue, since it's one of those niggly annoying things that I don't know what the problem with it was. If so, I'll help you through it as best I can.
|
I had the same issue. It's annoying..
I use ubuntu 5.10 (upgraded from hoary).
It's very strange that it's not working even I try to run it from gnome-console with -e azureus option. (It will run when I type azureus in gnome-console)
So what's the problem? 
|
|
|
|
11-17-2005, 04:10 PM
|
#7
|
|
Guru
Registered: Jan 2002
Posts: 6,042
Rep: 
|
I already posted the fix but it seems nobody wants to do it.
|
|
|
|
11-17-2005, 04:45 PM
|
#8
|
|
LQ Newbie
Registered: Nov 2005
Distribution: Ubuntu
Posts: 2
Rep:
|
Quote:
Originally posted by Electro
I already posted the fix but it seems nobody wants to do it.
|
Tried but still doesn't work.. annoying..
|
|
|
|
11-17-2005, 05:13 PM
|
#9
|
|
Guru
Registered: Jan 2002
Posts: 6,042
Rep: 
|
Quote:
Originally posted by Snacho
Tried but still doesn't work.. annoying..
|
The reason it does not work for you. You do not know bash scripting. It does work though. I tried it in many distributions such as Mandrake 9, Mandrake 10, Slackware, and Gentoo. All work the same way. Depending how the distribution is setup, you may need to set the permissions to 755 for /usr/bin/azureus. If /usr/bin comes after /usr/local/bin in the PATH environment variable then you have to change the order. The path that AZUREUS_PATH points to was for the thread starter, so you may have to change it to work for your setup.
|
|
|
|
11-17-2005, 08:10 PM
|
#10
|
|
Member
Registered: May 2005
Location: Winnipeg, Canada
Distribution: mostly mepis
Posts: 427
Rep:
|
Re: Azureus
Electro
Sorry if it appeared that I was second guessing your advice. If so it wasn't intentional. It just seemed that part of the question was not addressed.
Quote:
Originally posted by ktane
Like Put The Azureus in /home/ktane/Desktop and just double-click it to start it up, just like MicroSuck Windows !
|
The method I outlined for the shortcut works for me with blender. /usr/local/src/blender/blender. It seems it's not a working solution for others. Also tried launching it with your short script. It works fine.
|
|
|
|
11-29-2005, 06:19 PM
|
#11
|
|
LQ Newbie
Registered: Nov 2005
Distribution: SuSe, Debian
Posts: 26
Rep:
|
I have the same problem too when starting Azureus. It's strange because the shotcut in desktop works with every other program. I would be happy to solve this thing up.
|
|
|
|
11-29-2005, 09:12 PM
|
#12
|
|
Member
Registered: Dec 2003
Location: Fresno
Distribution: Gentoo Ricer
Posts: 85
Rep:
|
You might need to put the full path the the binary in the properties for the icon you are creating.
|
|
|
|
11-30-2005, 03:02 PM
|
#13
|
|
LQ Newbie
Registered: Nov 2005
Distribution: SuSe, Debian
Posts: 26
Rep:
|
Yes isnt that an truism?
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 05:13 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|