Skip to content

Instantly share code, notes, and snippets.

@abdallahokasha
Last active April 8, 2025 13:16
Show Gist options
  • Select an option

  • Save abdallahokasha/37911a64ad289487387e2d1a144604ae to your computer and use it in GitHub Desktop.

Select an option

Save abdallahokasha/37911a64ad289487387e2d1a144604ae to your computer and use it in GitHub Desktop.
Install Robo3t on Ubuntu18.04 and make a desktop icon for it

Install Robo3t On Ubuntu 18.04

Download the package form Robo3t or using wget
wget https://download.robomongo.org/1.2.1/linux/robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
Extract here using

tar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz

Make a new floder in usr/local/bin from the package

sudo mkdir /usr/local/bin/robo3t

Move the extracted package to usr/local/bin

sudo mv  robo3t-1.2.1-linux-x86_64-3e50a65/* /usr/local/bin/robo3t

Change directory to cd /usr/local/bin/robo3t/bin
Now, We need to give permission to newly created directory using chmod

sudo chmod +x robo3t ./robo3t

Now we can run Robo3t ./robo3t

We can download the icon for Robo3t from and put it here as we will need to make desktop icon later

For example save it on /bin with name icon.png /usr/local/bin/robo3t/bin/icon.png

mv icon.png /usr/local/bin/robo3t/bin

To make desktop icon for Robo3t, we can make a file in usr/share/applications

sudo nano /usr/share/applications/robo3t.desktop

Paste these there and save

[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=Robo3t
Icon=/usr/local/bin/robo3t/bin/icon.png
Exec="/usr/local/bin/robo3t/bin/robo3t"
Comment=Robo3t 
Categories=Development;
Terminal=false
StartupNotify=true

Now, we can find the icon in application launcher menu by search for robo3t

We can check this also

Reference

@fernandobandeira

Copy link
Copy Markdown

If the launcher doesn't group the open robo3t windows for you (you click on it and it opens a separate entry in your dock instead of stacking it with the launcher icon). You can add the following to the launcher entry:

sudo nano /usr/share/applications/robo3t.desktop
[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=Robo3t
Icon=/usr/local/bin/robo3t/bin/icon.png
Exec="/usr/local/bin/robo3t/bin/robo3t"
Comment=Robo3t 
Categories=Development;
Terminal=false
StartupNotify=true
StartupWMClass=robo3t

Where StartupWMClass=robo3t specifies the name of the window that robo3t launches.

@abdallahokasha

Copy link
Copy Markdown
Author

@fernandobandeira thanks for this 👍

@pysergio

Copy link
Copy Markdown

Thanks a lot, bro

@olegmavlyutov

Copy link
Copy Markdown

Thanks a lot!
In fact, installing applications and creating shortcuts in Ubuntu is very easy 😏

@ronyAhmed1200

ronyAhmed1200 commented Jun 26, 2021

Copy link
Copy Markdown

Thanks for it. It was so easy...
Now the latest version of robo3T is 1.4.3
So I tried another wget key instead of the older one for installing the latest version of robo3T, and it is running fine in Ubuntu 20.04.

wget https://download.studio3t.com/robomongo/linux/robo3t-1.4.3-linux-x86_64-48f7dfd.tar.gz

and now to extract the tar.gz file:

tar -xvzf robo3t-1.4.3-linux-x86_64-48f7dfd.tar.gz

reference

@SK-1012

SK-1012 commented Aug 3, 2021

Copy link
Copy Markdown

Thanks for this :)

@Coder-Aftab

Copy link
Copy Markdown

why we are not just typing a simple command rather than this thing

sudo snap install robo3t-snap

@damms005

Copy link
Copy Markdown

why we are not just typing a simple command rather than this thing

sudo snap install robo3t-snap

+1

@sin13

sin13 commented Aug 20, 2021

Copy link
Copy Markdown

Thank you :)

@Ali-Mahdiyanjoo

Ali-Mahdiyanjoo commented Sep 10, 2021

Copy link
Copy Markdown

thank you:)

@Dailson

Dailson commented Sep 14, 2021

Copy link
Copy Markdown

Thank you!

@PulasthiAbey

Copy link
Copy Markdown

Works like a charm

@jpernia101

Copy link
Copy Markdown

awesome, thanks ! still works (10.18.2021)

@jordanbmowry

Copy link
Copy Markdown

Thanks so much!

@ayadi1

ayadi1 commented Dec 1, 2021

Copy link
Copy Markdown

Thank you!

@sheecegardezi

Copy link
Copy Markdown

perfecto thanks

@rifqilab

rifqilab commented Dec 8, 2021

Copy link
Copy Markdown

awesome, thank you!

@abdul-incaendo

Copy link
Copy Markdown

Thanks buddy... much appreciated

@erickdp

erickdp commented Feb 8, 2022

Copy link
Copy Markdown

ty

@brunomarks7

Copy link
Copy Markdown

thank u!

@popovserhii

Copy link
Copy Markdown

New of the latest version of Robo 3T is v.1.4.4
wget https://download.studio3t.com/robomongo/linux/robo3t-1.4.4-linux-x86_64-e6ac9ec.tar.gz

@shahafh90

Copy link
Copy Markdown

Perfect. Thank you! :)

@sarmadfolio3

Copy link
Copy Markdown

Thanks, saved the day

@kunal-ghosh-dev

Copy link
Copy Markdown

Thanks, saved the day!

@starman-vlad

Copy link
Copy Markdown

With the new "Studio 3T Free" you don't need to configure the installation manually. There is now a shell script included in the downloaded archive and the only thing you need to do is to run the shell script included in the archive.

./studio-3t-linux-x64.sh

@saisiddardha

Copy link
Copy Markdown

With the new "Studio 3T Free" you don't need to configure the installation manually. There is now a shell script included in the downloaded archive and the only thing you need to do is to run the shell script included in the archive.

./studio-3t-linux-x64.sh

Is there a way to open new studio 3t from the terminal as I'm using wsl2?

@starman-vlad

Copy link
Copy Markdown

@saisiddardha Unfortunately, I do not have experience with running the Linux GUI apps through WSL2, but by looking at the official Microsoft documentation, as per my understanding, only certain Linux GUI apps are currently supported for now.

@saisiddardha

saisiddardha commented May 18, 2022

Copy link
Copy Markdown

Thanks @unigazer for the quick response, will try it out.

@rodriguezal3x

Copy link
Copy Markdown

muchas gracias

@Viscmad

Viscmad commented Sep 24, 2023

Copy link
Copy Markdown

Thankyou! 👯

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment