49

Nowadays robomongo developers releasing the new versions of robomongo as tar.gz not in .deb packages that was easy for double click installations. But that option is no longer available. So how to install it as a program in Ubuntu. I have tried extracting the package and install but failed.

admin@admin-lenovo:~$ cd Downloads/
admin@admin-lenovo:~/Downloads$ tar -xzf robomongo-0.9.0-rc4-linux-x86_64-8c830b6.tar.gz 
admin@admin-lenovo:~/Downloads$ cd robomongo-0.9.0-rc4-linux-x86_64-8c830b6/
admin@admin-lenovo:~/Downloads/robomongo-0.9.0-rc4-linux-x86_64-8c830b6$ ./configure
bash: ./configure: No such file or directory

Also .make and ./install failed as no files found. How to install it as a program?

Penny Liu
  • 7,720
  • 5
  • 40
  • 66
Praveen George
  • 7,399
  • 4
  • 20
  • 45

9 Answers9

62

Robomongo is now Robo 3T. Following are the updated steps:

  1. Download the tar file from robomongo site. The current file is robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz, but yours could be different.

  2. Open up the terminal, switch to download directory and run the following commands:

    $ tar -xvzf robo3t-1.1.1-linux-x86_64-c93c6b0.tar.gz
    $ sudo mkdir /usr/local/bin/robomongo
    $ sudo mv  robo3t-1.1.1-linux-x86_64-c93c6b0/* /usr/local/bin/robomongo
    $ cd /usr/local/bin/robomongo/bin
    $ sudo chmod +x robo3t 
    $ sudo gedit ~/.bashrc
    
  3. Add the following line to the end of .bashrc file:

    alias robomongo='/usr/local/bin/robomongo/bin/robo3t'

  4. Save and close the file. Now reload it using the following command:

    $ source ~/.bashrc
    
  5. Then you can run robomongo from your terminal and it will work:

    $ robomongo
    
kaushal agrawal
  • 390
  • 3
  • 16
mohit uprim
  • 4,288
  • 2
  • 20
  • 25
  • 2
    This is the correct answer, but there is a bug in the latest version and you will need to `rm lib/libstdc++*` to make it work – CascadiaJS Sep 23 '17 at 18:18
  • Great answer and pin-point comment. @CascadiaJS, please edit the answer with your valuable input. Answer and comment did solve my problem. Thanks! – Dhaval Jardosh Nov 24 '17 at 18:45
  • 2
    location of ``libstdc++*`` is actually ``/usr/local/bin/robomongo/lib`` so the delete command should look like: ``rm /usr/local/bin/robomongo/lib/libstdc++*`` – Abdul Dec 11 '17 at 19:32
  • If you don't have gedit check out this [page](https://community.linuxmint.com/software/view/gedit)! Or change the gedit command for vim. – João Pedro Schmitz Jan 30 '19 at 13:22
  • Perfect Solution step by step . Thanks – aniruddh Apr 27 '20 at 06:12
35

You can also put the robomongo into /usr/bin like I do:

tar xf robomongo-0.9.0-rc8-linux-x86_64-c113244.tar.gz

sudo mv robomongo-0.9.0-rc8-linux-x86_64-c113244/ /usr/bin/robomongo

export PATH=/usr/bin/robomongo/bin:$PATH

If you are using fish shell, you need to change the last line to:

set PATH $PATH /usr/bin/robomongo/bin

Now you can start it with command:

robomongo
sstruct
  • 442
  • 1
  • 4
  • 7
16

Pulled this from my dotfiles. It's ugly but it works... and it's a bit more verbose so it should be understandable to most:

# Pull down and install Robomongo by copying files
cd /tmp
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
tar xf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
sudo mv ./robomongo-0.9.0-linux-x86_64-0786489 /opt/robomongo
cd /usr/sbin
sudo ln -s /opt/robomongo/bin/robomongo

# Grab image to use for icon
cd /opt/robomongo
wget http://mongodb-tools.com/img/robomongo.png

# Create desktop entry
touch /tmp/robomongo.txt
echo "[Desktop Entry]" >> /tmp/robomongo.txt
echo "Encoding=UTF-8" >> /tmp/robomongo.txt
echo "Name=Robomongo" >> /tmp/robomongo.txt
echo "Comment=Launch Robomongo" >> /tmp/robomongo.txt
echo "Icon=/opt/robomongo/robomongo.png" >> /tmp/robomongo.txt
echo "Exec=/usr/sbin/robomono" >> /tmp/robomongo.txt
echo "Terminal=false" >> /tmp/robomongo.txt
echo "Type=Application" >> /tmp/robomongo.txt
echo "Categories=Developer;" >> /tmp/robomongo.txt
echo "StartupNotify=true" >> /tmp/robomongo.txt
mv /tmp/robomongo.txt ~/.local/share/applications/robomongo.desktop
Nithin Kurian
  • 51
  • 1
  • 11
Fred Lackey
  • 2,081
  • 16
  • 27
15

1. First Download the version from the official Robomongo website bellow:

Download Robomongo From Official website using this link

2.Then extract the downloaded tar.gz file in your downloads folder.

3. Copy and paste the extracted folder into your opt folder

/opt

NB: If you don't have permission to paste in this folder use the bellow command in terminal to access the folder.

$ sudo chmod -R 777 /opt

4. Open the opt/robomongo/bin folder and launch Robomongo by clicking the executable icon.

opt/robomongo/bin

5. Simply Create a database and right click on the Robomongo icon and select the lock to launcher option. This will create a shortcut t launch the Robomongo application at any time you need.

Praveen George
  • 7,399
  • 4
  • 20
  • 45
11

You can first extract the package:

cd ~/Downloads
tar -xzf robo3t-x.x.x-linux-x86_64-xxxxxxx.tar.gz

You can rename the folder to something simpler

mv robo3t-x.x.x-linux-x86_64-xxxxxxx robo3t

Dowload any images with format .png [click here][1] (For whatever reason, the Robo3T package itself does not contain any png file for the icon)

Save the image like robo3t.png and move this image to folder robo3t and then, instead of dumping the whole thing in /usr you can transfer this directory to /opt directory and symlink the binary file to /usr/bin or /usr/local/bin. This makes for a better way of organising your applications, and keeping such add-on packages is what /opt is for.

So first move the directory

sudo mv robo3t /opt

and then symlink it like so

sudo ln -s /opt/robo3t/bin/robo3t /usr/bin/robo3t

then you can create an Unity desktop file for your launcher

nano ~/.local/share/applications/robo3t.desktop

and finally; paste the next code in the file newly created

 [Desktop Entry]
       Encoding=UTF-8
       Name=Robo 3T
       Exec=robo3t
       Icon=/opt/robo3t/robo3t.png
       Terminal=false
       Type=Application
       Categories=Development;

And Happy coding!

Anuj Pancholi
  • 815
  • 7
  • 12
Kevin Mendez
  • 356
  • 3
  • 5
10

Currently there is no installer for robomongo-0.9.0-rc4. you can create a desktop shortcut to robomongo-0.9.0-rc4-linux-x86_64-8c830b6/bin/robomongo file and use it just like any other Ubuntu app. Take a look at this tutorial https://askubuntu.com/a/142197/71544

Community
  • 1
  • 1
Jitendra Kumar
  • 182
  • 2
  • 14
  • 1
    Step wise solution, already answered on stackoverflow [**To install MongoDB Administration: RoboMongo version 0.9.* on Ubuntu**](http://stackoverflow.com/questions/33233236/unable-to-run-robomongo-sh-using-sh-robomongo-sh-in-ubuntu-14-04/37184845#37184845) – mistertandon May 12 '16 at 11:23
8

Wathc this Video How to install robomongo on ubuntu 16.4

OR Follow Below Steps

Open Terminal and run the below command

wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz

Extract the tar.gz file to enter below command

tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz

create a dir /usr/local/bin dir name directory name robomongo and move it to extract file into robomongo directory

sudo mkdir /usr/local/bin/robomongo
sudo mv  robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo

run command only if robomongo isn't executable file

cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo 
./robomongo
Mohammad Faisal
  • 1,273
  • 1
  • 11
  • 13
  • thank you so much. this is the one which worked for me. i tried different methods and when i open robomongo collections are not showing and i cannot create any collections. this is the only one which solved my problem. thank you again – thinuwan Oct 05 '17 at 08:25
  • This is the only method that worked for me as well. Thanks a bunch. – Brad Jan 05 '18 at 04:32
3

Don't worry about how to install Robo-3T on your Linux machine, follow these simple steps:

  1. Download script from Robo3T-Installation-With-Desktop Entry

  2. Open terminal in directory where above file is downloaded and run below command

    sudo chmod +x ./Robo3T-Installation-Menu.sh

  3. Then type below command and hit enter

    ./Robo3T-Installation-Menu.sh

  4. Just wait to complete it, once completed enjoy RoboMongo. Search in menu with name "Robo 3T".

2

Well, I do not know if it might still help, but one efficient way to install Robomongo from tar.gz file is the following:

  1. Go to https://robomongo.org/download to grab the tar.gz file,

  2. After download,

    cd Downloads/*
    

    and then type in the terminal:

    $ sudo tar xzf robo3t-1.3.1-linux-x86_64-7419c406.tar.gz -C /opt/
    
  3. Make sure your file has been unzipped in the /opt directory by checking:

    $ ls -lh /opt/
    
  4. Next, install it by doing:

    $ sudo /opt/robo3t-1.3.1-linux-x86_64-7419c406/bin/robo3t
    
  5. The installation wizard pops up and accept the terms and continue installation. Then Enjoy

NB: You will not see the robot3t icon in the start menu. So to start robot3t, always /opt/robo3t-1.3.1-linux-x86_64-7419c406/bin/robo3t to launch robo3T.

Hope it helps ;)

Penny Liu
  • 7,720
  • 5
  • 40
  • 66
Steven
  • 31
  • 2