4

When i starting robo3t in ubuntu 16.04 version it is not opening, the error is show below like

error:

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)
KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133

3 Answers3

5

The issue is because if libstdc++ folder library's simply make backup and start robot3t. Follow the given steps below and its working fine

solution:

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
KARTHIKEYAN.A
  • 18,210
  • 6
  • 124
  • 133
0

if you try to install latest version of robomobo that call be now robo3t. Or you try install on ubuntu 16.04 follow the below step and your robomongo install

Download latest robomongo tar file

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

Extract it

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

Make a directory

mkdir ~/robo-backup

Move robo3t-1.1.1-linux-x86_64-c93c6b0/lib/libstdc++ direcotry to ~/robo-backup/ direcotory

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

Run the robo3t

robo3t-1.1.1-linux-x86_64-c93c6b0/bin/robo3t
MDF
  • 1,343
  • 1
  • 11
  • 14
0

Simply remove the lib/libstdc++* will work.

source

Gaurav Paliwal
  • 1,556
  • 16
  • 27