LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   I had already installed Yahoo messanger,bt whenever i click on it nothing happens (https://www.linuxquestions.org/questions/linux-software-2/i-had-already-installed-yahoo-messanger-bt-whenever-i-click-on-it-nothing-happens-487152/)

HardeepSingh 09-26-2006 11:39 AM

I had already installed Yahoo messanger,bt whenever i click on it nothing happens
 
I had installed Yahoo messanger on fedora linux,but whenever i click on it nothing happens.Plzz help me

bigrigdriver 09-26-2006 02:58 PM

More information is needed, such as error messages.

Suggestion: start Yahoo messanger form command line. You may get error messages which could help solve the problem.

HardeepSingh 09-28-2006 03:46 AM

Yahoo messanger
 
I had run yahoo messanger.This is what i got..

[root@Hardeep bin]# ymessenger
bash: /usr/bin/ymessenger: Permission denied
[root@Hardeep bin]#

Nylex 09-28-2006 03:48 AM

Firstly, there's no reason to be running that as root. Use your normal user account for such things. Secondly, does the executable actually have executable permissions set?

HardeepSingh 09-29-2006 12:49 AM

yahoo messenger
 
I had also run that as normal user,but got the same prob.could u plzz tell me how to check execution permission and how to change permission.

thanks for ur support

Nylex 09-29-2006 12:55 AM

Run "ls -l" (that's a lowercase L in both cases) to check the permissions. Here's an example:

-rwxr-xr-x 1 root bin 15736 2004-03-16 02:08 /bin/cat

The first column is the permissions and the 'x' is for executable. There are 3 of them, so that this file can be executed by the owner (root), members of the group (bin) and anyone else.

If you do not see a single x in the output, then you'll need to set the executable permissions. This is done with chmod. As root, run "chmod a+x ymessenger", which will set the permissions for everyone.

Edit: see "man chmod" for more info about chmod.


All times are GMT -5. The time now is 03:59 PM.