Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 49

Thread: HP dv6000 Mic

  1. #11
    Join Date
    Oct 2007
    Beans
    19

    Re: HP dv6000 Mic

    Quote Originally Posted by spcwingo View Post
    My wife thanks you, and so do I. I swear, I was pulling my hair out over this one. Your solution was quick and painless. Thanks again.

    EDIT: After reboot it resets itself. Do you know of any way to make the settings stick?
    Glad I could help! I already lost a lot of hair to this one!

    My settings seem to stick ... not really sure why you are not able to see this. I will check my alsa config and let you know if there is some way to make it permanent for you too.

    BTW, which version of ALSA are you running? I am on 1.0.18.

  2. #12
    Join Date
    Jan 2008
    Beans
    51

    Re: HP dv6000 Mic

    here is the output I get, am I doing something wrong?

    I#m on ubuntu jaunty 64 bit


    tim@tim:~$
    tim@tim:~$ wget -O run.py http://www.alsa-project.org/hda-analyzer.py
    --2009-04-04 16:13:44-- http://www.alsa-project.org/hda-analyzer.py
    Resolving www.alsa-project.org... 212.20.107.51
    Connecting to www.alsa-project.org|212.20.107.51|:80... connected.
    HTTP request sent, awaiting response... 302 Found
    Location: http://git.alsa-project.org/?p=alsa....nalyzer/run.py [following]
    --2009-04-04 16:13:45-- http://git.alsa-project.org/?p=alsa....nalyzer/run.py
    Resolving git.alsa-project.org... 212.20.107.51
    Reusing existing connection to www.alsa-project.org:80.
    HTTP request sent, awaiting response... 200 OK
    Length: unspecified [text/plain]
    Saving to: `run.py'

    [ <=> ] 892 --.-K/s in 0s

    2009-04-04 16:13:45 (57.5 MB/s) - `run.py' saved [892]

    tim@tim:~$ python run.py
    Creating temporary directory: /dev/shm/hda-analyzer
    Downloading file hda_analyzer.py
    Downloading file hda_codec.py
    Downloaded all files, executing hda_analyzer.py
    No HDA codecs were found or insufficient priviledges for
    /dev/snd/controlC* and /dev/snd/hwdepC*D* device files.

    You may also check, if you compiled HDA driver with HWDEP
    interface as well or close all application using HWDEP.

    Try run this program as root user.
    tim@tim:~$ sudo python run.py
    Creating temporary directory: /dev/shm/hda-analyzer
    Downloading file hda_analyzer.py
    Downloading file hda_codec.py
    Downloaded all files, executing hda_analyzer.py
    No HDA codecs were found or insufficient priviledges for
    /dev/snd/controlC* and /dev/snd/hwdepC*D* device files.

    You may also check, if you compiled HDA driver with HWDEP
    interface as well or close all application using HWDEP.

    Try run this program as root user.
    tim@tim:~$

  3. #13
    Join Date
    Nov 2008
    Location
    Nashville, Tn
    Beans
    137
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: HP dv6000 Mic

    I get the same errors as above post in jaunty 32bit..

  4. #14
    Join Date
    Jan 2008
    Beans
    51

    Re: HP dv6000 Mic

    I'm definately not an expert but i believe it's something to do with the errors currently in python in Jaunty

  5. #15
    Join Date
    Oct 2007
    Beans
    19

    Re: HP dv6000 Mic

    tim183, how did you install alsa? Was it from source or was it just the regular installation? I would recommend installing from this thread:
    http://ubuntuforums.org/showthread.p...10#post6589810

    I think this should help with the executing the python script. Also do
    ls -l /dev/snd/controlC*
    ls -l /dev/snd/hwdepC*D*

    and check if you have those devices. My guess is that you will not see them if you did not use the alsa script.

    Dawei87, I am running 8.10 64-bit on my machine, but I can try 9.04 32-bit through live cd/usb and let you know what I get.

  6. #16
    Join Date
    Oct 2007
    Beans
    19

    Re: HP dv6000 Mic

    spcwingo, I was able to make the settings stick by writing a python script that made use of hda_codec.py and hda_codec.pyc which are files downloaded when you run hda analyzer. I am attaching the required files here. Simply download them, and throw them into /etc/init.d/. Once you do so, make test_hda.py executable like this:

    sudo chmod +x ./test_hda.py

    Then, run the following command to kick off test_hda.py every time you boot up:

    sudo update-rc.d test_hda.py defaults

    WARNING: test_hda.py was only designed to work for the HP laptop DV6748. For other laptops, please find your card number (0,1,2 etc.), codec number (0,1,2,3, etc), mic node number from hda analyzer as an INTEGER (hda analyzer shows the node's hex number which you will need to convert to an integer) and also the row number for the pin you want to switch your default to (0,1,2 etc.). Feel free to edit test_hda.py to add all this information, and then try running it as root to see if the desired effect is achieved. This code should only be used to make your settings stick if you got your mic working using hda analyzer from alsa-project.org.
    Attached Files Attached Files

  7. #17
    Join Date
    Jan 2008
    Beans
    51

    Re: HP dv6000 Mic

    Quote Originally Posted by sananth View Post
    tim183, how did you install alsa? Was it from source or was it just the regular installation? I would recommend installing from this thread:
    http://ubuntuforums.org/showthread.p...10#post6589810

    I think this should help with the executing the python script. Also do
    ls -l /dev/snd/controlC*
    ls -l /dev/snd/hwdepC*D*

    and check if you have those devices. My guess is that you will not see them if you did not use the alsa script.

    Dawei87, I am running 8.10 64-bit on my machine, but I can try 9.04 32-bit through live cd/usb and let you know what I get.
    tim@tim:~$ ls -l /dev/snd/controlC*
    crw-rw----+ 1 root audio 116, 7 2009-04-06 23:52 /dev/snd/controlC0
    tim@tim:~$ ls -l /dev/snd/hwdepC*D*
    ls: cannot access /dev/snd/hwdepC*D*: No such file or directory
    tim@tim:~$

  8. #18
    Join Date
    Oct 2007
    Beans
    19

    Re: HP dv6000 Mic

    tim183, I was able to see this from the Jaunty live cd. Did you try to install alsa using the scripts mentioned on the forum link I sent you? If not, please try it out and let me know whether that helps.

    In the meantime, I am going to look into hda analyzer and figure out why this is happening. I will keep you posted.

  9. #19
    Join Date
    Jan 2008
    Beans
    51

    Re: HP dv6000 Mic

    Sananth, ok, I will try today

    thanks

  10. #20
    Join Date
    Nov 2008
    Location
    Fortson, GA
    Beans
    1,008
    Distro
    Ubuntu Development Release

    Re: HP dv6000 Mic

    Sorry I'm just now getting back to you. Just thought I would let you know, sananth, you're my new hero. That worked like a charm on this dv6707us. The wifey says thanks too.
    -o)
    /\\
    _\_V
    Message void if penguin is violated...Don't mess with the penguin.

Page 2 of 5 FirstFirst 1234 ... LastLast

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
  •