Last active
August 29, 2015 14:07
-
-
Save JohnathanMarkSmith/f2e81ce51c4af2923a42 to your computer and use it in GitHub Desktop.
Creating Blogging VM with CentOS7
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
sudo yum install nodejs npm ruby ruby-devel rubygems git | |
gem install jekyll | |
vi .gemrc | |
# in .gemrc file add ":ssl_verify_mode: 0" | |
gem install jekyll | |
wget http://nodejs.org/dist/v0.10.30/node-v0.10.30.tar.gz | |
tar xzvf node-v* && cd node-v* | |
sudo yum install gcc gcc-c++ | |
./configure | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment