Install Genymotion 2.6.0 on Ubuntu 15.04

旧街凉风 提交于 2019-12-06 06:51:46

So after searching I found that the log entry was probably caused by missing libraries needed by the QT xcb plugin.

So I ran ldd against the libqxcb.so library.

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

So there are a lot of libraries related to the QT xcb plugin that Genymotion assumes are installed. The libQt* libraries can be ignored because they are contained within the Genymotion install it's self.

After installing these libraries Genymotion started fine.

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

The same problem happened to me. I just did sudo apt-get install libdouble-conversion1v5. Now its perfect

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!