Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: [opgelost][8.10] Geluid P5QL-moederbord  (gelezen 1537 keer)

[opgelost][8.10] Geluid P5QL-moederbord
« Gepost op: 2009/03/18, 15:09:18 »
Ik heb met mijn 'nieuwe' computer een probleempje met het geluid, dat werkt niet.
Ik gebruik ubuntu x64. Onder xp x64 werkt alles perfect, dus ik vermoed dat het aan de drivers ligt.
Ik heb hetvolgende geprobeert:  http://www.kerrywong.com/2008/11/12/asus-p5ql-pro-audio-configuration-in-ubuntu-810-64-bit/comment-page-1/
maar ik kom in de problemen bij de stap van Sound preferences, mijn lijst ziet er helemaal anders uit als die in de tutorial, en geen van allen geeft geluid.

Weet er iemand wat ik hiertegen kan doen, of kan iemand mij even op weg zetten?
« Laatst bewerkt op: 2009/03/19, 17:57:16 door Ward De Ridder »
http://leerubuntu.org (ubuntu zonder moeilijke woorden)
VoidWarranties (Hackerspace) Antwerpen
Microsoft isn't evil, they just make really crappy operating systems. - Linus Torvalds

Re: [8.10] Geluid P5QL-moederbord
« Reactie #1 Gepost op: 2009/03/18, 19:05:41 »
Wat is het verschil dan met jou geluids voorkeuren, ka je hier een scherm afdruk plaatsen?
Ik neem aan dat je via de terminal het bestand geopend hebt?
sudo gedit /etc/modprobe.d/alsa-base en dan deze regel ingevoerd hebt in dat bestand
options snd-hda-intel probe_mask=1
Bestand opslaan en sluiten, dan in de terminal  sudo lshw -C sound zodat je die output krijgt zoals genoemd in het artikel?
En voor de zekerheid voor dit commando sudo zetten sudo usermod -a -G audio <username> <--- hier dus jou naam neer zetten en herhalen voor elke andere gebruiker.
En uit eindelijk wordt verwezen naar de nieuwste source versie van alsa, probeer het eerst de versie die in Ubuntu zit, compileren werkt ook niet altijd.
En voor de zekerheid je pc herstarten na de veranderingen, voor de zekerheid.

Met vriendelijke groet,

Gijs
In der Beschränkung zeigt sich der Meister.

jessedb

  • Gast
Re: [8.10] Geluid P5QL-moederbord
« Reactie #2 Gepost op: 2009/03/18, 19:13:42 »
De oplossing voor dit probleem (op 32 bit):
Here’s one of my first problems I had during the installation of Ubuntu 8.10 distribution on my acer aspire 6920 laptop. This laptop has a HDA Intel ACL889 sound card.

The problem was that I had no sound. After some research on Google, I found that I had to update my version of the alsa to version 1.0.18a. The latest version being released was 1.0.19, so I decided to choose this one.

To do this, we must begin by determining our version of alsa as follows :

cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.17.
We must then install the necessary tools to compile along with the kernel headers :

sudo apt-get -y install build-essential ncurses-dev gettext xmlto
sudo apt-get -y install linux-headers-`uname -r`

Then, we go in our personal folder and download alsa-driver, alsa-lib and alsa-utils :

cd ~
wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.19.tar.bz2
wget ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.19.tar.bz2
wget ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.19.tar.bz2

After that, we create a new folder for the compilation and installation of the 3 files. Then, we move the 3 tar files that we just downloaded in this folder :

sudo mkdir -p /usr/src/alsa
cd /usr/src/alsa
sudo cp ~/alsa* .

Unpack the 3 tar files :

sudo tar xjf alsa-driver*
sudo tar xjf alsa-lib*
sudo tar xjf alsa-utils*

We compile and install alsa-driver :

cd alsa-driver*
sudo ./configure --with-cards=hda-intel --with-kernel=/usr/src/linux-headers-$(uname -r)
sudo make
sudo make install

We compile and install alsa-lib :

cd ../alsa-lib*
sudo ./configure
sudo make
sudo make install

We compile and install alsa-utils :

cd ../alsa-utils*
sudo ./configure
sudo make
sudo make install

Then, we remove the 3 tar files in our personal folder that are not anymore necessary :

rm -f ~/alsa-driver*
rm -f ~/alsa-lib*
rm -f ~/alsa-utils*

Last very important step, this must be added “options snd-hda-intel model=auto” without quotes at the end of this file “/etc/modprobe.d/alsa-base”. You can use gedit, kate or your favorite text editor like this :

sudo gedit /etc/modprobe.d/alsa-base

ou

sudo kate /etc/modprobe.d/alsa-base

Then, just restart your computer and your sound should work!

You can verify that you have now indeed the alsa version 1.0.19 :

cat /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.19.

Dit uitvoeren en dan zou het moeten werken, hopelijk........

Jessedb
« Laatst bewerkt op: 2010/04/15, 23:45:41 door Wanda »

Re: [opgelost][8.10] Geluid P5QL-moederbord
« Reactie #3 Gepost op: 2009/03/19, 17:58:12 »
Bedankt jessedb, ik heb me hierop sufgesurft.
Dit werkt ook met x64.

Ward
http://leerubuntu.org (ubuntu zonder moeilijke woorden)
VoidWarranties (Hackerspace) Antwerpen
Microsoft isn't evil, they just make really crappy operating systems. - Linus Torvalds