Using Hugo

Hugo Requires Go brew install hugo create a folder for your website files hugo server up #It will generate a site locally on port 1313 Install a theme and copy exampleSite/config.toml to the root folder mkdir themes // Creates a “themes” Folder cd themes // Points to the “themes” Folder git submodule add https://github.com/pacollins/hugo-future-imperfect-slim.git Youtube references Mike Dane’s Playlist Ref ...

August 25, 2020 · 1 min · Kiran Chavala

Installing Rancher

Rancher is a tool to manage your kubernetes cluster The installation steps are here https://gist.github.com/kiranchavala/893ec350dd55f9fb4747b602208bb4fc

August 25, 2020 · 1 min · Kiran Chavala

Installing kubernetes via kubeadm

The steps are here https://gist.github.com/kiranchavala/7e4cda9bff5e141bd7601c870191e051

August 19, 2020 · 1 min · Kiran Chavala

Using Jekyll

Jekyll is popular static site generator The steps are here https://gist.github.com/kiranchavala/152291d148c3694b37d691ca1df1fe8d Youtube references Mike Dane’s Playlist Bill Raymond

August 14, 2020 · 1 min · Kiran Chavala

Using tmux

If you want to execute the same command across different server https://github.com/tmux/tmux/wiki

August 14, 2020 · 1 min · Kiran Chavala

Disable ipv6 in centos 7

To verify if IPv6 is enabled or not, execute ifconfig -a | grep inet6 inet6 fe80::211:aff:fe6a:9de4 prefixlen 64 scopeid 0x20 inet6 ::1 prefixlen 128 scopeid 0x10[host] Disable Ipv6 in kernel module (requires reboot) Edit /etc/default/grub add ipv6.disable=1 in line GRUB_CMDLINE_LINUX, e.g cat /etc/default/grub GRUB_TIMEOUT=5 GRUB_DEFAULT=saved GRUB_DISABLE_SUBMENU=true GRUB_TERMINAL_OUTPUT="console" GRUB_CMDLINE_LINUX="ipv6.disable=1 crashkernel=auto rhgb quiet" GRUB_DISABLE_RECOVERY="true" Regenerate a GRUB configuration file and overwrite existing one grub2-mkconfig -o /boot/grub2/grub.cfg Restart system and verify no line “inet6” in “ip addr show” command output ...

August 13, 2020 · 1 min · Kiran Chavala