Skip to content

Instantly share code, notes, and snippets.

@abdallahokasha
Last active September 24, 2023 14:54
Show Gist options
  • Save abdallahokasha/37911a64ad289487387e2d1a144604ae to your computer and use it in GitHub Desktop.
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

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
Author

@fernandobandeira thanks for this 👍

@pysergio
Copy link

Thanks a lot, bro

@olegmavlyutov
Copy link

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

@ronyAhmed1200
Copy link

ronyAhmed1200 commented Jun 26, 2021

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
Copy link

SK-1012 commented Aug 3, 2021

Thanks for this :)

@Coder-Aftab
Copy link

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

sudo snap install robo3t-snap

@damms005
Copy link

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

sudo snap install robo3t-snap

+1

@Sin13
Copy link

Sin13 commented Aug 20, 2021

Thank you :)

@Ali-Mahdiyanjoo
Copy link

Ali-Mahdiyanjoo commented Sep 10, 2021

thank you:)

@Dailson
Copy link

Dailson commented Sep 14, 2021

Thank you!

@PulasthiAbey
Copy link

Works like a charm

@jpernia101
Copy link

awesome, thanks ! still works (10.18.2021)

@jordanbmowry
Copy link

Thanks so much!

@ayadi1
Copy link

ayadi1 commented Dec 1, 2021

Thank you!

@sheecegardezi
Copy link

perfecto thanks

@rifqilab
Copy link

rifqilab commented Dec 8, 2021

awesome, thank you!

@abdul-incaendo
Copy link

Thanks buddy... much appreciated

@erickdp
Copy link

erickdp commented Feb 8, 2022

ty

@brunomarks7
Copy link

thank u!

@popovserhii
Copy link

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

Perfect. Thank you! :)

@sarmadfolio3
Copy link

Thanks, saved the day

@kunal-ghosh-dev
Copy link

Thanks, saved the day!

@unigazer
Copy link

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

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?

@unigazer
Copy link

@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
Copy link

saisiddardha commented May 18, 2022

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

@rodriguezal3x
Copy link

muchas gracias

@Viscmad
Copy link

Viscmad commented Sep 24, 2023

Thankyou! 👯

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