Announcement

Collapse
No announcement yet.

Installing audio driver on Santa Rosa - Solved

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #16
    Re: Installing audio driver

    Step one of the guide was successful so I don't really know how to continue. This is the result:

    mikael@Tricorder:~$ aplay -l
    **** List of PLAYBACK Hardware Devices ****
    card 0: Intel [HDA Intel], device 0: HDA Generic [HDA Generic]
    Subdevices: 1/1
    Subdevice #0: subdevice #0
    card 0: Intel [HDA Intel], device 6: Si3054 Modem [Si3054 Modem]
    Subdevices: 1/1
    Subdevice #0: subdevice #0


    Edit:
    I followed some of the later steps in the guide but did not get any results. Do you think I'd have better luck with some other Ubuntu version?

    Comment


      #17
      Re: Installing audio driver

      Success!

      I changed to the normal Ubuntu (probably for nothing but I don't dislike it) and followed instructions I previously misunderstood that I got from Zepto where I bought the laptop. I had to copy/paste it row by row but now the sound works. I probably could have done it with Kubuntu but I didn't think of it before I got frustrated enough to ry Ubuntu to see if it would work as-is.

      Thanks for your help!

      This is what I did:

      #!/bin/bash
      sudo apt-get install build-essential ncurses-dev gettext libncurses5-dev linux-headers-`uname -r`
      sudo mkdir -p /usr/src/alsa
      cd /usr/src/alsa
      sudo wget ftp://ftp.alsa-project.org/pub/drive...1.0.15.tar.bz2
      sudo wget ftp://ftp.alsa-project.org/pub/lib/a...1.0.15.tar.bz2
      sudo wget ftp://ftp.alsa-project.org/pub/utils...1.0.15.tar.bz2
      sudo tar xjf alsa-driver-1.0.15.tar.bz2
      sudo tar xjf alsa-lib-1.0.15.tar.bz2
      sudo tar xjf alsa-utils-1.0.15.tar.bz2
      sudo rm alsa-driver-1.0.15.tar.bz2
      sudo rm alsa-lib-1.0.15.tar.bz2
      sudo rm alsa-utils-1.0.15.tar.bz2
      cd alsa-driver-1.0.15
      sudo ./configure --with-cards=hda-intel
      sudo make
      sudo make install
      cd ../alsa-lib-1.0.15
      sudo ./configure
      sudo make
      sudo make install
      cd ../alsa-utils-1.0.15
      sudo ./configure
      sudo make
      sudo make install
      sudo echo "options snd-hda-intel model=toshiba position_fix=0 enable=yes
      alias snd-card-0 snd-hda-intel
      alias sound-slot-0 snd-hda-intel
      alias sound-slot-0 snd-card-0
      alias sound-service-0-0 snd-mixer-oss
      alias sound-service-0-1 snd-seq-oss
      alias sound-service-0-3 snd-pcm-oss
      alias sound-service-0-8 snd-seq-oss
      alias sound-service-0-12 snd-pcm-oss" | sudo tee -a /etc/modprobe.d/alsa-base
      sudo mv /lib/modules/2.6.22-14-generic/ubuntu/media/snd-hda-intel/snd-hda-intel.ko /tmp
      sudo depmod -a
      sudo reboot

      Comment

      Working...
      X