Skip to content

Archives

All the articles I've archived.

2025 22
June 4
  • Terraform - Complete step-by-step process to create a (VM) on Azure and SSH under student pack subscription.

    Published:

    Making a Linux virtual machine on Microsoft Azure using Terraform. From setting up providers and creating a resource group to configuring networking components and managing SSH authentication using azure CLI & GUI

  • Terraform - Create and SSH into an AWS EC2 Instance Using Terraform (Free Tier Guide for Beginners)

    Published:

    How to create and SSH into an Amazon EC2 instance using Terraform — completely within AWS Free Tier limits. We’ll cover essential Terraform setup, defining AWS resources, adding a security group for SSH access, and outputting the public IP for easy login. Perfect for beginners looking to get hands-on with Infrastructure as Code (IaC)!

  • Docker, Kubernetes, and OpenShift Cheat sheets

    Published:

    Cheatsheet of docker and Kubernetes.

  • Kubernetes Basics

    Published:

    what container orchestration is. explore how developers can use container orchestration to create and manage complex container environment development lifecycles. Kubernetes is currently the most popular container orchestration platform. You’ll examine key Kubernetes architectural components, including control plane components and controllers. Explore Kubernetes objects, and learn how specific Kubernetes objects such as Pods, ReplicaSets, and Deployments work. Then, learn how developers use the Kubernetes command line interface (CLI), or “kubectl” to manipulate objects, manage workloads in a Kubernetes cluster, and apply basic kubectl commands. Dfferentiate the benefits and drawbacks of using imperative and declarative commands. use the kubectl CLI commands to create resources on an actual Kubernetes cluster. Kubernetes CLI to create a Kubernetes pod, create a Kubernetes deployment, create a ReplicaSet and see Kubernetes load balancing in action.

May 18
  • Managing Applications with Kubernetes.

    Published:

    explore ReplicaSets, autoscaling, rolling updates, ConfigMaps, Secrets, and service bindings, and learn how you can use these capabilities to manage Kubernetes applications. learn how ReplicaSets scale applications to meet increasing demand, and how autoscaling creates dynamic demand-based scaling. how to use rolling updates to publish application updates and roll back changes without interrupting the user experience. learn how to use ConfigMaps and Secrets to provide configuration variables and sensitive information to your deployments and to keep your code clean. scale and update applications deployed in Kubernetes.

  • How To Install and Configure Ansible on Ubuntu.

    Published:

    Install and configure Ansible on Ubuntu, set up communication with virtual machines (VMs) as managed nodes, and execute your first automation playbooks.

  • First Database Project - Setting Up & Managing MySQL/MariaDB on Linux, Database Dump, Backup and Restore

    Published:

    Dive into this practical assignment to learn how to install and secure MariaDB on your Debian Linux system. Covering database creation, user management, remote connectivity, and essential dump, backup/restore operations.

  • Connect to Your Linux VM via SSH- Guide to Secure Remote Access and Key-Based Authentication

    Published:

    learn how to connect to your Linux Virtual Machine (VM) terminal from an external via SSH. Also Set up SSH key-based authentication.

  • 🐧💻 Linux Directories & Config Files Demystified - What Every DevOps Should Know

    Published:

    Ever wondered what all those directories and config files in Linux actually do? This comprehensive guide breaks down the Linux filesystem hierarchy, explaining every important directory, subdirectory, and configuration file—along with their purposes and functions. Whether you're a Linux newbie or a seasoned sysadmin, this post will help you master the Linux filesystem!

  • Setting Static IP using nmtui on vmware workstation.

    Published:

    Static IP Configuration Inside the VM (using nmtui)

  • Zsh Setup with Auto-Suggestions, Syntax-highlighting & Themes

    Published:

    setting up Zsh, making it your default shell, and enhancing it with Oh My Zsh. install zsh-autosuggestions for smart command completion, zsh-syntax-highlighting for better readability, and easily customize your terminal's look with various Zsh themes.

  • Linux Command Line and Shell Scripting Cheat Sheet for Beginners and Practitioner

    Published:

    Introduction to Linux Commands - Informational, Navigational, & Management Commands | Working with Text Files, Networking & Archiving Commands | Introduction to Shell Scripting

  • Containers and Containerization - Docker

    Published:

    About container concepts, features, use cases, and benefits. Building on your new knowledge of containers, you’ll learn what Docker does and discover why Docker is a winner with developers. You’ll learn what Docker is, become acquainted with Docker processes, and explore Docker’s underlying technology. How developers and organizations can benefit from using Docker and see which situations are challenging for using Docker. Next, learn how to build a container image using a Dockerfile, how to create a running container using that image, become familiar with the Docker command line interface (CLI), and explore frequently used Docker commands. Docker objects, Dockerfile commands, container image naming, and learn how Docker uses networks, storage, and plugins. Then, assimilate this knowledge when you see Docker architecture components in action and explore containerization using Docker. You’ll pull an image from a Docker Hub registry. Run an image as a container using Docker, build and tag an image using a Dockerfile, and push that image to a registry.

  • Pull, Build an image using a Dockerfile and Push the image to Docker Hub.

    Published:

    Pull an image from Docker Hub and run it as a container. Build an image using a Dockerfile and Run the image as a container. Push the image to Docker Hub.

  • How to Connect a Netlify sites to a Custom Domain or subdomain Using Cloudflare with SSL Certificate

    Published:

    Connect Custom Domain\subdomain via Cloudflare, Point DNS from Cloudflare to Netlify, Verify Domain Ownership with Netlify via Cloudflare, Ensure SSL (HTTPS) Works

  • Make your localhost app live on the internet using ngrok.

    Published:

    Make your locally hosted any app to internet by using ngrok

  • Expose Your Localhost app to the Internet with Custom domain using Cloudflare Tunnel

    Published:

    You’ll expose your local site (like your localhost site) directly through your own domain using cloudflared, without needing ngrok at all.

  • Linux-M3 - Introduction to Shell Scripting

    Published:

    Learn the basics of shell scripting. Learn what a script is and when to use scripts. Describe the shebang interpreter directive and create and run a simple shell script. Additionally, Usage pipes and filters and set shell and environment variables. list features of Bash shell scripting and use crontab to schedule cron jobs, understand the cron syntax, and view and remove cron jobs.

  • Schedule Tasks with Precision with Cron Jobs

    Published:

    Cron Jobs Cheat Sheet, Email Notification from Cron Jobs, Send Cron Job Emails via Gmail SMTP

  • Linux-M1 - Introduction to Linux

    Published:

    Learn about the basics of Linux. Origins of the Linux operating system and list its key features and use cases. Linux distribution, the names of popular distributions, and their key characteristics. Linux architecture, interact with a Linux system using the terminal, and navigate directories using paths and shortcuts. create and edit text files using text editors such as nano and Vim. Lastly, Use a software package manager to install and updates on a Linux system.

  • Linux-M2 - Introduction to Linux Commands

    Published:

    Learn how to use common Linux commands. what a shell and shell commands are, and how to use commands to do various tasks in Linux. How to use informational commands to find relevant information about your system, navigation commands to navigate files and directories, and management commands to create, delete, copy, and move files and directories. Learn to sort and view files in useful ways and extract specific lines and fields from your files. Use networking commands to examine your network configuration and evaluate, identify, and retrieve data from URLs. Cover file archiving and compression commands.

  • Linux-M4 - Final Project

    Published:

    complete a practice project in which you create an automated Extract, Transform, Load (ETL) process to extract daily weather forecasts and observed weather data. You will schedule this process to run automatically at a set time daily and learn how to create a script to measure forecast accuracy. create a scheduled backup script.