Hi, On Thu, Apr 02, 2020 at 03:38:23PM +0200, Loïck CHOVET wrote: > Greetings, > > For my internship of Computer Science Engineer student, I have to realise a > KVM. > > The objective is to link embedded card (an Arduino mkr vidor > 4000) to a server and to connect remotely from our computer > to the card to access the server and control it remotely. > > My internship tutor recommended me to look at spice for this > but I'm not sure because spice is more for VM. > Do you think it will be possible to install a Spice server on > such embedded system ?
Not sure. For a project that could be used in bare metal machines
+ spice, you can check:
https://gitlab.freedesktop.org/spice/x11spice
> Also, I have a tiny problem while trying spice on my own computer. I don't
> understand how to compile the last spice-protocol (
> https://gitlab.freedesktop.org/spice/spice-protocol) and spice 0.14 needs
> spice protocol >= 0.14
Spice-protocol is only headers but git master is using meson [0]
and should be as simple as running:
cd spice-protocol
meson . _build --prefix=/usr
ninja -C _build install
[0] https://mesonbuild.com/
PS: autotools was dropped after 0.14.1 at 3394652 "Remove
autotools files in favor of meson" in 2020-03-09
So you can also checkout to 0.14.1 and use it if you prefer,
should be fine for spice server.
Cheers,
Victor
signature.asc
Description: PGP signature
_______________________________________________ Spice-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/spice-devel
