I have tried and tried to get sound to work and just can't. Guess it's just above me or something. I have followed the directions at http://ubuntuforums.org/showthread.php?t=205449 a 100 times and still nothing. I put a different sound card to see if maybe it would help still nothing. It sees my sound card. I checked alsamixer nothing muted. I go to the alsa web page and yes my sound card is listed. I did the sudo modprobe snd-au8810 (my sound card). Now this is the only thing that is "different" when I says:
All it does is move back to the command line. OK makes since I only have one driver installed so why would it show a list, right? I added snd-au8810 to my /etc/modules, but used kate instead of nano. But same thing, right? Just one is a bit more user friendly than the other. I remove and reinstall the packages as it says too in
Still nothing. So I follow:
Go back to step 4 and still nothing.
Guess I'm just too stupid to make this work.
James
Now, press the TAB key BEFORE pressing the ENTER key to see a list of modules. Try to find the module that matches the driver you found in step 3.
Getting the ALSA drivers from a *fresh* kernel
ALSA driver Compilation
If you are here, then either your soundcard driver could not be loaded with modprobe, or you want to compile the drivers yourself from scratch. Good luck to you!
There are two main ways the sources of alsa-drivers are made available to you. One is though the apt-get system. Using this system would be the recommended system since most of the heavy lifting is done for you.
The other way, is getting the latest drivers from alsa-project.org. This page has the latest drivers available, which you might want to fix problems with. However, these have not been tested with Ubuntu and therefore should be used with caution.
Using alsa-source
Type the following to shell: (note: module-assistant is optional, it will compile the package for you)
Code:
sudo apt-get install build-essential linux-headers-$(uname -r) module-assistant alsa-source
Code:
sudo dpkg-reconfigure alsa-source
You now have a big blue dialog box (left and right keys to choose 'Yes' and 'No', Enter key proceed). Answer yes (for ISA-PNP - recommended by package maintainers), then yes again (for debugging - recommended by package maintainers).
Now you must pick which driver you want to install. Use space to select and deselect modules, and up and down to navigate.
From General Help step 3, you should know the name of your driver. Deselect 'all' (the * will go away), and select your driver. In my case, I deselected 'all' then selected 'via82xx'. Hit Enter. Almost home free!
If you chose module-assistant
Code:
sudo module-assistant a-i alsa-source
If the progress bar reaches 100% with no errors, you will have installed the drivers successfully. Resume this guide from General Help step 4.
If you are here, then either your soundcard driver could not be loaded with modprobe, or you want to compile the drivers yourself from scratch. Good luck to you!
There are two main ways the sources of alsa-drivers are made available to you. One is though the apt-get system. Using this system would be the recommended system since most of the heavy lifting is done for you.
The other way, is getting the latest drivers from alsa-project.org. This page has the latest drivers available, which you might want to fix problems with. However, these have not been tested with Ubuntu and therefore should be used with caution.
Using alsa-source
Type the following to shell: (note: module-assistant is optional, it will compile the package for you)
Code:
sudo apt-get install build-essential linux-headers-$(uname -r) module-assistant alsa-source
Code:
sudo dpkg-reconfigure alsa-source
You now have a big blue dialog box (left and right keys to choose 'Yes' and 'No', Enter key proceed). Answer yes (for ISA-PNP - recommended by package maintainers), then yes again (for debugging - recommended by package maintainers).
Now you must pick which driver you want to install. Use space to select and deselect modules, and up and down to navigate.
From General Help step 3, you should know the name of your driver. Deselect 'all' (the * will go away), and select your driver. In my case, I deselected 'all' then selected 'via82xx'. Hit Enter. Almost home free!
If you chose module-assistant
Code:
sudo module-assistant a-i alsa-source
If the progress bar reaches 100% with no errors, you will have installed the drivers successfully. Resume this guide from General Help step 4.
Guess I'm just too stupid to make this work.
James
Comment