|

楼主 |
发表于 2003-11-13 19:28:56
|
显示全部楼层
[PHP]Well, the real way to get ALSA to work with 2.6 kernels is -
1. Configure the kernel with the ALSA stuff as _modules_
Code:
make && make modules_install
then copy the /usr/src/arch/i386/boot/bzImage to /boot
2.
Code:
emerge alsa-lib alsa-utils
3. edit /etc/modules.d/alsa for your card (see the Gentoo ALSA guide and also the individual card pages on the ALSA website for how to do this)
4.
Code:
update-modules
5.
Code:
rc-update add alsasound boot
6.
Code:
alsamixer
- unmute what you need and set your levels
7.
Code:
alsactl store
8. Instead of rebooting, you can
Code:
/etc/init.d/alsasound start
Now this method means that the alsasound script takes care of loading the modules at boot, and restores your mixer settings, and also stores them when you shut down. [/PHP] |
|