answer of @mistertandon is nice But I will be more clear
There Two ways to install robomongo
program into ubuntu using command line:
First way
1.1 download tar.gz file from Official robomongo
website(choose version you need to install and get it's tar.gz download file url)
wget https://download.robomongo.org/0.9.0/linux/robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.2 extract tar.gz file
tar -xvzf robomongo-0.9.0-linux-x86_64-0786489.tar.gz
1.3 mv files and folders into the result folder from extraction operation
into folder robomongo
under /usr/local/bin
sudo mkdir /usr/local/bin/robomongo
sudo mv robomongo-0.9.0-linux-x86_64-0786489/* /usr/local/bin/robomongo
1.4 make sure excute file for robomongo
program which exists under
/usr/local/bin/robomongo/bin
folder is excutable file
cd /usr/local/bin/robomongo/bin
sudo chmod +x robomongo ## run command only if robomongo isn't excutable file
./robomongo
Second way
2.1 download deb file from Official robomongo
website(choose version you need to install and get it's deb download file url)
wget https://download.robomongo.org/0.8.5/linux/robomongo-0.8.5-x86_64.deb
2.2 install deb file using dpkg command line
sudo dpkg -i robomongo-0.8.5-x86_64.deb
2.3 open robomongo
program using command line by run
robomongo
Very Important Notice:
all version less than robomongo
program 0.9.* version has both deb
file and tar.gz
file download urls(I didn't know what is the reason for this) So If you need download version less than 0.9.* version you can use one of two ways But If you need download version 0.9.0 there only one way is the first ones
more links about install robomongo
program: link 1, link 2