Difference between revisions of "ALSA Utilities"

From CBLFS
Jump to navigationJump to search
(Configuration Information)
(Configuration Information)
Line 92: Line 92:
 
  chmod 644 /etc/udev/rules.d/15-alsa.rules
 
  chmod 644 /etc/udev/rules.d/15-alsa.rules
  
 +
* Note for users with multiple soundcards
 +
You can chose which soundcard is your primary soundcard when adding something like the following to modules.conf:
  
* Note for users with 2 soundcards
+
alias snd-card-0 snd-emu10k1
you can chose which soundcard is your primary soundcard when adding something like this to modules.conf:
+
 +
alias snd-card-1 snd-intel8x0
  
alias snd-card-0 snd-emu10k1
+
In this case, an internal nForce3 soundcard and a SoundBlaster Audigy.
 
 
alias snd-card-1 snd-intel8x0
 
 
 
in this case as example for an internal nforce3 soundcard and a soundblaster audigy
 
  
 
== Contents ==
 
== Contents ==

Revision as of 08:47, 25 November 2006

Download Source: ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.13.tar.bz2

Dependencies

Required

Non-Multilib

Compile the package:

./configure &&
make

Install the package

make install

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure &&
make

Install the package

make install

Configuration Information

Use a bootscript to store the values at shutdown.

As the root user, install the init script /etc/rc.d/init.d/alsa included in the blfs-bootscripts package.

make install-alsa

Note that all channels of your sound card are muted by default. You can use the alsamixer program from the ALSA Utilities to change this.

The first time the alsactl program is run from the udev rule below, it will complain that there is no state in /etc/asound.state. You can prevent this by running the following commands as the root user:

touch /etc/asound.state &&
alsactl store

As the root user, install a new Udev rules file to create the audio device nodes and run the restore script:

cat > /etc/udev/rules.d/15-alsa.rules << "EOF"
# Give the audio group ownership of sound devices
SUBSYSTEM=="sound",       GROUP="audio"
SUBSYSTEM=="snd",         GROUP="audio"

# ALSA Devices
# When a sound device is detected, restore the volume settings
KERNEL=="controlC[0-9]*",  NAME="snd/%k", ACTION=="add", RUN+="/usr/sbin/alsactl restore %n"
KERNEL=="hw[CD0-9]*",      NAME="snd/%k"
KERNEL=="pcm[CD0-9cp]*",   NAME="snd/%k"
KERNEL=="midiC[D0-9]*",    NAME="snd/%k"
KERNEL=="timer",           NAME="snd/%k"
KERNEL=="seq",             NAME="snd/%k"
EOF
chmod 644 /etc/udev/rules.d/15-alsa.rules
  • Note for users with multiple soundcards

You can chose which soundcard is your primary soundcard when adding something like the following to modules.conf:

alias snd-card-0 snd-emu10k1

alias snd-card-1 snd-intel8x0

In this case, an internal nForce3 soundcard and a SoundBlaster Audigy.

Contents

  • Installed Programs: alsactl, alsaconf, alsamixer, amidi, amixer, aplay, iecset, aconnect, aplaymidi, arecordmidi, aseqdump, aseqnet, speaker-test
  • Installed Directories: /usr/share/alsa/speaker-test, /usr/share/sounds/alsa