最近我使用以下方法安装了 wine
sudo aptitude 安装 wine,接受 aptitude 的建议并运行相关答案中推荐的进一步命令。现在,我正在同一类型的 PC 上尝试,并且处于相同的状态:刚从 Ubuntu 16.04 升级到 18.04。但是 aptitude 无法解决冲突,在进一步的命令中,第一个区别是
as_the_root@PC1:/home/me$ sudo wget -nvhttps://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/Release.key-O 发布.密钥 2020-04-28 00:20:19 网址:https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/Release.key[1089/1089] -> “发布.密钥” [1] as_the_root@PC1:/home/me$ sudo apt-key add - < Release.key 好的 as_the_root@PC1:/home/me$和
as_the_root@PC2:/home/me$ sudo wget -nvhttps://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/Release.key-O 发布.密钥 2020-05-08 15:08:50 网址:https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/Release.key[1089/1089] -> “发布.密钥” [1] as_the_root@PC2:/home/me$ sudo apt-key add - < Release.key bash:Release.key:权限被拒绝 as_the_root@PC2:/home/me$。PC2 现在响应
as_the_root@PC2:/home/me$ wine --version 错误:ld.so:无法预加载/etc/ld.so.preload 中的对象“libesets_pac.so”(错误的 ELF 类:ELFCLASS64):忽略。 wine-3.0(Ubuntu 3.0-1ubuntu1) as_the_root@PC2:/home/me$. 重命名
〜/ .wine根据第一个答案Wine 安装错误重复整个过程并没有帮助识别 Release.key 。根据第三个答案(教程)的步骤无法安装 Wine Ubuntu 18.04安装了 1 GiB 数据,但 PC2 响应相同。可能是什么错误?谢谢!
答案1
也许您应该尝试安装干净的 Wine。
尝试
$ sudo apt purge wine
然后尝试使用官方 WineHQ 存储库
首先启用32位架构
$ sudo dpkg --add-architecture i386
在这里下载并添加存储库密钥
$ wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
现在添加存储库
$ sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
然后更新 repos
$ sudo apt update
最后一步,安装 WineHQ 包
$ sudo apt install --install-recommends winehq-stable
现在您可以测试您的版本
$ wine --version
这里是关联前往官方网页
答案2
尝试使用 wine 运行 *.exe 文件需要安装 Wine_Mono 和 Wine_Gecko,并且就我的目的而言,wine 现在可以使用了。答案
错误:ld.so:无法预加载 /etc/ld.so.preload 中的对象“libesets_pac.so”(错误的 ELF 类:ELFCLASS64):忽略是由于 ESET 防病毒程序造成的;它的升级已经修复了这个问题。现在,wine-5.0 已经存在。我的安装尝试占用了 2.3 GiB 的磁盘空间。根据 Giovanni Rodríguez 的回答,从头开始安装肯定会更经济。许多用户肯定会喜欢在 Ubuntu 软件中提供安装。