Gentoo Linux ALSA Guide
1. Introduction
What is ALSA?
Warning:
This is NOT an official Gentoo document, and maybe blatantly incorrect. This exists online for the purpose of testing/bugfixing alone. Please head to the Gentoo Doc Page for the latest & official documentation. Thanks!
|
ALSA, which stands for Advanced Linux Sound Architecture, provides
audio and MIDI (Musical Instrument Digital Interface) functionality to
the Linux operating system. ALSA is the default sound subsystem in the 2.6
kernel thereby replacing OSS (Open Sound System), which was used in the
2.4 kernels.
ALSA's main features include efficient support for all types of audio
interfaces ranging from consumer sound cards to professional sound
equipment, fully modularized drivers, SMP and thread safety, backward
compatibility with OSS and a user-space library alsa-lib to make
application development a breeze.
ALSA on Gentoo
One of Gentoo's main strengths lie in giving the user maximum control over
how a system is installed/configured. ALSA on Gentoo follows the same
principle. There are two ways you can get ALSA support up and running on your
system. We shall look at them in detail in the next chapter.
2. Installing ALSA
Options
Warning:
The methods shown below are mutually exclusive. You cannot have ALSA compiled
in your kernel and use media-sound/alsa-driver. It will fail.
|
Important:
genkernel users have their config built such a way that the ALSA
sub-system in the kernel is active. Therefore genkernel users can
proceed to the ALSA Utilities section
directly.
|
The two options are :
-
Use ALSA provided by your kernel. This is the preferred/recommended
method.
-
Use Gentoo's media-sound/alsa-driver package.
We shall take a peek into both before finally deciding on one.
If you were to use ALSA provided by the kernel, the following are the pros and
cons :
| Kernel ALSA |
Pros and Cons |
| + |
Pretty stable as drivers are integrated into kernel. |
| + |
One shot solution, no repeating emerges. |
| - |
Might be a slightly older version than alsa-driver. |
And, if you were to use alsa-driver,
| alsa-driver |
Pros and Cons |
| + |
Latest drivers from the ALSA Project. |
| - |
Every kernel recompile requires a re-emerge of alsa-driver. |
| - |
Needs certain kernel config options disabled to work correctly. |
So...
The main difference between using alsa-driver and ALSA that comes with
the kernel is that alsa-driver is generally more up to date than the
version in the kernel. Since this does not make any huge difference as
such, you are encouraged to use the ALSA provided by the kernel.
Before you proceed
Whichever method of install you choose, you need to know what drivers your
sound card uses. lspci will help you in digging out the required
information. Please emerge sys-apps/pciutils to get lspci, if
you don't have it installed already. We now proceed to find out details about
the sound card.
Code listing 2.1: Soundcard Details |
# lspci -v | grep -i audio
0000:00:0a.0 Multimedia audio controller: Creative Labs SB Live! EMU10k1 (rev 06)
|
We now know that the sound card on the machine is a Sound Blaster Live! and
the card manufacturer is Creative Labs. Head over to the
ALSA Soundcard Matrix
page and select Creative Labs from the drop down menu. You will be taken to
the Creative Labs matrix page where you can see that the SB Live! uses the
emu10k1 module. That is the information we need for now. If you are
interested in detailed information, you can click on the link next to the
"Details" and that will take you to the emu10k1 specific page.
Using ALSA provided by your Kernel
If you're a person who likes to keep things simple like I do, then this is
the way to go.
Note:
Since the 2005.0 release, Gentoo Linux uses 2.6 as the default kernel. Unless
you are specifically using the 2.4 profile, gentoo-sources will be a
2.6 kernel on most architectures. Please check that your kernel is a
2.6 series kernel. This method will not work on a 2.4 kernel.
|
Let us now configure the kernel to enable ALSA.
Code listing 2.2: Heading over to the source |
# cd /usr/src/linux
# make menuconfig
|
Note:
The above example assumes that /usr/src/linux symlink points to
the kernel sources you want to use. Please ensure the same before proceeding.
|
Now we will look at some of the options we will have to enable in the 2.6
kernel to ensure proper ALSA support for our sound card.
Note:
Please note that for the sake of ease, all examples show a modular kernel. It
is advisable to follow the same. Please do not skip the
Configuration section of this document. If
you still like to have options built-in, ensure that you make changes to your
config accordingly.
|
Code listing 2.3: Kernel Options for ALSA |
Device Drivers --->
Sound --->
<M> Sound card support
Open Sound System --->
< > Open Sound System (DEPRECATED)
Advanced Linux Sound Architecture --->
<M> Advanced Linux Sound Architecture
<M> Sequencer support
<M> OSS Mixer API
<M> OSS PCM (digital audio) API
Generic devices --->
ISA devices --->
<M> Gravis UltraSound Extreme
PCI devices --->
<M> Emu10k1 (SB Live!, Audigy, E-mu APS)
<M> Intel/SiS/nVidia/AMD/ALi AC97 Controller
<M> VIA 82C686A/B, 8233/8235 AC97 Controller
USB Devices --->
|
Now that your options are set, you can (re)compile the kernel and ALSA support
for your card should be functional once you reboot into the new kernel.
You can now proceed to ALSA Utilities and
see if everything is working as it should.
Using the ALSA Driver package
So you've decided to go the alsa-driver way. Let's get started then.
There are a few minor things to be done to ensure only the drivers for your
sound card are compiled. Although this is not really necessary, it cuts down
on the unnecessary drivers that will be compiled otherwise.
If you don't have an idea of what drivers your sound card might need, please
take a look at the lspci section of this guide. Once
you have your driver name (emu10k1 in our example), edit
/etc/make.conf and add a variable, ALSA_CARDS.
Code listing 2.4: Adding ALSA_CARDS to make.conf |
ALSA_CARDS="emu10k1"
ALSA_CARDS="emu10k1 via82xx"
|
If you have compiled your kernel and want to use alsa-driver, please
ensure the following before proceeding, else alsa-driver is likely to
fail. The next code listing gives you one way of performing the checks.
-
CONFIG_SOUND is set. (Basic Sound support enabled)
-
CONFIG_SOUND_PRIME is not set. (In-built OSS support disabled)
-
CONFIG_SND is not set. (In-built ALSA support disabled)
-
/usr/src/linux points to the kernel you want ALSA working on.
Code listing 2.5: .config checks |
# cd /usr/src/linux
# grep SOUND .config
CONFIG_SOUND=y
CONFIG_SOUND_PRIME is not set
# grep SND .config
CONFIG_SND is not set
|
Now all you have to do is type the magic words...and no, its not abracadabra.
Code listing 2.6: Installing alsa-driver |
# emerge alsa-driver
|
Important:
Please note that you will have to run emerge alsa-driver after every
kernel (re)compile, as the earlier drivers are deleted.
|
3. Configuring/Testing ALSA
ALSA Utilities
alsa-utils forms an integral part of ALSA as it has a truckload of
programs that are highly useful, including the ALSA Initscripts. Hence we
strongly recommend that you install alsa-utils
Code listing 3.1: Install alsa-utils |
# emerge alsa-utils
|
Note:
If you activated ALSA in your kernel and did
not compile ALSA as modules, please proceed to the
ALSA Initscript section. The rest of you need
to configure ALSA. This is made very easy by the existence of the
alsaconf tool provided by alsa-utils.
|
Configuration
Note:
Please shut down any programs that might access the sound card while
running alsaconf.
|
The easiest way to configure your sound card is to run alsaconf. Just
type alsaconf in a shell as root.
Code listing 3.2: Invoking alsaconf |
# alsaconf
|
You will now see a neat menu guided interface that will automatically probe
your devices and try to find out your sound card. You will be asked to pick
your sound card from a list. Once that's done, it will ask you permission to
automatically make required changes to /etc/modules.d/alsa.
It will then adjust your volume settings to optimum levels and run
modules-update and starts the /etc/init.d/alsasound
service. Once alsaconf exits, you can proceed with setting up the ALSA
initscript.
ALSA Initscript
We're now almost all setup. Whichever method you chose to install ALSA, you'll
need to have something load your modules or initialize ALSA and restore your
volume settings when your system comes up. The ALSA Initscript handles all of
this for you and is called alsasound. Add it to the default run-level.
Code listing 3.3: Adding ALSA to default |
# rc-update add alsasound default
* alsasound added to runlevel default
* rc-update complete.
|
Next, just check the /etc/conf.d/alsasound file and ensure that
SAVE_ON_STOP variable is set to yes. This saves your sound settings when you
shutdown your system.
Volume Check!
We've completed all the setups and pre-requisites, so let's fire up ALSA. If
you ran alsaconf, you can skip this step, since alsaconf already
does this for you.
Code listing 3.4: Start the service |
# /etc/init.d/alsasound start
* Loading ALSA modules ...
* Loading: snd-card-0 ... [ ok ]
* Loading: snd-pcm-oss ... [ ok ]
* Loading: snd-seq ... [ ok ]
* Loading: snd-emu10k1-synth ... [ ok ]
* Loading: snd-seq-midi ... [ ok ]
* Restoring Mixer Levels ... [ ok ]
# /etc/init.d/alsasound start
* Loading ALSA modules ...
* Restoring Mixer Levels ... [ ok ]
|
Now that the required things have been take care of, we need to check up on
the volume as in certain cases, it is muted. We use alsamixer for this purpose.
Code listing 3.5: Starting alsamixer |
# alsamixer
|
This is how the ALSA Mixer might look the first time you open it. Pay
attention to the Master and PCM channels which both have an MM below them.
That means they are muted. If you try to play anything with alsamixer
in this state, you will not hear anything on your speakers.
Figure 3.1: The Alsa Mixer Main Window, Muted |
 |
