Installation 在Ubuntu 15.04上安装Genymotion 2.6.0

Installation 在Ubuntu 15.04上安装Genymotion 2.6.0,installation,genymotion,ubuntu-15.04,Installation,Genymotion,Ubuntu 15.04,安装Ubuntu15.04后,它无法启动,出现以下错误 genymotion: error while loading shared libraries: libdouble-conversion.so.1: cannot open shared object file: No such file or directory 因此,我安装了libdouble-conversion1,但它仍然无法启动以下日志输出 命令输出: genymotion Logging activities to fil

安装Ubuntu15.04后,它无法启动,出现以下错误

genymotion: error while loading shared libraries: libdouble-conversion.so.1: cannot open shared object file: No such file or directory
因此,我安装了
libdouble-conversion1
,但它仍然无法启动以下日志输出

命令输出:

genymotion
Logging activities to file: ~/.Genymobile/genymotion.log
Aborted (core dumped)
日志输出:

Jan 9 13:40:10 [Genymotion] [Fatal] This application failed to start because it could not find or load the Qt platform plugin "xcb".

Available platform plugins are: xcb.

Reinstalling the application may fix this problem.

所以在搜索之后,我发现日志条目可能是由于缺少QT xcb插件所需的库造成的

因此,我对
libqxcb.So
库运行了
ldd

cd genymotion/platforms
ldd libqxcb.so | grep "not found"
    libxcb-render-util.so.0 => not found
    libxcb-image.so.0 => not found
    libxcb-icccm.so.4 => not found
    libxcb-randr.so.0 => not found
    libxcb-keysyms.so.1 => not found
    libxcb-xkb.so.1 => not found
    libxkbcommon-x11.so.0 => not found
    libQt5DBus.so.5 => not found
    libQt5Gui.so.5 => not found
    libQt5Core.so.5 => not found
因此,Genymotion假设安装了许多与QT xcb插件相关的库。可以忽略
libQt*
库,因为它们包含在Genymotion安装程序中

安装这些库之后,GenyMoon开始正常运行

sudo aptitude install libdouble-conversion1 libxcb-render-util0 libxcb-image0 libxcb-icccm4 libxcb-randr0 libxcb-keysyms1 libxcb-xkb1 libxkbcommon-x11-0

同样的问题也发生在我身上。我刚刚安装了libdouble-conversion1v5。现在在Debian Jessie上它对我来说是完美的