如何在Debian 10/Debian 9上安装Wine 5
时间:2020-02-23 14:32:51 来源:igfitidea点击:
本教程将在Debian 10/Debian 9工作站上覆盖安装葡萄酒5.
葡萄酒是一个开源软件,允许我们在Linux上运行Microsoft Windows应用程序。
通过利用其WinELIB库,我们可以编译Windows应用程序以帮助将它们移植到类似UNIX的系统。
如果我们想了解葡萄酒5中的新功能,请检查Wine 5发布和新功能文章。
本文将在Debian 10/9上讨论轻松安装的葡萄酒5.
第1步:启用32位架构
如果我们正在运行64位系统,请支持32位应用程序的支持。
sudo dpkg --add-architecture i386
上面的命令不会返回任何输出。
第2步:添加Winehq存储库
我们将从手动添加的Winehq存储库中拉动最新的葡萄酒套餐。
首先,导入GPG密钥:
sudo apt update sudo apt -y install gnupg2 software-properties-common wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add
我们应该在输出中收到"确定"。
通过运行以下命令添加葡萄酒存储库:
sudo apt-add-repository https://dl.winehq.org/wine-builds/debian/
该命令将为/etc/apt/sources.list文件添加一行。
第3步:在Debian 10/9上安装Wine 5
在配置APT存储库之后,最后一步是Debian 10/9上的Wine 5的实际安装。
添加葡萄酒OBS存储库:
Debian 10:
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 9:
wget -O- -q https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_9.0/Release.key | sudo apt-key add - echo "deb http://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Debian_9.0 ./" | sudo tee /etc/apt/sources.list.d/wine-obs.list
然后从稳定的分支安装葡萄酒:
sudo apt update sudo apt install --install-recommends winehq-stable
如果我们对开发分支有兴趣,请运行:
sudo apt install --install-recommends winehq-devel
和分期,使用:
sudo apt install winehq-staging
安装后。
验证安装版本。
$wine --version wine-5.0
第4步:在Debian上使用葡萄酒
用于葡萄酒的基本使用,检查帮助页面。
$wine --help
以下示例用于在Linux上运行Notepad ++编辑器。
$cd ~/Downloads $wget https://notepad-plus-plus.org/repository/7.x/7.7/npp.7.7.Installer.exe $wine ./npp.7.7.Installer.exe