Difference between revisions of "Sound problems"
Line 2: | Line 2: | ||
==symptoms== | ==symptoms== | ||
− | When | + | When KDE starts, an error message pops up saying "Error while initializing the sound driver: device /dev/dsp can't be opened (no such device)". Then sound no work. Wah. |
==solution== | ==solution== | ||
− | In a [[FreekBox]], this is generally a hardware problem with your | + | In a [[FreekBox]], this is generally a hardware problem with your sound card. But if you're working on a non-freekbox system, here's a method for troubleshooting this error: |
* make sure /dev/dsp exists, and that the group has write access: | * make sure /dev/dsp exists, and that the group has write access: | ||
− | guest@freekbox:~$ | + | guest@freekbox:~$ ls -l /dev/dsp |
lrwxrwxrwx 1 root root 9 May 3 17:37 /dev/dsp -> /dev/dsp0 | lrwxrwxrwx 1 root root 9 May 3 17:37 /dev/dsp -> /dev/dsp0 | ||
the lrwxlrwxlrwx bit means everyone in the world has read/write/execute permission on the file, which is a link to /dev/dsp0. | the lrwxlrwxlrwx bit means everyone in the world has read/write/execute permission on the file, which is a link to /dev/dsp0. | ||
* If /dev/dsp doesn't exist, you can use ln to create it (as root) | * If /dev/dsp doesn't exist, you can use ln to create it (as root) | ||
− | freekbox:~# | + | freekbox:~# ln -s /dev/dsp0 /dev/dsp |
* But you need to make sure /dev/dsp0 exists too: | * But you need to make sure /dev/dsp0 exists too: | ||
guest@freekbox:~$ ls -l /dev/dsp | guest@freekbox:~$ ls -l /dev/dsp | ||
Line 18: | Line 18: | ||
* You can make /dev/dsp0 with MAKEDEV if it doesn't exist. | * You can make /dev/dsp0 with MAKEDEV if it doesn't exist. | ||
freekbox:/dev# ./MAKEDEV audio | freekbox:/dev# ./MAKEDEV audio | ||
− | * Finally, make sure the user is in the audio | + | * Finally, make sure the user is in the audio group: |
− | guest@freekbox:~$ | + | guest@freekbox:~$ groups |
guest dialout cdrom floppy audio dip video games users | guest dialout cdrom floppy audio dip video games users | ||
On a FreekBox-type computer, it's rare that users will be added improperly and not be in the audio group. | On a FreekBox-type computer, it's rare that users will be added improperly and not be in the audio group. |
Revision as of 13:39, 4 January 2009
This page or section appears to be out of date or otherwise inaccurate.
Please edit as seems necessary, removing the {{cleanup}} tag when you are through.
symptoms
When KDE starts, an error message pops up saying "Error while initializing the sound driver: device /dev/dsp can't be opened (no such device)". Then sound no work. Wah.
solution
In a FreekBox, this is generally a hardware problem with your sound card. But if you're working on a non-freekbox system, here's a method for troubleshooting this error:
- make sure /dev/dsp exists, and that the group has write access:
guest@freekbox:~$ ls -l /dev/dsp lrwxrwxrwx 1 root root 9 May 3 17:37 /dev/dsp -> /dev/dsp0
the lrwxlrwxlrwx bit means everyone in the world has read/write/execute permission on the file, which is a link to /dev/dsp0.
- If /dev/dsp doesn't exist, you can use ln to create it (as root)
freekbox:~# ln -s /dev/dsp0 /dev/dsp
- But you need to make sure /dev/dsp0 exists too:
guest@freekbox:~$ ls -l /dev/dsp crw-rw-rw- 1 root audio 14, 3 Mar 23 12:28 /dev/dsp0
- You can make /dev/dsp0 with MAKEDEV if it doesn't exist.
freekbox:/dev# ./MAKEDEV audio
- Finally, make sure the user is in the audio group:
guest@freekbox:~$ groups guest dialout cdrom floppy audio dip video games users
On a FreekBox-type computer, it's rare that users will be added improperly and not be in the audio group.
The last set of possibilities are all hardware problems, so if you've gotten this far, try a different sound card. User:Dave says that the AE Vortex PCI sound card is a frequent culprit, so if you've got one of these, offer it to Dave to see if it will help him.
--ideath 12:46, 5 Aug 2005 (PDT) Jeff 03:09, 6 Aug 2005 (PDT)