mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-12-14 02:52:03 +08:00
新增安装运行库功能
This commit is contained in:
13
InstallRuntime/remove/arm64.sh
Normal file
13
InstallRuntime/remove/arm64.sh
Normal file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
arch=arm64
|
||||
libPath=/usr/lib/aarch64-linux-gnu
|
||||
package=$arch-runtime-for-qemu
|
||||
|
||||
if [[ ! -d $libPath ]]; then
|
||||
echo "未安装 $arch 运行库,按回车键退出"
|
||||
read
|
||||
exit 1
|
||||
fi
|
||||
sudo apt purge $package -y
|
||||
echo 卸载完成,按回车键退出
|
||||
read
|
||||
Reference in New Issue
Block a user