I was playing around with Chrome Remote Desktop and after a restart of my Ubuntu Gnome 17.04 box, things got really weird. First, I was prompted for a second entry of my password. Then, all my Google Chrome extensions were reset. And, finally, I noticed that I had no sound whatsoever.
After digging around in the audio settings, I discovered the following:
It looks like the original sound output was switched over to Chrome Remote Desktop with no option to reset it. Overall my computer felt like I was logged into a guest setting.
How the heck do I fix this?
7 Answers
This is what I did to fix the same issue. This way you don't have to restart your machine:
sudo rm -rf ~/.config/chrome-remote-desktop
killall pulseaudio
pulseaudio --start
gnome-shell --replaceIt was also affecting my Gnome Apps. I was mad because I spent hours thinking it was because of my Yubikey since it's a U2F/FIDO2 Security Key. So I made sure to be forceful. I hope this is a cure-all for some folks until Google can make some fixes, I sent a feedback report to them about this.
5There is some problem with Chrome Remote Desktop with Ubuntu. To get your system sound back for all applications you should remove the extension from both Chrome and Ubuntu.
Run the following command:
sudo apt-get remove chrome-remote-desktopand restart Ubuntu.
2Somehow I manage to make the audio work in Ubuntu 18.04 with Chrome Remote Desktop still installed, by creating file .chrome-remote-desktop-session in user folder
cd ~
touch .chrome-remote-desktop-sessionand put this lines to the file
unset PULSE_CONFIG_PATH
unset PULSE_RUNTIME_PATH
unset PULSE_SINK
unset PULSE_STATE_PATH
DESKTOP_SESSION=ubuntu XDG_CURRENT_DESKTOP=Unity /usr/sbin/lightdm-session 'gnome-session --session=ubuntu'I don't know if restarting ubuntu is required or not, but I realize this works after reboot
Ref:
2I found that by removing (rather, renaming) the ~/.config/chrome-remote-desktop directory and restarting, my sound defaulted to the standard line out.
I used this command to refresh the devices.
pacmd unload-module module-udev-detect && pacmd load-module module-udev-detectIt did the job, the sound test worked. Although, I was still not able to hear the sound in Chrome (YouTube or Hangouts, for example).
At least for now I ended up uninstalling Chrome remote desktop from my machine.
if you are disappointed in Chrome Remote Desktop app and want to uninstall it try these steps:
Uninstall New App
- open new Chrome tab and navigate to
chrome://apps - find Chrome Remote Desktop app there
- right-click
- select Remove from Chrome
- A message may appear asking if you want to remove the app. Click Remove.
(source: )
Uninstall Old App
- Open Terminal
sudo apt purge chrome-remote-desktopsudo apt autoremove
So, I was looking at the sound settings again and found a link to the chrome-remote-desktop in the output, which I had not previously seen.
I ran:
sudo rm -rf ~/.config/chrome-remote-desktop
killall pulseaudio
pulseaudio --start
gnome-shell --replaceSound has been working through the built-in speakers in all the apps I want.