Difference between revisions of "Sound"

From Linuxintro
imported>ThorstenStaerk
imported>ThorstenStaerk
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
See
+
Linux sound is one big mess. We have ALSA, OSS, PulseAudio, gstreamer, arts, phonon as subsystems. This article explains the concepts and helps people fixing their sound problems.
* [[Sound troubleshooting]]
 
  
http://www.linuxjournal.com/article/6735
+
The "normal" Linux sound system is [http://en.wikipedia.org/wiki/Advanced_Linux_Sound_Architecture ALSA]. It emulates the older [http://en.wikipedia.org/wiki/Open_Sound_System OSS]. ALSA allows several applications to play sound at the same time, OSS does not. This is because OSS provides a single sound device file, /dev/dsp that applications lock when outputting to it. To raise confusion, ALSA emulates OSS by also providing /dev/dsp.
  
Soundcard Intel 82801G on Ubuntu 8.10: recording problems
+
The first step to find out if your sound is configured correctly is to output noise. Turn the volume low and try
* recording via external microphone very quiet
+
speaker-test
* recording via internal microphone cannot be heard
+
If you hear your voice, your microphone and drivers are okay.
  
alsamixer -c 0
+
= See also =
 +
* [[Sound troubleshooting]]
 +
* http://www.linuxjournal.com/article/6735

Latest revision as of 10:17, 7 December 2014

Linux sound is one big mess. We have ALSA, OSS, PulseAudio, gstreamer, arts, phonon as subsystems. This article explains the concepts and helps people fixing their sound problems.

The "normal" Linux sound system is ALSA. It emulates the older OSS. ALSA allows several applications to play sound at the same time, OSS does not. This is because OSS provides a single sound device file, /dev/dsp that applications lock when outputting to it. To raise confusion, ALSA emulates OSS by also providing /dev/dsp.

The first step to find out if your sound is configured correctly is to output noise. Turn the volume low and try

speaker-test

If you hear your voice, your microphone and drivers are okay.

See also