1.) make sure that pip is installed in the Ubuntu machine.
2.) Execute the following command
pip install pymongo
Monday, April 25, 2016
Monday, April 11, 2016
How to install latest version of MongoDB in Ubuntu 14.04?
Follow the below steps to install mongodb in Ubuntu 14.04 version.
1.) sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927
2.) Create list file for MongoDB with the following command.
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
3.) Reload local package database
sudo apt-get update
4.) Install latest version of MongoDB with the following command
sudo apt-get install -y mongodb-org
5.) Start MongoDB service with the following command.
sudo service mongod start
Source: https://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/
1.) sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv EA312927
2.) Create list file for MongoDB with the following command.
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
3.) Reload local package database
sudo apt-get update
4.) Install latest version of MongoDB with the following command
sudo apt-get install -y mongodb-org
5.) Start MongoDB service with the following command.
sudo service mongod start
Source: https://docs.mongodb.org/manual/tutorial/install-mongodb-on-ubuntu/
How to install FFMpeg in Ubuntu 14.04?
Following are the steps to install FFMpeg in Ubuntu 14.04 version.
1.) sudo add-apt-repository ppa:mc3man/trusty-media
2.) Press Enter button for the options to take the defaults.
3.) Update the packages by entering the following commands
sudo apt-get update
sudo apt-get dist-upgrade
4.) Now install FFMpeg with the following command
sudo apt-get install ffmpeg
Source: http://www.faqforge.com/linux/how-to-install-ffmpeg-on-ubuntu-14-04/
How to install noip.com Dynamic Update Client in Ubuntu 14.04?
1.) Login in as root or become root by sudo -s command.
2.) cd /usr/local/src
3.) wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz
4.) tar xf noip-duc-linux.tar.gz
5.) cd noip-2.1.9-1/
6.) make install
7.) Enter your noip.com username/password
The following details to be entered during the process.
2.) cd /usr/local/src
3.) wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz
4.) tar xf noip-duc-linux.tar.gz
5.) cd noip-2.1.9-1/
6.) make install
7.) Enter your noip.com username/password
The following details to be entered during the process.
Please enter the login/email string for no-ip.com <username>
Please enter the password for user '<username>' ********
Only one host [yourname.ddns.net] is registered to this account.
It will be used.
Please enter an update interval:[30]
Do you wish to run something at successful update?[N] (y/N)
New configuration file '/tmp/no-ip2.conf' created.
mv /tmp/no-ip2.conf /usr/local/etc/no-ip2.conf
8.) To start the DUC client execute the following command.
/usr/local/bin/noip2
Src: http://www.noip.com/support/knowledgebase/installing-the-linux-dynamic-update-client-on-ubuntu/
Subscribe to:
Posts (Atom)