Now, we shall unmute the channels, and set volume levels as needed.
Warning:
Both Master and PCM need to be unmuted and set to audible volume levels if
you want to hear some output on your speakers.
|
-
To move between channels, use your left and right arrow keys. (<-
& ->)
-
To toggle mute, move to the specific channel, for example Master and press
the m key on the keyboard.
-
To increase and decrease the volume levels, use the up and down arrow keys
respectively.
Note:
Be careful when setting your Bass and Treble values. 50 is usually a good
number for both. Extremely high values of Bass may cause jarring
on speakers that are not designed to handle them.
|
After you're all done, your ALSA Mixer should look similar to the one below.
Note the 00 instead of the MM and also the volume levels for some optimum
settings.
Figure 3.2: Alsa Mixer ready to roll |
 |
Sound Check!
Finally. Some music. If everything above is perfect, you should be able to now
listen to some good music. A quick way to test is to use a command line tool
like media-sound/madplay. You could also use something more well known
like mpg123 or xmms. If you are an ogg fan, you could use
ogg123 provided by media-sound/vorbis-tools. Use any player you
are comfortable with. As always, emerge what you need.
Code listing 3.6: Getting the software |
# emerge madplay mpg123 xmms
# emerge vorbis-tools
|
And then play your favorite sound track...
Code listing 3.7: Playing Music |
# madplay -v /mnt/shyam/Music/Paul\ Oakenfold\ -\ Dread\ Rock.mp3
MPEG Audio Decoder 0.15.2 (beta) - Copyright (C) 2000-2004 Robert Leslie et al.
Title: Dread Rock
Artist: Paul Oakenfold
Album: Matrix Reloaded
Year: 2003
Genre: Soundtrack
Soundtrack
00:04:19 Layer III, 160 kbps, 44100 Hz, joint stereo (MS), no CRC
# ogg123 Paul\ Oakenfold\ -\ Dread\ Rock.ogg
Audio Device: Advanced Linux Sound Architecture (ALSA) output
Playing: Paul Oakenfold - Dread Rock.ogg
Ogg Vorbis stream: 2 channel, 44100 Hz
Genre: Soundtrack
Transcoded: mp3;160
Title: Dread Rock
Artist: Paul Oakenfold
Date: 2003
Album: Matrix Reloaded
Time: 00:11.31 [04:28.75] of 04:40.06 (200.6 kbps) Output Buffer 96.9%
|
Issues?
If for some reason you're unable to hear sound, the first thing to do would
be to check your alsamixer settings. 80% of
the issues lie with muted channels or low volume. Also check your Window
Manager's sound applet and verify that volumes are set to audible levels.
/proc is your friend. And in this case, /proc/asound
is your best friend. We shall just take a short look at how much info is made
available to us there.
Code listing 3.8: Fun with /proc/asound |
# cat /proc/asound/cards
0 [Live ]: EMU10K1 - Sound Blaster Live!
Sound Blaster Live! (rev.6, serial:0x80271102) at 0xb800, irq 11
# cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.8 (Thu Jan 13 09:39:32 2005 UTC).
# cat /proc/asound/oss/sndstat
Sound Driver:3.8.1a-980706 (ALSA v1.0.8 emulation code)
Kernel: Linux airwolf.zion 2.6.11ac1 #2 Wed May 4 00:35:08 IST 2005 i686
Config options: 0
Installed drivers:
Type 10: ALSA emulation
Card config:
Sound Blaster Live! (rev.6, serial:0x80271102) at 0xb800, irq 11
Audio devices:
0: EMU10K1 (DUPLEX)
Synth devices: NOT ENABLED IN CONFIG
Midi devices:
0: EMU10K1 MPU-401 (UART)
Timers:
7: system timer
Mixers:
0: SigmaTel STAC9721/23
|
4. Other things ALSA
Setting up MIDI support
If your sound card is one of those that come with on-board MIDI synthesizers
and you would like to listen to some .mid files, you have to install
awesfx which is basically a set of utilities for controlling the AWE32
driver. We need to install it first. If you don't have a hardware synthesizer,
you can use a virtual one. Please see the section on
Virtual Synthesizers for more information.
Code listing 4.1: Installing awesfx |
# emerge awesfx
|
Note:
You will need to copy over SoundFont (SF2) files from your sound card's driver
CD or a Windows installation into /usr/share/sounds/sf2/. For
example a sound font file for the Creative SBLive! card would be 8MBGMSFX.SF2.
|
After copying over the Soundfont files, we can then play a midi file as shown.
You can also add the asfxload command to
/etc/conf.d/local.start, so that the sound font is loaded
every time the system starts up.
Note:
/mnt paths mentioned in the code listing(s) below will not
be the same in your machine. They are just an example. Please be careful to
change the path to suit your machine.
|
Code listing 4.2: Loading Soundfonts |
# cp /mnt/win2k/Program\ Files/CreativeSBLive2k/SFBank/8MBGMSFX.SF2 /usr/share/sounds/sf2/
# asfxload /usr/share/sounds/sf2/8MBGMSFX.SF2
|
You can now play midi files using a program like aplaymidi. Run
aplaymidi -l to get a list of available ports and then pick one
to play the file on.
Code listing 4.3: Playing MIDI |
# aplaymidi -l
Port Client name Port name
64:0 EMU10K1 MPU-401 (UART) EMU10K1 MPU-401 (UART)
65:0 Emu10k1 WaveTable Emu10k1 Port 0
65:1 Emu10k1 WaveTable Emu10k1 Port 1
65:2 Emu10k1 WaveTable Emu10k1 Port 2
65:3 Emu10k1 WaveTable Emu10k1 Port 3
# aplaymidi --port=65:0 /mnt/shyam/music/midi/mi2.mid
|
Virtual Synthesizers
If your sound card lacks a hardware synthesizer, you could use a virtual one
like timidity++. Installation is a breeze.
Code listing 4.4: Installing timidity++ |
# emerge timidity++
|
For timidity to play sounds, it needs a sound font. If you do not have any,
install timidity-eawpatches or timidity-shompatches which will
give you some sound fonts. You can have multiple sound font configurations
installed, and you can place your own in /usr/share/timidity/.
To switch between different timidity configurations, you should use the
timidity-update tool provided in the timidity++ package.
Code listing 4.5: Installing sound fonts |
# emerge timidity-eawpatches
# timidity-update -g -s eawpatches
# emerge timidity-shompatches
# timidity-update -g -s shompatches
|
Don't forget to add timidity to the default runlevel.
Code listing 4.6: Adding timidity to the default runlevel |
# rc-update add timidity default
# /etc/init.d/timidity start
|
You can now try out Playing MIDI files.
Tools and Firmware
Some specific sound cards can benefit from certain tools provided by the
alsa-tools and alsa-firmware packages. If you need
alsa-tools, be sure to define the ALSA_TOOLS variable in
/etc/make.conf with the tools you require. For instance:
Code listing 4.7: Selecting ALSA Tools in /etc/make.conf |
ALSA_TOOLS="as10k1 ac3dec"
|
If the ALSA_TOOLS variable is not set, all available tools will be built.
Now, install the alsa-tools (and/or alsa-firmware) package(s):
Code listing 4.8: Installing ALSA Tools |
# emerge alsa-tools
|
A Big thank you to...
Everyone who contributed to the earlier version of the Gentoo ALSA Guide:
Vincent Verleye, Grant Goodyear, Arcady Genkin, Jeremy Huddleston,
John P. Davis, Sven Vermeulen, Benny Chuang, Tiemo Kieft and Erwin.
References
The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.
|