I need help.
I have installed Ubuntu 20.04 on my Toshiba CB35-B3340, no dual booting. I have no sound from my speakers or headphones.
When I go to sound settings, the only output device shown is HDMI/Display port.
When I run alsamixer, I only see S/PDEF, there is no master or headphones, etc.
I have tried many of the suggestions posted without success. I am not too experienced, but will to try. Any suggestions are appreciated.
/etc/asound.conf
withcard number
to: 1 anddevice number
to: 0, save and reboot. – May 07 '21 at 18:03/etc/asound.conf
, card number set to: 0, device set to 3, reboot. Then follow to this solution in order to select the analog output as default audio device: https://askubuntu.com/questions/1038490/how-do-you-set-a-default-audio-output-device-in-ubuntu-18-04 – May 07 '21 at 18:59cat /proc/asound/cards
and share their output? – May 07 '21 at 19:55sudo gedit /etc/asound.conf
. Change the two lines that you wrote by:defaults.pcm.card 0 defaults.ctl.card 0
(no need to reboot) and see ifalsamixer
loads the card that have "master, headphones, etc" by default, and of course check if you have sound (Check that the "Master" have a 00 at the bottom, that means that is not muted, you can mute/unmute by pressing the key M). – May 07 '21 at 20:18pactl
will not work because you only have one module, which is the only one that could be set as default, so there is nothing to do with that, I had been expecting that your output had some analog and hdmi modules. About the sound bar, I can't tell you if that is a good sign or not. Try installingsudo apt install pavucontrol
, then execute withpavucontrol
, you will get a GUI to manage the sound more easily, perhaps that helps you. – May 07 '21 at 20:52