I have noticed over the past couple of days that I have lost kde system sounds. If I go to systemsettings > Application and System Notifications > KDE Workspace, all the sounds I have set up are there, and the test button works. But any system sounds, such as thunderbird notifying of arriving mail, or other system messages, play only these stupid ding-type sounds. I'm not sure where they are coming from; my guess is they are coming from the Ubuntu-desktop packages somewhere. Any idea how to get my kde sounds back? Everything in Multimedia > Phonon looks right, too. Using KDM, not Lightdm.
Announcement
Collapse
No announcement yet.
system sounds not working
Collapse
This topic is closed.
X
X
-
See SteveRiley's How To -- Fix silent notification soundsWindows no longer obstructs my view.
Using Kubuntu Linux since March 23, 2007.
"It is a capital mistake to theorize before one has data." - Sherlock Holmes
- Top
- Bottom
-
Nope, that wasn't / isn't the problem. Did the recommended fixes in the link (both of them), and the offending sound remains.
The problem is that for some reason, default system sounds have been changed from kde to either /usr/share/sounds/ubuntu or /usr/share/sounds/freedesktop. Doesn't matter now, either way, I whacked them both and now the offending sound is gone. But the problem -- that default system sounds are coming from somewhere other than kde, remains unsolved.We only have to look at ourselves to see how intelligent life might develop into something we wouldn't want to meet. -- Stephen Hawking
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
Well, let's take a look at what your system thinks it should be doing. Please run
Code:grep Sound /usr/share/kde4/apps/*/*.notifyrc
- Top
- Bottom
Comment
-
Yeah, they are all pointing to the right place -- /usr/share/sounds -- either KDE-something or what I have assigned.
Nothing is pointing where it shouldn't - /usr/share/sounds/freedesktop/ or /usr/share/sounds/ubuntu/
grep Sound /usr/share/kde4/apps/*/*.notifyrc | grep freedesktop
grep Sound /usr/share/kde4/apps/*/*.notifyrc | grep ubuntu
produce nothing (as I expected). That's not the problem. The problem is that something other than KDE is taking control of global system sounds; I expect either unity or gnome (both are installed, neither is being used, but may be in the future, so they stay). Now I would think that KDM would take charge of system notifications, but it looks like it isn't, for some reason. What this says to me is that somewhere something is running that shouldn't be. Or maybe KDE and gnome/unity don't cohabit as well as they should.We only have to look at ourselves to see how intelligent life might develop into something we wouldn't want to meet. -- Stephen Hawking
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
-
@doctordruidphd
If you've installed Thunderbird or any other 'tuned' gtk-apps from the Ubuntu repositories, have you tried purging and re-installing vanilla versions from repositories elsewhere, or as a temporary check from a .deb file?Kubuntu 12.04 - Acer Aspire 5750G
"I don't make a great deal of money, but I'm ok with that 'cause I don't hurt a lot of people in the process either"
- Top
- Bottom
Comment
-
Originally posted by bra|10n View Post@doctordruidphd
If you've installed Thunderbird or any other 'tuned' gtk-apps from the Ubuntu repositories, have you tried purging and re-installing vanilla versions from repositories elsewhere, or as a temporary check from a .deb file?We only have to look at ourselves to see how intelligent life might develop into something we wouldn't want to meet. -- Stephen Hawking
- Top
- Bottom
Comment
-
Originally posted by SteveRiley View PostWell, let's take a look at what your system thinks it should be doing. Please run
Code:grep Sound /usr/share/kde4/apps/*/*.notifyrc
A small sample...
kubuntu@Aspire-5750:~$ grep Sound /usr/share/kde4/apps/*/*.notifyrc
/usr/share/kde4/apps/k3b/k3b.notifyrc:Sound=file:///usr/share/sounds/file:///usr/share/sounds/file:///usr/share/sounds/KDE-K3B-Finish-Success.ogg
/usr/share/kde4/apps/k3b/k3b.notifyrc:Action=Sound
/usr/share/kde4/apps/k3b/k3b.notifyrc:Sound=file:///usr/share/sounds/file:///usr/share/sounds/file:///usr/share/sounds/KDE-K3B-Finish-Error.ogg
/usr/share/kde4/apps/k3b/k3b.notifyrc:Action=Sound
/usr/share/kde4/apps/k3b/k3b.notifyrc:Sound=file:///usr/share/sounds/file:///usr/share/sounds/file:///usr/share/sounds/KDE-K3B-Insert-Medium.oggKubuntu 12.04 - Acer Aspire 5750G
"I don't make a great deal of money, but I'm ok with that 'cause I don't hurt a lot of people in the process either"
- Top
- Bottom
Comment
-
Pan-Galactic QuordlepleenSo Long, and Thanks for All the Fish
- Jul 2011
- 9524
- Seattle, WA, USA
- Send PM
Yup, there was a similar report on the Kubuntu-users mail list. Looks like some, but not all, .notifyrc files might be getting fixed. I posted to the list a set of steps to repair the symptom you're seeing. I'll repeat that here.
Run the following command:
Code:for j in /usr/share/kde4/apps/*/*.notifyrc; do sudo sed -i 's_Sound=file:///usr/share/sounds/_Sound=_g' $j; done
Code:grep Sound /usr/share/kde4/apps/*/*.notifyrc
Ultimately what you'll end up with are lines that show "Sound=filename" with no path. Now to get everything fixed with the correct path, run the original script in the other thread.
- Top
- Bottom
Comment
-
Originally posted by SteveRiley View PostLather/rinse/repeat until there are no more lines with "file:///".
Many thanks S.RKubuntu 12.04 - Acer Aspire 5750G
"I don't make a great deal of money, but I'm ok with that 'cause I don't hurt a lot of people in the process either"
- Top
- Bottom
Comment
Comment