2022-08-11 21:54:20 +08:00
|
|
|
|
#!/bin/sh
|
2022-09-24 21:22:29 +08:00
|
|
|
|
# 使用系统默认的 sh 运行
|
|
|
|
|
#################################################################################################################
|
|
|
|
|
# 作者:gfdgd xi、为什么您不喜欢熊出没和阿布呢
|
2022-12-18 13:04:24 +08:00
|
|
|
|
# 版本:3.0.0
|
2022-10-02 22:08:12 +08:00
|
|
|
|
# 更新时间:2022年10月02日
|
2022-09-24 21:22:29 +08:00
|
|
|
|
# 感谢:感谢 wine、deepin-wine 以及星火团队,提供了 wine、deepin-wine、spark-wine-devel 给大家使用,让我能做这个程序
|
|
|
|
|
# 基于 sh
|
|
|
|
|
#################################################################################################################
|
2022-11-06 12:49:34 +08:00
|
|
|
|
# 非强制性的必应组件,所以成功不成功都行
|
2023-04-15 18:39:30 +08:00
|
|
|
|
# 程序版本号
|
|
|
|
|
version=3.2.0
|
2022-11-06 12:49:34 +08:00
|
|
|
|
echo 安装组件
|
2022-11-20 17:48:10 +08:00
|
|
|
|
python3 -m pip install --upgrade pynput --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple > /dev/null 2>&1 | true
|
2022-12-05 22:21:33 +08:00
|
|
|
|
python3 -m pip install --upgrade xpinyin --trusted-host https://repo.huaweicloud.com -i https://repo.huaweicloud.com/repository/pypi/simple > /dev/null 2>&1 | true
|
2022-11-06 12:49:34 +08:00
|
|
|
|
echo 执行完成
|
2022-11-22 22:40:24 +08:00
|
|
|
|
echo 移除旧组件
|
|
|
|
|
if [ -d /opt/apps/deepin-wine-runner/arm-package ]; then
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/arm-package
|
|
|
|
|
fi
|
|
|
|
|
if [ -d /opt/apps/deepin-wine-runner/dlls-arm ]; then
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/dlls-arm
|
|
|
|
|
fi
|
|
|
|
|
if [ -d /opt/apps/deepin-wine-runner/exa ]; then
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/exa
|
|
|
|
|
fi
|
|
|
|
|
if [ -d /opt/apps/deepin-wine-runner/dxvk ]; then
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/dxvk
|
|
|
|
|
fi
|
|
|
|
|
echo 移除完成
|
2022-08-11 21:54:20 +08:00
|
|
|
|
# 如果为非 X86 PC,可以删除掉一些无用组件(主要是用不了)
|
|
|
|
|
if [ `arch` != "x86_64" ]; then
|
|
|
|
|
echo 非X86架构,删除对非X86架构无用的组件
|
|
|
|
|
# 删除虚拟机功能
|
2023-04-15 18:39:30 +08:00
|
|
|
|
#rm -rf /opt/apps/deepin-wine-runner/StartVM.sh
|
|
|
|
|
#rm -rf /opt/apps/deepin-wine-runner/RunVM.sh
|
|
|
|
|
#rm -rf /opt/apps/deepin-wine-runner/VM
|
|
|
|
|
#rm -rf /usr/share/applications/spark-deepin-wine-runner-control-vm.desktop
|
|
|
|
|
#rm -rf /usr/share/applications/spark-deepin-wine-runner-start-vm.desktop
|
2022-08-11 21:54:20 +08:00
|
|
|
|
# 删除安装 wine 功能
|
|
|
|
|
rm -rf "/opt/apps/deepin-wine-runner/wine install"
|
2022-09-13 21:27:17 +08:00
|
|
|
|
# 这个注释掉的理论可用,不移除
|
|
|
|
|
#rm -rf "/opt/apps/deepin-wine-runner/wine"
|
2022-08-11 21:54:20 +08:00
|
|
|
|
rm -rf /usr/bin/deepin-wine-runner-wine-installer
|
|
|
|
|
rm -rf /usr/bin/deepin-wine-runner-wine-install-deepin23
|
|
|
|
|
rm -rf /usr/bin/deepin-wine-runner-wine-install
|
|
|
|
|
rm -rf /usr/bin/deepin-wine-runner-winehq-install
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/InstallWineOnDeepin23.py
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/sparkstore.list
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/AllInstall.py
|
|
|
|
|
rm -rf /opt/apps/deepin-wine-runner/InstallNewWineHQ.sh
|
|
|
|
|
fi
|
2023-04-15 18:39:30 +08:00
|
|
|
|
# 处理 VM 工具
|
|
|
|
|
vmPath=/opt/apps/deepin-wine-runner/VM/VirtualMachine-`arch`
|
|
|
|
|
echo 当前架构为:`arch`
|
|
|
|
|
if [ -f $vmPath ]; then
|
|
|
|
|
echo 虚拟机工具有该架构的预编译文件
|
|
|
|
|
# 移除辅助文件
|
|
|
|
|
rm -f /opt/apps/deepin-wine-runner/VM/VirtualMachine
|
|
|
|
|
# 移动
|
|
|
|
|
mv $vmPath /opt/apps/deepin-wine-runner/VM/VirtualMachine
|
|
|
|
|
rm -f /opt/apps/deepin-wine-runner/VM/VirtualMachine-*
|
|
|
|
|
else
|
|
|
|
|
echo 虚拟机工具无该架构的预编译文件
|
|
|
|
|
rm -f /opt/apps/deepin-wine-runner/VM/VirtualMachine-*
|
|
|
|
|
fi
|
|
|
|
|
echo 处理完成!
|
2022-11-13 10:58:36 +08:00
|
|
|
|
# 到时候切换 gpg 源会方便很多
|
2022-12-17 09:51:11 +08:00
|
|
|
|
if [ -r /etc/apt/sources.list.d/better-dde.list ]; then
|
|
|
|
|
if [ -d /usr/share/deepin-installer ]; then
|
|
|
|
|
# 用于修复 Deepin Community Live CD Install 版签名过期的问题
|
|
|
|
|
wget -P /tmp/gfdgd-xi-sources https://code.gitlink.org.cn/gfdgd_xi/gfdgd-xi-apt-mirrors/raw/branch/master/gpg.asc
|
|
|
|
|
rm -rfv /etc/apt/trusted.gpg.d/gfdgdxi-list.gpg | true
|
|
|
|
|
cp -v /tmp/gfdgd-xi-sources/gpg.asc.gpg /etc/apt/trusted.gpg.d/gfdgdxi-list.gpg
|
|
|
|
|
# 用于修复 2022.11.25 Better DDE 导致的 Deepin Community Live CD Install 版问题
|
|
|
|
|
# 移除 Better DDE 源
|
|
|
|
|
rm -rfv /etc/apt/sources.list.d/better-dde.list
|
|
|
|
|
apt update > /dev/null 2>&1 | true
|
|
|
|
|
fi
|
2022-12-07 10:21:50 +08:00
|
|
|
|
fi
|
2022-08-11 21:54:20 +08:00
|
|
|
|
# 设置目录权限,让用户可读可写,方便后续删除组件
|
|
|
|
|
chmod 777 -R /opt/apps/deepin-wine-runner
|
2022-07-01 15:16:00 +08:00
|
|
|
|
# 向服务器返回安装数加1(不显示内容且忽略错误)
|
2023-04-15 18:39:30 +08:00
|
|
|
|
python3 /opt/apps/deepin-wine-runner/Download.py $version > /dev/null 2>&1 | true
|