Ubuntu Intel-Hda Headphone Jack and Low Volume Fix

So I was having problems with the default version of ALSA (1.0.17) installed in Ubuntu Intrepid (8.04), so I decided to grab the latest snapshot of ALSA and compile it from scratch. Here is the process I followed:

  1. Make sure you have build essentials installedsudo apt-get install build-essential
  2. Change into a working directory, I used the following:cd /tmp
  3. Download the latest snapshot wget http://www.alsa-project.org/snapshot/?package=alsa-driver
  4. Extract the drivers you just downloadedtar -jxvf alsa-driver-*.tar.bz2
  5. Change into the newly extracted directorycd alsa-driver-*
  6. Time to compile the source, do the following./configure if all goes well this command should end without any errors.
  7. Run make (this may take a little while depending on your machines processing power)make
  8. Let’s install the driverssudo make install
  9. Finally run the following script to create necessary devicessudo ./snddevices
  10. You may also want to run the alsaconf command and configure your default sound card.
  11. All done, reboot!

If you don’t hear any sound after you reboot, adjust your sound levels in gnome volume control (run the command gnome-volume-control or by double clicking on the speaker icon). Adjust your Master and PCM levels. Don’t forget about the Speaker level on the far right, adjust this also!

About the Author