Author: Nikolas

My name Nikolas, and i manage servers for nearly 7 years. I started working online as an internet marketer back in 2007, but server maintenance and configuration were always one of my deepest passions. These blog serves mostly as a place that I document my personal "server journey", while at the same time i like teaching others, and help them having fewer headaches while configuring their servers :) I'm also into Machine Learning since i find it fascinating, and it's the ability to reveal hidden patterns is unparalleled. In real life i love hanging out with friends, drinking coffee by the beach, and watching movies. Below you can take a look of my most recent tutorials, so be sure to check them out :) All of the public available projects i created, can be found at github.com

How To Install PortWorx On A Kubernetes Cluster

Introduction Portworx is a software-defined persistent storage solution designed and purpose-built for applications deployed as containers, via container orchestrators such as Kubernetes, Nomad, Marathon, …

Linux Commands Cheat Sheet

System Administration System Information uname -a uname -r IP Address Management ifconfig eth0 #show specific interface On Centos ifconfig ens3 #show specific interface On…

Git Commands Cheat Sheet

Git Basics Creating a new repository mkdir project cd project git init git remote add origin git@github.com:yourlogin/your-repo.git git add . git commit -am “new…