summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/108/permissions/1364
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/zero-shot/108/permissions/1364')
-rw-r--r--results/classifier/zero-shot/108/permissions/136430
1 files changed, 30 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/108/permissions/1364 b/results/classifier/zero-shot/108/permissions/1364
new file mode 100644
index 00000000..7131ab1f
--- /dev/null
+++ b/results/classifier/zero-shot/108/permissions/1364
@@ -0,0 +1,30 @@
+permissions: 0.983
+network: 0.981
+device: 0.939
+graphic: 0.935
+other: 0.901
+vnc: 0.763
+performance: 0.726
+semantic: 0.694
+PID: 0.639
+debug: 0.478
+boot: 0.401
+socket: 0.382
+KVM: 0.331
+files: 0.052
+
+Support vmnet networking without elevated permissions
+Additional information:
+Here is a command, that doesn't work when running as normal user:
+```bash
+$ qemu-system-aarch64 \
+    -device virtio-net-pci,netdev=net0 \
+    -netdev vmnet-bridged,id=net0,ifname=en0 \
+    -machine virt
+```
+It fails with:
+```
+qemu-system-aarch64: -netdev vmnet-bridged,id=net0,ifname=en0: cannot create vmnet interface: general failure (possibly not enough privileges)
+```
+
+When running the same command using elevated permissions (i.e. via `sudo`), it works without any issue.