目前最新的alsa 驱动是 1.0.20
那就下载吧
$ wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.20.tar.bz2
$ wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.20.tar.bz2
$ wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.20.tar.bz2
下载完放入同一个文件夹内 .. 我放在 $HOME/alsa
$ bunzip2 alsa-driver-1.0.20
$ tar -xf alsa-driver-1.0.20
$ cd alsa-driver-1.0.20
$ ./configure --with-cards=hda-intel --with-sequencer=yes ; make ; make install
安装完drvier 接下来安装lib
$ bunzip2 alsa-lib-1.0.20
$ tar -xf alsa-lib-1.0.20
$ cd ../alsa-lib-1.0.20
$ ./configure ; make ; sudo make install
如果编译时错误请按照提示安装确实的包
最后安装 utilus
$ bunzip2 alsa-utilus-1.0.20
$ tar -xf alsa-utilus-1.0.20
$ cd ../alsa-utilus-1.0.20
$ ./configure ; make ; sudo make install
把下面的modules写入内核
$ modprobe snd-hda-intel ; modprobe snd-pcm-oss
$ modprobe snd-mixer-oss ; modprobe snd-seq-oss
到这里为止 ... 重启电脑就应该有声音了 ...