wine:WINEARCH 设置为 win32,但“/home/koha/.wine”是 64 位安装

wine:WINEARCH 设置为 win32,但“/home/koha/.wine”是 64 位安装

我收到此消息:

wine: WINEARCH set to win32 but '/home/me/.wine' is a 64-bit installation.

我需要做什么?

答案1

建议您关注https://wiki.winehq.org/FAQ#How_do_I_create_a_32_bit_wineprefix_on_a_64_bit_system.3F打开终端窗口并运行以下命令创建 32 位 wineprefixWINEARCH=win32 WINEPREFIX=path_to_wineprefix winecfg

答案2

在终端中输入; WINEARCH=win64; wine /home/me/.wine/whateverprogram.exe 或 echo "export WINEPREFIX=~/home/me/.wine" >> ~/.bashrc echo "export WINEARCH=win64" >> ~/.bashrc reboot

相关内容