错误:ld.so:对象‘/usr/$LIB/libgamemodeauto.so.0’

错误:ld.so:对象‘/usr/$LIB/libgamemodeauto.so.0’

所以,在 Linux 上运行 Fireworks 一直是我的梦想,但我猜我运行的版本可能是错的? gamemode is already the newest version (1.5.1-0ubuntu3.1).

运行

  • 卢特里斯:0.5.8.3
  • 核心:5.8.0-53-generic
  • 葡萄酒版本:lutris-6.10-7-86_64
  • DKVK 版本:v1.7.3L-03f11ba

错误日志

Running gamemoderun /home/hutber/.local/share/lutris/runners/wine/lutris-6.10-7-x86_64/bin/wine /mnt/users/Games/Games/fireworks/drive_c/Program Files (x86)/Adobe Fireworks CS6/Fireworks.exe
Initial process has started with pid 251133
Start monitoring process.
gamemodeauto: 
ERROR: ld.so: object '/usr/$LIB/libgamemodeauto.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/usr/$LIB/libgamemodeauto.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/usr/$LIB/libgamemodeauto.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/usr/$LIB/libgamemodeauto.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
wineserver: using server-side synchronization.
ERROR: ld.so: object '/usr/$LIB/libgamemodeauto.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ERROR: ld.so: object '/usr/$LIB/libgamemodeauto.so.0' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
Monitored process exited.
Initial process has exited (return code: 13568)
All monitored processes have exited.
Exit with returncode 13568

答案1

是的,所以您缺少 32 位库。删除游戏模式 ( apt remove gamemode --autoremove),然后下载 Debian 软件包:

https://packages.debian.org/sid/amd64/gamemode/download
https://packages.debian.org/sid/amd64/gamemode-daemon/download
https://packages.debian.org/sid/amd64/libgamemode0/download
https://packages.debian.org/sid/amd64/libgamemodeauto0/download
https://packages.debian.org/sid/i386/libgamemode0/download
https://packages.debian.org/sid/i386/libgamemodeauto0/download

然后使用以下命令安装所有 .deb:

apt install -f path/to/gamemode.deb path/to/gamemode-daemon.deb...这应该可以解决你的问题。

取自:https://github.com/FeralInteractive/gamemode/issues/254#issuecomment-643648779

相关内容