Hi Mike,

Any chance you could do this from terminal.

Make sure gdb is installed. (sudo apt-get install gdb)

then run:
sudo ps ax | grep indicator-sound-service

this will find the process for the indicator, you will see something like
 2251 ?        Sl     0:00 /usr/lib/indicator-sound/indicator-sound-service
 7911 pts/12   S+     0:00 grep --color=auto indicator-sound-service

then we want to attach to the sound-service
in this case i would run
sudo gdb -p 2251

Please replace the process number with the one from your machine

once gdb attaches, type 'continue' and hit return
then reproduce the crash which gdb will 'catch'.
type 'bt full'

And attach the full backtrace to this bug report (remember the backtrace
will more than likely come in two parts, you will need to hit return to
see the second half of it)


Thanks !

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/961656

Title:
  indicator-sound-service crashed with SIGABRT in raise()

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-sound/+bug/961656/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to