jakfrost
(Stephen Douglas Snow)
February 4, 2024, 6:28pm
21
I think it is one of the flatpak examples isn’t it? I mean at the Gnome site.
alys
(Alys)
February 5, 2024, 1:00am
22
Here’s the manifest and github repo for the Flatpack:
{
"app-id" : "org.gnome.Boxes",
"runtime" : "org.gnome.Platform",
"runtime-version" : "45",
"sdk" : "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.vala"
],
"build-options": {
"prepend-path": "/usr/lib/sdk/vala/bin",
"prepend-ld-library-path": "/usr/lib/sdk/vala/lib"
},
"command" : "gnome-boxes",
"finish-args" : [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--socket=pulseaudio",
"--share=network",
"--device=all",
This file has been truncated. show original
siosm
(Timothée Ravier)
February 5, 2024, 11:16am
23
GNOME Boxes runs an unprivileged / user session level libvirtd instance. This is limited as you can not easily configure networks, device access, etc. For basic use cases that’s enough, but I usually need full libvirtd functionality.
siosm
(Timothée Ravier)
October 25, 2024, 5:38pm
24
Update: I have a mostly working systemd sysext for libvirtd: fedora-sysexts/libvirtd at main · travier/fedora-sysexts · GitHub
Watch out as this is still very experimental, but it appears to be working for me so far.
4 Likes