This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd server # the source diectory | |
mkdir b # build directory | |
mkdir install # the install location | |
cd b | |
cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../install && make -j2 install | |
#-DCMAKE_BUILD_TYPE=Debug is good of debugging. | |
# -DCMAKE_INSTALL_PREFIX=../install is to install everything under the install/ directory. | |
#-j is for number of jobs that can run simultaneously | |
cd install | |
mkdir master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get -y remove mysql-server | |
apt-get -y autoremove | |
apt-get -y install software-properties-common | |
add-apt-repository -y ppa:ondrej/mysql-5.6 | |
apt-get update | |
apt-get -y install mysql-server | |
sudo apt-get install libmysqlclient-dev | |
gem install mysql2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Update the list of Sources in your Ubuntu Installation | |
sudo gedit /etc/apt/sources.list | |
#Add the below code in Sources Window | |
#deb http://cran.rstudio.com/bin/linux/ubuntu precise/ | |
#Updating Keyserver | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 | |
#Adding Repository |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#adding repository | |
sudo add-apt-repository ppa:webupd8team/sublime-text-2 | |
#updating | |
sudo apt-get update | |
#install Sublime text | |
sudo apt-get install sublime-text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Fetch the latest archive of Sublime Text, here 2.0.2 x64 | |
wget http://c758482.r82.cf2.rackcdn.com/Sublime\ Text\ 2.0.2\ x64.tar.bz2 | |
#extract the file | |
tar vxjf Sublime\ Text\ 2.0.2\ x64.tar.bz2 |