Robo3t crashing in ubuntu 16.04 and above version (This application failed start because it could not find or load the Qt platform plugin "xcb")

Robo3t crashing in ubuntu 16.04 and above version (This application failed to start because it could not find or load the Qt platform plugin "xcb")

当我在 ubuntu 16.04 版本中启动 robo3t 时它无法打开,错误如下所示

错误:

sony@sony:~/Documents/installed/robo3t-1.1.1-linux-x86_64-c93c6b0/bin$ ./robo3t
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 dumped)

问题是因为如果 libstdc++ 文件夹库简单地进行备份并启动 robot3t。按照下面给定的步骤进行操作,它的工作正常

解决方法:

mkdir ~/robo-backup
mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/
robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t

如果您尝试安装最新版本的 robomobo,请立即调用 robo3t。或者您尝试在 ubuntu 16.04 上安装,然后按照以下步骤安装您的 robomongo

下载最新的 robomongo tar 文件

wget https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz

提取它

tar -xvzf https://download.robomongo.org/1.1.1/linux/robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz

制作目录

mkdir ~/robo-backup

移动 robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ 目录到 ~/robo-backup/ 目录

mv robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++* ~/robo-backup/

运行 robo3t

robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t

只需删除 lib/libstdc++* 即可。

source