blob: 661e7706c7b1eb7547cca563351f9c485cd474e7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
network: 0.981
instruction: 0.956
device: 0.939
graphic: 0.935
other: 0.901
vnc: 0.763
mistranslation: 0.739
semantic: 0.694
boot: 0.401
socket: 0.382
KVM: 0.331
assembly: 0.292
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.
|