LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   GNomad2 (https://www.linuxquestions.org/questions/linux-newbie-8/gnomad2-271637/)

dougbarrett 12-29-2004 04:02 PM

GNomad2
 
I installed GNomad2 onto my computer, and I am running Fedora Core 3. My MP3 player is a Creative Nomad Jukebox Zen Xtra, and I used to be able to run GNomad2 fine with Fedora Core 2, but it keeps crashing. Has anyone else had this problem and know the solution? I am new to Linux, so if I have to program something, detailed instructions would be greatly appreciated.

Thankyou ahead of time.

acid_kewpie 12-29-2004 04:09 PM

you really need to tell us more information about the crash... any errors? make sure you try running it from a terminal.

incidentally, is that a decent player in your opinion? i almost bought one today, as it's about the cheapest decent make mp3 player around....

dougbarrett 12-29-2004 04:22 PM

When I run GNomad2 2.6.1 on Fedora Core 3, it just pops up a window saying

Error

The Application "gnomad2" has quit unexpectedly.

You can inform the developers of what happened to help them fix it. Or you can restart the application right now.



Then I restart it, but it just closes itself. Thats all I get.

pah57 12-29-2004 06:49 PM

Quote:

Originally posted by acid_kewpie
you really need to tell us more information about the crash... any errors? make sure you try running it from a terminal.
I've run gnomad2-2.6.1-1.FC3 (and 2.6.0) from the command line, and there's no output at all.

Watching /var/log/messages, the only thing I see is when I connect the Nomad up:
Code:

Dec 29 19:39:36 server kernel: usb 1-1.4: new full speed USB device using address 24
which is expected.

Quote:

incidentally, is that a decent player in your opinion? i almost bought one today, as it's about the cheapest decent make mp3 player around....
I really like it - cheaper than an iPod but doesn't look as cheaply made. :)

I've not had any problem with the player (I've had the 30Gb Zen Xtra for about 6 months) although I did manage to break the belt clip on a subway turnstile!

dougbarrett 12-29-2004 07:53 PM

I like mine aswell, I am thinking I should just go back to Fedora 2 since that gave me no trouble with this.

acid_kewpie 12-30-2004 06:29 AM

cool... looks like i'll be getting one of them one day...

you might want to try running the application inside of gdb, then when it crashes, you can run "bt" to see the application state when it died and the call stack. the end method might well point to an external library you can try to upgrade.

pah57 12-30-2004 10:09 AM

Quote:

Originally posted by acid_kewpie
cool... looks like i'll be getting one of them one day...

you might want to try running the application inside of gdb, then when it crashes, you can run "bt" to see the application state when it died and the call stack. the end method might well point to an external library you can try to upgrade.

Here goes:
Code:

(gdb)
#0  0x08058f5b in jukebox_get_firmware ()
#1  0x0805520d in scan_jukebox ()
#2  0x002ad3ae in g_cclosure_marshal_VOID__VOID () from /usr/lib/libgobject-2.0.so.0
#3  0x00295347 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#4  0x002abae1 in g_signal_has_handler_pending () from /usr/lib/libgobject-2.0.so.0
#5  0x002accbc in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#6  0x002acf5a in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#7  0x005d22f9 in gtk_widget_activate () from /usr/lib/libgtk-x11-2.0.so.0
#8  0x004edc00 in gtk_menu_shell_activate_item () from /usr/lib/libgtk-x11-2.0.so.0
#9  0x004edf0a in gtk_menu_shell_activate_item () from /usr/lib/libgtk-x11-2.0.so.0
#10 0x004e460d in gtk_menu_reorder_child () from /usr/lib/libgtk-x11-2.0.so.0
#11 0x004de697 in gtk_marshal_VOID__UINT_STRING () from /usr/lib/libgtk-x11-2.0.so.0
#12 0x002956b2 in g_cclosure_new_swap () from /usr/lib/libgobject-2.0.so.0
#13 0x00295347 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
#14 0x002ab646 in g_signal_has_handler_pending () from /usr/lib/libgobject-2.0.so.0
#15 0x002ac913 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
#16 0x002acf5a in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
#17 0x005d2485 in gtk_widget_activate () from /usr/lib/libgtk-x11-2.0.so.0
#18 0x004dc95b in gtk_propagate_event () from /usr/lib/libgtk-x11-2.0.so.0
#19 0x004dcc60 in gtk_main_do_event () from /usr/lib/libgtk-x11-2.0.so.0
#20 0x003a00a2 in gdk_event_get_graphics_expose () from /usr/lib/libgdk-x11-2.0.so.0
#21 0x002127bb in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#22 0x00214242 in g_main_context_acquire () from /usr/lib/libglib-2.0.so.0
#23 0x002144ef in g_main_loop_run () from /usr/lib/libglib-2.0.so.0
#24 0x004dbfbe in gtk_main () from /usr/lib/libgtk-x11-2.0.so.0
#25 0x0805662b in main ()
(gdb)

I've logged this as a bug (http://sourceforge.net/tracker/index...73&atid=511470).

Thanks.

dougbarrett 12-30-2004 10:25 AM

Actually funny enough, I restarted my computer but had my MP3 player plugged into the USB port so Linux detected it when it came on, and it has been working with GNomad ever since, even if you unplug it and don't have it plugged in when the computer starts up. So it's probably just some type of bug instead of a compatability issue between the old FC2 and the new FC3.

pah57 12-30-2004 10:44 AM

As much as I hate rebooting, I just tried it and I'm getting exactly the same problem.
Glad it worked for you ... I guess I need to keep digging. :(

Alluha 07-04-2005 04:37 AM

I'm getting
gnomad2: error while loading shared libraries: libnjb.so.5: cannot open shared object file: No such file or directory

So I tried linking thte libnjb.so.5 to the various locations where it might be looking for it and now I get, gnomad2: error while loading shared libraries: libnjb.so.5: cannot open shared object file: Error 40

Any ideas?


Oh and yes i know this is a really old thread >_<


All times are GMT -5. The time now is 06:21 PM.