当我尝试运行robomongo应用程序时,我提交了此错误。 我该如何解决?
我有Linux Ubuntu 16.04.3 LTS
This application failed to start because it could not find or load the Qt platform plugin "xcb"
in "".
Available platform plugins are: xcb.
Reinstalling the application may fix this problem.
Aborted (`core 'generated)
答案 0 :(得分:0)
尝试此命令:
ldd `which robomongo`
将为您提供可执行文件使用的链接库列表。
你应该找到像这样的一行(当然这个数字会有所不同)
libxcb.so.1 => /usr/bin/../lib/libxcb.so.1 (0x00007fc20b8f4000)
如果库被标记为未找到,则需要安装(或重新安装)它。
如果它存在,检查它是否安装正确,你应该找到这样的东西:
lrwxrwxrwx 1 root root 15 May 22 2016 /usr/bin/../lib/libxcb.so -> libxcb.so.1.1.0
lrwxrwxrwx 1 root root 15 May 22 2016 /usr/bin/../lib/libxcb.so.1 -> libxcb.so.1.1.0
-rwxr-xr-x 1 root root 166864 May 22 2016 /usr/bin/../lib/libxcb.so.1.1.0