I have been trying hard to understand how to make my sound card to work again on my Ubuntu server 18.04 I have Codec: Realtek ALC269VB and I need it to work for my MPD server of which I have already installed. I have alsamixer setup and everything is ON and with high volume.
==> /proc/asound/card0/codec#0 <==
Codec: Realtek ALC269VB
Address: 0
AFG Function Id: 0x1 (unsol 1)
Vendor Id: 0x10ec0269
Subsystem Id: 0x10280577
Revision Id: 0x100100
I have the card information above and I now need to have it work with linux. trying cmus to play sounds and with no luck at all.. it shows the progress of playing the file but no sound is coming out the Speakers. I also tried:
aplay /usr/share/sounds/alsa/Noise.wav
and the result not giving me an Error at all.. But still, No sound.
Playing WAVE '/usr/share/sounds/alsa/Noise.wav' : Signed 16 bit Little Endian, Rate 48000 Hz, Mono
Following several instructions online HdaIntelSoundHowto I have setup the file:
sudo nano /etc/modprobe.d/alsa-base.conf
with the following :
options snd-hda-intel model=auto
And then sudo alsa force-reload with no luck at all..
I have also tried to put realtek instead of auto but with the same result - Nothing comes out from the speakers at all.
As instructed:
>> cat /proc/asound/card0/codec* | grep Codec
Result:
Codec: Realtek ALC269VB
Codec: Intel PantherPoint HDMI
That mean I have the Realtek ALC269VB Codec installed - what I need now is to make the magic happened and make the speakers works as well. In the instructions it say:
options snd-hda-intel model=MODEL
But I don't know my model since following the page HD-Audio-Models at line 63 I found that:
ALC269
======
laptop-amic Laptops with analog-mic input
laptop-dmic Laptops with digital-mic input
Nothing mentioning the VB and that I can use anything else. so I have put MODEL as auto
Now, Following the instructions:
>> cat /proc/asound/card0/pcm0c/info
Result:
card: 0
device: 0
subdevice: 0
stream: CAPTURE
id: ALC269VB Analog
name: ALC269VB Analog
subname: subdevice #0
class: 0
subclass: 0
subdevices_count: 1
subdevices_avail: 1
Means that I have card 0 and device 0 attached to that codec, and it is ALC269VB Analog and not the HDMI. so that should be the right one, correct?
Also tried to put the following as well : options snd-hda-intel model=basic with no luck at all.
forcing also to reload and rebooting - nothing!
I would be happy to get it back and running - i am not sure what i am doing wrong and I would be happy to get help from you experts.
Please assist! Thanks in advanced