No edit summary |
(Minor fixes) |
||
Line 1: | Line 1: | ||
{{admon/note|Page to be merged|It has been suggested that this page should be merged in [[How to debug sound problems]].}} | {{admon/note|Page to be merged|It has been suggested that this page should be merged in [[How to debug sound problems]].}} | ||
This page helps you identify and correct issues with sound on your system, and helps you report problems so they can be prevented in the future. | |||
Use the list below to identify the component | Use the list below to identify the component at fault and to help you provide the debugging information when you file a bug report. Please add output of relevant commands to the report: | ||
1. Add shorter texts, such as <code>getfacl</code> output or fact that <code>aplay</code> did not play sound as comments | 1. Add shorter texts, such as <code>getfacl</code> output or fact that <code>aplay</code> did not play sound as comments | ||
Line 11: | Line 11: | ||
== ALSA == | == ALSA == | ||
* '''Relevant | * '''Relevant packages:''' {{package|kernel}}, {{package|alsa-lib}}, {{package|alsa-plugins-pulseaudio}} | ||
* Permissions on device files are managed by ''HAL'' | * Permissions on device files are managed by ''HAL'' | ||
** '''Relevant | ** '''Relevant packages:''' {{package|hal}}, {{package|hal-libs}} | ||
** See what ACLs are set with <code>getfacl /dev/snd/pcmC0D0c</code> | ** See what ACLs are set with <code>getfacl /dev/snd/pcmC0D0c</code> | ||
*** Users with ''active sessions'' should have write privilege | *** Users with ''active sessions'' should have write privilege | ||
**** '''Relevant | **** '''Relevant packages:''' {{package|ConsoleKit}}, {{package|ConsoleKit-libs}} | ||
**** Check which sessions are active with <code>ck-list-sessions</code> | **** Check which sessions are active with <code>ck-list-sessions</code> | ||
* Pulseaudio backend is in package | * Pulseaudio backend is in package {{package|alsa-plugins-pulseaudio}} | ||
* Volume settings are adjusted with <code>alsamixer -c 0</code> | * Volume settings are adjusted with <code>alsamixer -c 0</code> | ||
* You can play sound with <code>aplay -D hw:0 /usr/share/sounds/startup3.wav</code> | * You can play sound with <code>aplay -D hw:0 /usr/share/sounds/startup3.wav</code> | ||
Line 24: | Line 24: | ||
== PulseAudio daemon == | == PulseAudio daemon == | ||
* '''Relevant packages:''' | * '''Relevant packages:''' {{package|pulseaudio}} | ||
* Starts with the session | * Starts with the session | ||
** In ''GNOME'' see ''System->Preferences->Personal->Sessions'' | ** In ''GNOME'' see ''System->Preferences->Personal->Sessions'' | ||
** In ''KDE'', you should have | ** In ''KDE'', you should have {{package|kde-settings-pulseaudio}} installed | ||
** Check if it runs with <code>ps aux |grep pulseaudio</code> | ** Check if it runs with <code>ps aux |grep pulseaudio</code> | ||
* <code>grep pulseaudio /var/log/messages</code> to see if it had any problems | * <code>grep pulseaudio /var/log/messages</code> to see if it had any problems | ||
* Audio devices are discovered by ''HAL'' | * Audio devices are discovered by ''HAL'' | ||
** '''Relevant | ** '''Relevant packages:''' {{package|hal}}, {{package|hal-libs}} | ||
** Use <code>hal-find-by-capability --capability alsa</code> to list them | ** Use <code>hal-find-by-capability --capability alsa</code> to list them | ||
* Run verbose pulseaudio on foreground to see detailed messages | * Run verbose pulseaudio on foreground to see detailed messages | ||
Line 40: | Line 40: | ||
== GStreamer == | == GStreamer == | ||
* '''Relevant packages:''' | * '''Relevant packages:''' {{package|gstreamer}}, {{package|gstreamer-plugins-pulse}} | ||
* Default sound devices is set by <code>gnome-sound-properties</code> | * Default sound devices is set by <code>gnome-sound-properties</code> | ||
* Either ''ALSA'' or ''pulse'' should work. Also ''default''. | * Either ''ALSA'' or ''pulse'' should work. Also ''default''. |
Revision as of 12:11, 12 July 2011
This page helps you identify and correct issues with sound on your system, and helps you report problems so they can be prevented in the future.
Use the list below to identify the component at fault and to help you provide the debugging information when you file a bug report. Please add output of relevant commands to the report:
1. Add shorter texts, such as getfacl
output or fact that aplay
did not play sound as comments
1. Attach longer outputs, such as pulseaudio -vvv
log as attachments
Feel free to improve this text to reflect your experience, or mail suggestions to lkundrak@redhat.com. Thanks!
ALSA
- Relevant packages:
kernel
,alsa-lib
,alsa-plugins-pulseaudio
- Permissions on device files are managed by HAL
- Relevant packages:
hal
,hal-libs
- See what ACLs are set with
getfacl /dev/snd/pcmC0D0c
- Users with active sessions should have write privilege
- Relevant packages:
ConsoleKit
,ConsoleKit-libs
- Check which sessions are active with
ck-list-sessions
- Relevant packages:
- Users with active sessions should have write privilege
- Relevant packages:
- Pulseaudio backend is in package
alsa-plugins-pulseaudio
- Volume settings are adjusted with
alsamixer -c 0
- You can play sound with
aplay -D hw:0 /usr/share/sounds/startup3.wav
- When pulseaudio is running, use
pasuspender /usr/bin/aplay -- -D hw:0 /usr/share/sounds/startup3.wav
- When pulseaudio is running, use
PulseAudio daemon
- Relevant packages:
pulseaudio
- Starts with the session
- In GNOME see System->Preferences->Personal->Sessions
- In KDE, you should have
kde-settings-pulseaudio
installed - Check if it runs with
ps aux |grep pulseaudio
grep pulseaudio /var/log/messages
to see if it had any problems- Audio devices are discovered by HAL
- Run verbose pulseaudio on foreground to see detailed messages
- Kill running pulseaudio
pulseaudio -k
orpkill -KILL pulseaudio
- Clean up the leftover temporary files
rm -rf /tmp/pulse-*
- Run
pulseaudio -vvv
- You can play sound with
paplay /usr/share/sounds/startup3.wav
GStreamer
- Relevant packages:
gstreamer
,gstreamer-plugins-pulse
- Default sound devices is set by
gnome-sound-properties
- Either ALSA or pulse should work. Also default.
- Check the values with
gconftool-2 --recursive-list /system/gstreamer/0.10/default
- You can play sound with
gst-launch audiotestsrc \! autoaudiosink
- Also try
pulsesink
instead