TLDR: How do i get my audio devices to show up without logging in at the physical machine?
I’m trying to play audio from the speakers connected to my computer using spotifyd. Everything works fine when I’m logged in. I can run spotifyd, select the right audio output and play music.
But I’d like to have the service available on startup, without needing to physically log into the machine.
The barrier I’m hitting is setting the audio sink. If I’ve already logged into the machine, I can ssh from another device and use pactl list sinks to see the connected devices. Then use
Can I get audio running without being logged in to Gnome? Perhaps some combination of aplay and pipewire directly? I don’t really understand how the audio stack works.
I think audio with pipewire is a user process, and thus requires the user to be logged in.
Since the ssh session is not a gui it does not enable the pipewire session for that user.
Can you log in then leave the screen locked and have audio the way you wish?; accessible via the ssh session?
You might be able to start pipewire from the ssh session, but then the ssh session would need to remain active for pipewire to continue running.
Agree that pipewire being a user process is the issue. Logging in and locking the screen does work, but feels like too much of a compromise.
Do you have any suggestions on how to run pipewire from an ssh session? I’ve tried just starting the pipewire systemd service, but got some RTKit errors.
If I gui login, I get the following logs from pipewire.service
[kyle@monolith ~]$ journalctl --user-unit pipewire.service -b
Nov 20 15:06:57 monolith systemd[1596]: Started pipewire.service - PipeWire Multimedia Service.
Nov 20 15:06:57 monolith pipewire[2344]: mod.rt: Can't find xdg-portal: (null)
Nov 20 15:06:57 monolith pipewire[2344]: mod.rt: found session bus but no portal
Nov 20 15:06:57 monolith pipewire[2344]: mod.x11-bell: XOpenDisplay() failed
Nov 20 15:06:58 monolith pipewire[2344]: default: can't setup properties: No such file or directory
If I reboot, then manually start pipewire.service, I get issue with RTKit
[kyle@monolith ~]$ systemctl --user start pipewire.service
[kyle@monolith ~]$ journalctl --user-unit pipewire.service -b
Nov 20 15:05:18 monolith systemd[1558]: Started pipewire.service - PipeWire Multimedia Service.
Nov 20 15:05:18 monolith pipewire[2183]: mod.rt: Can't find xdg-portal: (null)
Nov 20 15:05:18 monolith pipewire[2183]: mod.rt: found session bus but no portal
Nov 20 15:05:18 monolith pipewire[2183]: mod.rt: RTKit error: org.freedesktop.DBus.Error.AccessDenied
Nov 20 15:05:18 monolith pipewire[2183]: mod.rt: could not set nice-level to -11: Permission denied
Nov 20 15:05:18 monolith pipewire[2183]: mod.x11-bell: XOpenDisplay() failed
Nov 20 15:05:18 monolith pipewire[2183]: mod.rt: RTKit error: org.freedesktop.DBus.Error.AccessDenied
Nov 20 15:05:18 monolith pipewire[2183]: mod.rt: could not make thread 2194 realtime using RTKit: Permission denied
The new RTKit lines are
mod.rt: RTKit error: org.freedesktop.DBus.Error.AccessDenied
mod.rt: could not set nice-level to -11: Permission denied
mod.rt: RTKit error: org.freedesktop.DBus.Error.AccessDenied
mod.rt: could not make thread 2194 realtime using RTKit: Permission denied
Some googling suggested I should add my user to the rtkit group, but that didn’t change anything.
Gonna keep trying things, but open to any suggestions.