Install robo3t on Ubuntu 16.04 LTS issue - mongodb

I've tried to install robo3t in Ubuntu 16.04 LTS. When I run command ./robo3t, I received an error:
./robo3t: error while loading shared libraries: /home/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/../lib/libQt5Network.so.5: file too short
Please help me resolve this issue! Thanks all

vist https://askubuntu.com/questions/386281/error-while-loading-shared-libraries-libglu-so-1
below command in my aws ubuntu 16.04 instance solved for me
sudo apt-get install libglu1

Related

Issues related to GtkToplevelAccessible in Ubuntu 18.04

I am trying to run voyant-tool in Ubuntu 18.04 with openjdk version "1.8.0_242" and getting following error: GLib-GObject-WARNING **: 12:59:29.522: invalid cast from 'GtkToplevelAccessible' to 'JawToplevel'. The GUI is opening but not allowing to select any option. The same is running happily in Ubuntu 16,04 with the same Java version. Tried a couple of quick fix after Googling it but not able to solve it.
Try this -
sudo apt install openjdk-11-jdk

libgtk-3.so.0 not found when trying to run mongodb-compass from RedHAt Linux

I tried installing the latest version of Mongo compass by running the RPM in the red hat instance:
sudo yum install mongodb-compass-1.17.0.x86_64.rpm
When I try to run the mongodb-compass, I am getting the below error:
[ec2-user#ip-10-93-230-148 ~]$ mongodb-compass
mongodb-compass: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory
Can anyone please advise on how to resolve this issue?
Thanks
DJ
I am able to run compass in Redhat instance by installing gtk3-devel

Openstack installation error

Hi I am facing this issue while installing openstack on my server:
How should I proceed?
Try to install heatclient
apt-get install python-heatclient

Install swift 4 on bash on Ubuntu on Windows 10

I try to install Swift 4 on bash on Ubuntu on Windows 10
My version of Ubuntu:
me#DESKTOP:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.3 LTS
Release: 16.04
Codename: xenial
I did apt-get upgrade and apt-get update
I follow Linux steps here: to install Swift 4
Eventually I end up with the error:
me#DESKTOP:~$ swift
/home/me/swift4/swift-4.0.2-RELEASE-ubuntu16.04/usr/bin/lldb: error while loading shared libraries: libpython2.7.so.1.0: cannot open shared object file: No such file or directory
I have python2 installed:
me#DESKTOP:~$ python2 --version
Python 2.7.12
I wonder how to make it works.
Installing libpython2.7 successfully resolves the error
$ apt-get install libpython2.7
However it still failed to launch the swift repl due to kernel permissions issue.
Using docker image (or Virtual Box like OP) is a better way to go.
reference
https://bugs.swift.org/browse/SR-2743

Install Postgis in Ubuntu 16.04 in with already postgresql 9.3 installed

In ubuntu 16.04 when I tried to install postgis with using apt-get install postgis postgresql-9.3-postgis-2.1 this command, it installed postgresql 9.6 and postgis-9.6 version. And when tried to create extension it gives error ERROR: could not open extension control file "/usr/share/postgresql/9.3/extension/postgis.control": No such file or directory.
postgres#db:~$ psql
psql (9.6.3, server 9.3.17)
Type "help" for help.
It seems that you didn't use sudo before apt-get which is causing issue with write permissions of your directory.
To prevent this error remove the installed version and reinstall it with sudo like,
sudo apt-get install postgis postgresql-9.3-postgis-2.1
Read more related with your issue and follow the steps to install specific version.