February 20, 20215 yr I have built a multi-user system (dedicated GPUs to VMs, running long HDMI/USB cables under the house to my kids rooms). Is there an easy way to provide VM power on/off access to my kids, but only to their own VMs? Ideally via an iOS app, or possibly by using some type of HTTP call? I don't want to expose the server to them, and I don't want them to be able to access other VMs. So I don't think an app like ControlR would work? Has anyone run across a way to accomplish this? Thanks! Rob
February 20, 20215 yr Multiple ways of scripting this, with varying degrees of difficulty and security. Bottom line, you can start any VM with a console command, how you trigger that command is the interesting part. virsh start <vmname> You could write a user script that checks for the presence of a specific file on a specific share, and when it finds the file, starts the VM and deletes the file. That way you could use an SMB client on the phone to push a small file which would trigger the VM start. You could also directly send the ssh command from the phone, but that would be more complicated on the phone end and less secure. ControlR may have implemented limited users at some point, I don't know.
Archived
This topic is now archived and is closed to further replies.