I wonder if someone could help me, because as the title says, Ubuntu doesn't really likes to play sound...
I turn on my laptop and sometimes it plays sound, sometimes not and sometimes it plays and some minutes later, it doesn't plays anymore, what is kind of annoying. Do you know what can I do (beside don't listen to music or videos)??? I already tried restarting the PC (rarely works), restart ALSA with sudo alsa force-reload
, I checked the alsamixer
command to check the mixer and everything there is OK, I've checked the output and it detects the speakers... On Windows the sound works perfectly, so the speaker is perfect. Can anyone help me?
I'm using Ubuntu 20.04.2 LTS x64 and my audio device is Intel Corporation Sunrise Point-LP HD Audio.
Thank you!
sudo apt purge --remove pulseaudio
and during the purge it said that there was no such file or directory again. Then, I installed it again and rebooted my PC and it's fine. Resuming, I don't really know if that was going to work, because I haven't found any directory with that name... – marcoval Feb 08 '21 at 18:50mv ~/.config/pulse/ ~/.config/pulse_old/
then reboot. The rest of commands under option #3 is for restoring the old configuration directory which you have renamed in the first command. You probably ran all the commands which is not how it works. If purging then reinstalling pulseaudio solved the problem, then runningmv ~/.config/pulse/ ~/.config/pulse_old/
then rebooting should solve it as well, because,sudo apt remove pulseaudio
does not remove~/.config/pulse/
whilesudo apt purge --remove pulseaudio
does. That is why. – Raffa Feb 08 '21 at 19:22