- TOC
Setup and installation of my favorite cyber security and other useful tools on the new Linux OS
Setup for jekyll
1
2
3
4
5
6
7
8
9
10
11
# Install essentials - the ruby
sudo apt-get install ruby-full build-essential zlib1g-dev
# Setup bash for local gems
echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# Install jekyll and bundler
gem install jekyll bundler