How to install Robomongo from tar.gz file as a program in Ubuntu 15.10

前端 未结 9 1740
南方客
南方客 2021-01-31 07:30

Nowadays robomongo developers releasing the new versions of robomongo as tar.gz not in .deb packages that was easy for double click installations. But

9条回答
  •  温柔的废话
    2021-01-31 08:23

    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
    

提交回复
热议问题