A few public have managed to acquire sound by updating ALSA (the underlying system to get sound) to most recent version.
Installation :
To do this, we must start on by determining our description of Alsa as follows :
Code:
cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.18rc3.
To evade problems throughout the upgrade of Alsa-utilities, we have to discontinue it with the subsequent command :
Code:
sudo /etc/init.d/alsa-utils stop
We must then install the necessary tools to compile along with the kernel headers :
Code:
sudo apt-get -y install build-essential ncurses-dev gettext xmlto
sudo apt-get -y install linux-headers-`uname -r` libncursesw5-dev
After that, we go in our personal folder as well as download alsa-driver, alsa-lib and alsa-utils :
Code:
cd ~
rm -rf ~/alsa*
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.21.tar.bz2
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.21a.tar.bz2
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.21.tar.bz2
After that, we make a fresh folder for the compilation as well as installation of the 3 files. After that, we move the 3 tar files that we just downloaded in this folder:
Code:
sudo rm -rf /usr/src/alsa
sudo mkdir -p /usr/src/alsa
cd /usr/src/alsa
sudo cp ~/alsa* .
Unpack the 3 tar files :
Code:
sudo tar xjf alsa-driver*
sudo tar xjf alsa-lib*
sudo tar xjf alsa-utils*
We compile as well as install alsa-driver :
Code:
cd alsa-driver*
sudo ./configure
sudo make
sudo make install
We compile and install alsa-lib :
Code:
cd ../alsa-lib*
sudo ./configure
sudo make
sudo make install
We compile as well as set up alsa-utils :
Code:
cd ../alsa-utils*
sudo ./configure
sudo make
sudo make install
If like me, you got this error throughout the last “sudo ./configure
Code:
checking form.h presence... yes
checking for form.h... yes
checking for new_panel in -lpanelw... no
configure: error: panelw library not found
You will have to attach those symbolic links (only if you got the error) as well as restart the installation from the last “sudo. /configure”:
Code:
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
Then, we take away the 3 tar files in our personal folder that are not any longer necessary:
Code:
rm -f ~/alsa-driver*
rm -f ~/alsa-lib*
rm -f ~/alsa-utils*
Then, just restart your PC as well as your alsa edition should be 1.0.21!
You can verify that you have now certainly had this version of alsa:
Code:
cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.21.
Compiled on Aug 31 2009 for kernel 2.6.28-15-generic (SMP).
Just to be sure everything is well configured, execute this command :
Bookmarks