After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 379906 - crash in Deskbar: I was trying to use a ba...
crash in Deskbar: I was trying to use a ba...
Status: RESOLVED DUPLICATE of bug 378570
Product: deskbar-applet
Classification: Deprecated
Component: general
unspecified
Other All
: High critical
: ---
Assigned To: Deskbar Applet Maintainer(s)
Deskbar Applet Maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2006-11-27 20:34 UTC by baruffaldi.p
Modified: 2006-11-27 22:52 UTC
See Also:
GNOME target: ---
GNOME version: 2.15/2.16



Description baruffaldi.p 2006-11-27 20:34:21 UTC
What were you doing when the application crashed?
I was trying to use a bash script placed in /usr/local/bin:
"radio_montecarlo"

-rw-r--r-- 1 root root 74 2006-11-27 19:44 radio_montecarlo
source of radio_montecarlo:

#!/bin/sh
vlc "http://www.radiomontecarlo.net/RMC_04/PlayerRMC/rmc32.asx"

p.s.: this ubuntu has been recently upgraded from 6.06 to 6.10


Distribution: Ubuntu 6.10 (edgy)
Gnome Release: 2.16.1 2006-10-02 (Ubuntu)
BugBuddy Version: 2.16.0

Memory status: size: 0 vsize: 0 resident: 0 share: 0 rss: 0 rss_rlim: 0
CPU usage: start_time: 0 rtime: 0 utime: 0 stime: 0 cutime:0 cstime: 0 timeout: 0 it_real_value: 0 frequency: 0

Traceback (most recent call last):
  • File "/usr/lib/python2.4/site-packages/deskbar/DeskbarApplet.py", line 121 in on_match_selected
    match.action(text)
  • File "/usr/lib/deskbar-applet/handlers/programs.py", line 212 in action
    gobject.spawn_async(text.split(" "), flags=gobject.SPAWN_SEARCH_PATH)
GError: Failed to execute child process "radio_montecarlo" (Permission denied)

Comment 1 André Klapper 2006-11-27 22:52:17 UTC
Thanks for the bug report. This particular bug has already been reported into our bug tracking system, but please feel free to report any further bugs you find.

Workaround: as you can see, your bash script is not marked as executable:
-rw-r--r-- 1 root root 74 2006-11-27 19:44 radio_montecarlo
it should look like this:
-rwxr--r-- 1 root root 74 2006-11-27 19:44 radio_montecarlo

mark it as executable by running "chmod u+x radio_montecarlo root" or something like that. :-)

*** This bug has been marked as a duplicate of 378570 ***