Create qemu_winx11.md

This commit is contained in:
aiminick 2021-10-13 22:42:56 +08:00 committed by GitHub
parent 9f77b18304
commit 5d0ade773d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
docs/qemu_winx11.md Normal file
View File

@ -0,0 +1,11 @@
## Upgrade buster-backports qemu version
```
pkgs=$(for i in qemu qemu-block-extra:arm64 qemu-guest-agent \
qemu-system qemu-system-arm qemu-system-common qemu-system-data \
qemu-system-gui qemu-system-mips qemu-system-misc qemu-system-ppc \
qemu-system-sparc qemu-system-x86 qemu-utils; \
do echo -n "$i=$(apt-cache madison qemu|head -n1|awk '{print $3}') "; \
done) ;\
apt install $pkgs
```