How to install Robomongo from tar.gz file as a pro

2020-05-22 06:58发布

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?

9条回答
干净又极端
2楼-- · 2020-05-22 07:13

you can do some this:

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

You must rename folder

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

Dowload any images with format .png [click here][1]

save the images like robo3t.png and move this image to folder robo3t

and then; execute:

sudo mv robo3t /opt

and

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

and 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!

查看更多
smile是对你的礼貌
3楼-- · 2020-05-22 07:21

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.

查看更多
混吃等死
4楼-- · 2020-05-22 07:23

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 ;)

查看更多
走好不送
5楼-- · 2020-05-22 07:25

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
查看更多
在下西门庆
6楼-- · 2020-05-22 07:30

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

查看更多
老娘就宠你
7楼-- · 2020-05-22 07:31

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
查看更多
登录 后发表回答