It looks like rpm-ostree says spice-vdagent is already on the system but I’m unsure how to enable it. The usual tricks:
$ [sudo] systemctl enable --now spice-vdagent
return exit code 1.
I’m betting there some other way to enable services given the immutable nature of Bluefin?
spice-vdagent is a user service
systemctl enable --user --now spice-vdagent
You can also run a system level socktet.
systemctl enable --now spice-vdagentd.socket
Failed to enable unit: Unit spice-vdagent.socket
Similar to the error message when trying to enable as system-level or user-level service.
the socket is spice-vdagentd.socket
not spice-vdagent.socket
.