Python Libraries for DevOpsReading JSON and YAML in Python As a DevOps Engineer, you should be able to parse files, whether it is JSON or YAML. JSON: The purpose of JSON (JavaScript Object Notation) is to format data so that different computer programs can easily understand an...Jun 10, 2023·4 min read
Advance Git & GitHub for DevOps Engineers: Part-1Git Branching Branching in Git is like creating separate paths of development within a project. It lets users work on different things at the same time, like adding new features or fixing bugs, without affecting the main part of the project. Think of...Apr 29, 2023·10 min read
Deep Dive in Git & GitHub for DevOps EngineersWhat is Git and why is it important Git is a widely adopted and critical version control system that is extensively employed in various domains, extending beyond just software development. It allows developers to track changes to their code over time...Apr 11, 2023·4 min read
Basic Git & GitHub for DevOps EngineersGit As described by [www.git-scm.com] - "Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency." It allows developers to track changes to their code ...Apr 9, 2023·6 min read
Understanding Package Manager and Systemctl - LinuxPackage Manager in Linux A package manager is a software tool that helps users install, upgrade, configure, and manage software packages on their Linux systems. It is a critical component of any Linux distribution as it simplifies the process of inst...Apr 7, 2023·4 min read
File Permissions & Access Control ListsFile Permissions are used to control access to the files and directories/folders. There are 3 types of permissions: read; write; & execute. Let's have a look at a sample file (sample.txt) I created in Linux and view its file permissions before and af...Apr 5, 2023·3 min read
Advanced Linux Shell Scripting for DevOps Engineers with User ManagementIn this short blog I will share some information with examples about using "for loops" to create multiple directories; creating backups; Cron; and User Management. Shell Script for creating multiple Directories I created a Shell Script file "createDi...Apr 1, 2023·3 min read