本文介绍在Debian 10/9操作系统上安装Wine 4的方法,包括介绍使用Wine 4运行Windows应用程序Notepad++编辑器。可先参考Wine 4.0发布下载,附更新详情及在Ubuntu 18.04系统下升级或安装Wine 4.0稳定版和开发版的方法。
一、启用32位架构 如果你运行的是Debian 10/9 64位系统,请启用对32位应用程序的支持,运行以下命令即可: sudo dpkg --add-architecture i386 注意:上面的命令不会返回任何输出信息。
二、增加WineHQ存储库 我们将从WineHQ存储库中提取最新的Wine 4软件包,你需要手动增加WineHQ存储库。 首先,导入GPG密钥: wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add - 注:没安装wget就参考:在Linux系统中安装Wget、Htop、Nano、Lynx、Fzf、Pydf的方法。 在输出中会出现“OK”字样。 通过运行以下命令添加Wine存储库: sudo apt-add-repository https://dl.winehq.org/wine-builds/debian/ 注:该命令适用于Debian 10/9系统,将在/etc/apt/sources.list文件中添加一行。
三、在Debian 10/9上安装Wine 4 在配置APT存储库之后,最后一步是在Debian 10/9上实际安装Wine 4了,更新apt,返回的信息如下: $ sudo apt update Ign:1 http://dl.google.com/linux/chrome/deb stable InRelease Hit:2 http://security.debian.org/debian-security buster/updates InRelease Hit:3 http://deb.debian.org/debian buster InRelease Get:4 http://security.debian.org/debian-security buster/updates/main i386 Packages [1,132 B] Get:5 http://deb.debian.org/debian buster/main i386 Packages [7,862 kB] Hit:6 http://dl.google.com/linux/chrome/deb stable Release Get:8 https://dl.winehq.org/wine-builds/debian buster InRelease [6,258 B] Get:9 https://dl.winehq.org/wine-builds/debian buster/main amd64 Packages [541 kB] Get:10 https://dl.winehq.org/wine-builds/debian buster/main i386 Packages [576 kB] Get:11 http://deb.debian.org/debian buster/contrib i386 Packages [47.1 kB] Get:12 http://deb.debian.org/debian buster/non-free i386 Packages [76.3 kB] Fetched 9,110 kB in 13s (702 kB/s) Reading package lists... Done Building dependency tree Reading state information... Done All packages are up to date. 然后安装Wine: sudo apt install winehq-stable 注:该条命令安装的是稳定版本,如果对Development branch版本感兴趣,请运行: sudo apt install winehq-devel 以下是staging版本,请运行: sudo apt install winehq-staging 注:通常情况下,安装stable版本为上策,使用这个版本运行应用软件出现问题的概率较小。 安装后,验证版本已安装的版本: $ wine --version wine-4.0.1
四、在Debian 10/9上使用Wine 4运行Windows应用程序 有关Wine的基本用法,请查看帮助页面: $ 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 然后按照Windows应用程序的安装提示进行操作即可,如下图所示:
至此,已成功在Debian 10/9系统上运行Notepad++程序。
相关主题 |