修复一些问题

This commit is contained in:
2023-03-19 19:29:04 +08:00
parent 8dc9db1f59
commit 542668311d
24 changed files with 330 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
# 判断是否有安装 Qemu User
which qemu-i386 > /dev/null
if [[ ! $? ]]; then
echo 您未安装 Qemu User按回车键后退出
read
exit 1
fi
sudo apt purge qemu-user -y
echo 安装完成,按回车键后退出
read