Results 1 to 1 of 1

Thread: HOW TO: Get Sound in Jaunty through computer speakers

  1. #1
    Join Date
    Apr 2007
    Location
    Pennsylvania
    Beans
    107
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    HOW TO: Get Sound in Jaunty through computer speakers

    Many of you with new laptops might be wondering why you get sound out of the headphone jacks but not the computer speakers itself.

    The answer is simple. You have to do some manual editing a configuration file.

    First you need to find the chipset. You can find out by this command

    Code:
    aplay -l
    The output should be something like:

    Code:
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
      Subdevices: 0/1
      Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 1: STAC92xx Digital [STAC92xx Digital]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 3: INTEL HDMI [INTEL HDMI]
      Subdevices: 1/1
      Subdevice #0: subdevice #0
    Then you need to look at this file: /usr/share/doc/alsa-base/driver/ALSA-Configuration.txt.gz

    This file will tell you what model that you want.

    If you have a HP DV5-xxxxxx, your model is

    Next you need to run the following command

    Code:
    gksu gedit /etc/modprobe.d/alsa-base
    At the end of the file you need to enter

    Code:
    options snd-hda-intel model=<model>
    <model> will need to be the model for your chipset. Like I said for the HP DV5 series the model is "hp-dv5".

    What should be at the end of the file should be

    Code:
    options snd-hda-intel model=hp-dv5
    You want to save the file and exit out. Then reboot your machine and you should have sound. You may have to try several things.

    If you do not want to restart especially if you are going to try multiple things, you can run the following command

    Code:
    pulseaudio -k; sudo service alsa-utils stop; sudo rmmod snd_hda_intel; sudo modprobe snd_hda_intel; sudo service alsa-utils start; pulseaudio -D
    you can take out the pulse audio commands if you are not utilizing pulseaudio.



    **Some information came from Zorael post about this issue that many people are facing.
    Last edited by bodhi.zazen; May 6th, 2009 at 06:06 PM. Reason: fixed code box :)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •