The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Help with kubuntu

    Discussion in 'Linux Compatibility and Software' started by Sub-D, Apr 24, 2007.

  1. Sub-D

    Sub-D Notebook Evangelist

    Reputations:
    56
    Messages:
    608
    Likes Received:
    0
    Trophy Points:
    30
    Hey, I managed to get Kubuntu 7.04 up and running alongside Vista thanks to the help of some helpful members of the forum. When I first booted Kubuntu off of the Live CD I was met with the most god-awful feedback although I hoped that this may be because I was running the OS from the system however after installing the OS I am still experience this high-pitched whine. I presume that I need to find an updated driver however I am interested to know if anyone else has experienced such a problem and also how they solved it.

    Thanks for your time!
     
  2. BigV

    BigV Notebook Deity

    Reputations:
    137
    Messages:
    890
    Likes Received:
    0
    Trophy Points:
    30
    interesting... I got a similar problem...

    to shut off sound, open a terminal, type "sudo /etc/init.d/alsa-utils stop" this will at least not melt your ears off.

    try looking in your home directory for a file called .asoundrc and .asoundrc.asoundconf

    you could open a terminal (Konsole in KDE,) which should already be in your home directory, and type "ls -a | grep .asound"

    if you get any results, delete them. "rm -f .asoundrc*"

    or you could open Konquerer and show hidden files.

    this worked for me at least.
     
  3. mattireland

    mattireland It used to be the iLand..

    Reputations:
    261
    Messages:
    1,162
    Likes Received:
    0
    Trophy Points:
    55
    Cool thanks when I told my friend this also helped him.
     
  4. Pitabred

    Pitabred Linux geek con rat flail!

    Reputations:
    3,300
    Messages:
    7,115
    Likes Received:
    3
    Trophy Points:
    206
    Code:
    find / -name .asoundrc -exec rm -f {} \; 2>/dev/null
    Type that in EXACTLY as I have it at a command prompt, and it will remove all instances of .asoundrc that your user has access to. But you can usually just type:
    Code:
    rm -f ~/.asoundrc
    and have it accomplish the same thing.