Difference between revisions of "Sound"

From Linuxintro
imported>ThorstenStaerk
(New page: Soundcard Intel 82801G on Ubuntu 8.10: recording problems)
 
imported>ThorstenStaerk
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
Soundcard Intel 82801G on Ubuntu 8.10: recording problems
+
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 [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.
 +
 
 +
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 =
 +
* [[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