From 5d0ade773d429832f9cf64a895b39f531fb88224 Mon Sep 17 00:00:00 2001 From: aiminick Date: Wed, 13 Oct 2021 22:42:56 +0800 Subject: [PATCH] Create qemu_winx11.md --- docs/qemu_winx11.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/qemu_winx11.md diff --git a/docs/qemu_winx11.md b/docs/qemu_winx11.md new file mode 100644 index 0000000..a902294 --- /dev/null +++ b/docs/qemu_winx11.md @@ -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 +```