PINE64
No audio on calls after updating today - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120)
+--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121)
+---- Forum: Mobian on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=139)
+---- Thread: No audio on calls after updating today (/showthread.php?tid=17687)

Pages: 1 2


RE: No audio on calls after updating today - BaronAlbatross - 12-12-2022

(12-12-2022, 08:27 PM)Zebulon Walton Wrote:
(12-12-2022, 07:04 PM)BaronAlbatross Wrote: If you have the time, could you spell out your process please? I have an important call tomorrow and I have no time at all to get it wrong and make a bigger mess!

If you're talking about going back to pulseaudio after having moved to pipewire, it was basically a matter of reversing what was done - disable pipewire and re-enable pulseaudio. I had to play around with it a bit but it came down to the following commands run as the normal mobian user:

Code:
# Disable pipewire
systemctl --user stop pipewire pipewire.socket pipewire-pulse
systemctl --user disable pipewire pipewire.socket pipewire-pulse
systemctl --user mask pipewire pipewire.socket pipewire-pulse

# Enable pulseaudio
systemctl --user unmask pulseaudio pulseaudio.socket
systemctl --user enable pulseaudio pulseaudio.socket
systemctl --user start pulseaudio pulseaudio.socket

It's a good idea to keep a "known to work" SD card on hand just in case. Don't update it once it's you have it in a workable state. Having that has saved my bacon on a few occasions.

Thank you so much! I think I will make a backup after this, it should have been common sense!