42d84073ff
This change requires you to run the bundled pre-install script, that will a new group 'kvm' with proper permissions for the /dev/kvm device, to allow unprivileged users (members of the kvm group) to run kvm-accelerated qemu instances. Please note that this change prevents non-root and non-kvm members from using /dev/kvm acceleration.
3 lines
53 B
Bash
Executable File
3 lines
53 B
Bash
Executable File
#!/bin/sh
|
|
getent group kvm || /usr/sbin/groupadd kvm
|