加载共享库时出错:启动Opera Mobile Emulator时出现libQtGui.so.4


10

显然,Opera Mobile Emulator是一个32位程序,Ubuntu 13.10不再包含“ a32-libs”软件包来提供此支持。

我已经下载并解压缩了文件,但是当我尝试运行模拟器时,出现以下错误消息:

./opera-mobile-emulator-launcher: error while loading shared libraries: libQtGui.so.4: cannot open shared object file: No such file or directory

我到处搜索,找到了为了在13.10上运行32位程序而应安装的各种软件包列表。我尝试了几次,但是都失败了,因为似乎运行特定程序所需的软件包列表特定于该程序。

有谁知道我该怎么做?

Answers:


16

除非您使用的体系结构与系统的其余部分不同,否则只需执行即可sudo apt-get install libqtgui4

如果您正在使用其他体系结构,则只需:arch在包名称后追加。例如,如果您使用的是64位版本,则libqtgui4:amd64适合您:

sudo apt-get install libqtgui4:amd64

如果您使用的是其他系统(例如ARM),请尝试sudo apt-get install libqtgui4
Nino van Hooff 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.