2

After having some issues with sound i decided to delete the whole /etc/pulse directory, thinking that they are just temporary files. I deleted the files from terminal so I cannot restore them from trash. Now i have no sound, how do i fix it?

I tried:

sudo apt remove pulseaudio
sudo apt install pulseaudio
thomasrutter
  • 36,774

1 Answers1

-1

Did reinstalling pulseaudio restore the files to /etc/pulse? The next step would be to check if pulseaudio is running.

pulseaudio --check
echo $?

0 = running

Or try: ps -ef | grep pulse

The default configuration is for pulseaudio to try to restart itself whenever it quits but it could be running into errors when starting.

This might be helpful: How can I restart pulseaudio without logout?

Eliah Kagan
  • 117,780