HP notebook installed after the Debian system, voice problems, most of the sound card driver failure, at this time can be reinstalled to install the sound card driver to solve the problem, the following small series to give you a detailed introduction to the next Debian compiled installation sound card driver method.
When the HP notebook was first bought, installing Debian 5, you would typically encounter two problems:
One is the wireless card driver is not installed, one is "with headphones can listen to music, but the speaker is not audible."
The second problem, most of which is that the sound card driver version number is too low for Debian 5, so just download the latest sound card driver and compile the installation to solve the problem.
The steps are as follows:
1. Download the latest drive to the ALSA homepage and extract it to the current directory
alsa-driver-1.0.21.tar.bz2
alsa-lib-1.0.21a.tar.bz2
alsa-utils-1.0.21.tar.bz2
$ pwd
/home/c-aries/download/alsa
$ ls
ALSA-DRIVER-1.0.21.TAR.BZ2 alsa-lib-1.0.21a.tar.bz2 alsa-utils-1.0.21.tar.bz2
$ tar XF alsa-driver-1.0.21.tar.bz2
$ tar XF alsa-utils-1.0.21.tar.bz2
$ tar XF alsa-lib-1.0.21a.tar.bz2
$ ls-f
alsa-driver-1.0.21/alsa-lib-1.0.21a/alsa-utils-1.0.21/
ALSA-DRIVER-1.0.21.TAR.BZ2 alsa-lib-1.0.21a.tar.bz2 alsa-utils-1.0.21.tar.bz2
$
2. Install the necessary packages, turn off the sound card,
$ sudo apt-get install build-essential ncurses-dev gettext xmlto linux-headers-' uname-r ' Libncursesw5-dev
$ sudo/etc/init.d/alsa-utils Stop
3. Soft link-related function libraries
Run the following command when compiling an error, such as an error
Checking for New_panel In-lpanelw ... No
CONFIGURE:ERROR:PANELW Library not found
Link command:
$ sudo ln-s libpanelw.so.5/usr/lib/libpanelw.so
$ sudo ln-s libformw.so.5/usr/lib/libformw.so
$ sudo ln-s libmenuw.so.5/usr/lib/libmenuw.so
$ sudo ln-s libncursesw.so.5/lib/libncursesw.so
4. Compile and install Alsa-driver,alsa-lib,alsa-utils
$ pwd
/home/c-aries/download/alsa/alsa-driver-1.0.21
$ /configure
$ make
$ sudo make install
$ pwd
/home/c-aries/download/alsa/alsa-lib-1.0.21a
$ /configure
$ make
$ sudo make install
#需要编译安装了alsa-driver and Alsa-lib to compile alsa-utils, or error when running configure
$ pwd
/home/c-aries/download/alsa/alsa-utils-1.0.21
$ /configure
$ make
$ sudo make install
5. Reboot the system to view the sound card driver version number
$ cat/proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.21.
Compiled on the Dec 9 2009 for Kernel 2.6.26-2-686 (SMP).
$
6. Configure the sound card to adjust the volume
#关闭声卡
$ sudo/etc/init.d/alsa-utils Stop
#配置声卡, select the sound card to configure, select Hda-intel
$ sudo alsaconf
#调节音量, will master and PCM are tuned to 100, external speakers sound very big "_"
#提示: Press the M key, such as the OO flag below master to indicate that the option is available, and then press the M key again, such as the MM flag below master, to indicate that the option is disabled
$ alsamixer
Above is the HP notebook Debian compile installs the sound card drive method, if you install the system sound card driver version is too low, may go to the official website to download the latest sound card driver to install.