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

前端 未结 9 1757
南方客
南方客 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:26

    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
    

提交回复
热议问题