在Debian 10 Buster上安装Wine
步骤1.在安装任何软件之前,通过apt
在终端中运行以下命令来确保系统是最新的很重要:
sudo apt update sudo apt upgrade sudo apt install apt-transport-https
步骤2.检查您是否具有Linux 32位或64位系统。
对于32位和64位Debian版本,可以使用不同版本的Wine。为了检查您正在使用哪个版本,以便您可以安装Wine的适当版本,请遵循以下命令:
lscpu
步骤2.在Debian 10上安装Wine。
现在,我们导入GPG密钥:
sudo apt install gnupg2 software-properties-common wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
接下来,添加WineHQ存储库:
sudo apt-add-repository https://dl.winehq.org/wine-builds/debian/
之后,添加Wine OBS存储库:
wget -O- -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10/Release.key | sudo apt-key add - echo "deb http://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_10 ./" | sudo tee /etc/apt/sources.list.d/wine-obs.list
最后,使用以下命令在Debian系统上安装Wine:
sudo apt update sudo apt install --install-recommends winehq-stable
为了验证安装并检查您的系统上安装了哪个版本,请运行以下命令:
wine --version
感谢您使用本教程在Debian 10 Buster上安装Wine。如需其他帮助或有用信息,我们建议您检查Wine的官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun39167.html