Python Libraries for DevOps#90DaysOfDevOps Reading JSON and YAML in Python As a DevOps Engineer, you should be able to parse files, be it txt, json, yaml, etc. You should know what all libraries one should use in Python for DevOps. Python has numerous libraries like os, sys...Mar 29, 2023·2 min read
Advance Git & GitHub for DevOps Engineers#90DaysOfDevOps Git branching Use a branch to isolate development work without affecting other branches in the repository. Each repository has one default branch and can have multiple other branches. You can merge a branch into another branch using a...Mar 14, 2023·2 min read
Deep Dive in Git & GitHub for DevOps Engineers#90DaysOfDevOps What is Git and why it is important? Git is a DevOps tool for managing source code. It is a version control system that can efficiently manage small to very large projects and is free and open-source. Git is a tool used to log source ...Mar 11, 2023·3 min read
Basic Git & GitHub for DevOps Engineers#90DaysOfDevOps What is Git? Git is a version control system that allows you to track changes to files and coordinate work on those files among multiple people. It is commonly used for software development, but it can be used to track changes to any ...Mar 10, 2023·4 min read
Understanding package manager and systemctl#90DaysOfDevOps (1) What is a package manager in Linux? In simpler words, a package manager is a tool that allows users to install, remove, upgrade, configure and manage software packages on an operating system. The package manager can be a graphical...Mar 9, 2023·2 min read
File Permissions and Access Control Lists#90DaysOfDevOps (1) Create a simple file and do ls -ltr to see the details of the files. Change the user permission of the file. (2)Write an article about File permissions in Linux. In Linux, Three types of users are there- owner-The owner of the ...Mar 6, 2023·2 min read
Advanced Linux Shell Scripting for DevOps Enginners with User Management#90DaysOfDevOps (1) Write a bash script createdirectories.sh that when the script is executed with three given arguments (one is the directory name and the second is the start number of directories and the third is the end number of directories ) it ...Mar 5, 2023·2 min read