Setting up important cyber security and other relevant tools on new Linux OS | cpuinfo
Posts Setting up important cyber security and other relevant tools on new Linux OS
Post
Cancel

Setting up important cyber security and other relevant tools on new Linux OS

  • 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
This post is licensed under CC BY 4.0 by the author.