0

So I've followed this guide to install the OSS4 sound drivers, but after installing it (second terminal command in the guide), it failed loading it, and I was left with no sound. I reinstalled linux-sound-base and switched back to ALSA, restarted the computer with no success. I then removed alsa-base, pulseaudio and linux-sound-base altogether, and re-installed them. It broke my System Settings, but I was able to repair the damage using apt-get install ubuntu-desktop.

Output for aplay -l is: aplay: device_list:268: no soundcards found...

When I open the Sound section in System Settings, the only output device listed is "Dummy Output", and none are listed under the "Input" tab.

I'd like to know what my options are, aside from reinstalling the entire operating system. Thanks in advance!

2 Answers2

1

I've carefully read the linked instructions and I cannot help but notice that down at the bottom it lists instructions for reversing its changes. Your post doesn't appear to indicate you did that reversing.

I submit that it would be helpful to you to either uninstall those packages installed using those linked instructions, or at the very least, determine if they are still installed.

I'm no expert at this, but if you like doing stuff with command lines, you might try this one to see which OSS4 packages may still be installed.

dpkg -l | grep -i oss4

Otherwise I'd advise, as I so frequently advise, installing the Synaptic Package Manager, and either using its HISTORY (located under the file menu), or a search, to see which oss4 packages are currently installed on your system, and mark them for removal. Considering how easy Synaptic makes this operation, I'm surprised it isn't mentioned more often.

In the end, you may still need to reinstall your entire system, but I'm sure that if you are ever going to succeed in the configuration of your recalcitrant sound device, you are first going to have to overcome its driver issues.

gyropyge
  • 2,568
0

As Alsa drivers now comes with the linux kernel , you can first try to run a normal software update:
it will hopefully works except if your are already at last kernel version.

In this case, try to force a kernel reinstall successively copying and running this 4 commands in a terminal :

sudo apt-get clean -qq    
sudo apt-get update   
sudo apt-get install --reinstall linux-image-`uname -r` 
sudo apt-get install --reinstall linux-image-extra-`uname -r`

Then reboot

laugeo
  • 2,880
  • 1
  • 14
  • 12