File PermissionFile Permission In Linux, there are three types of a file. User - the permission applies only to the owner of the file or directory, they will not impact the actions of other users. Users can also be called default owners of the file. Group - It is a...Mar 2, 2023·2 min read
Day3: Linux Commands.To view what's written in file: cat is used to show the content of the file on the terminal. chmod is used to change the access permissions of files in a directory. history is used to check which commands you have run till now. rm -rf <filename> i...Feb 15, 2023·1 min read
Day2:Linux CommandsWhat is Linux? Linux is a free and open-source operating system that was created by Linus Torvalds in 1991. It is based on the Unix operating system. Linux is known for its stability, security and flexibility. There are many different versions of Lin...Feb 14, 2023·1 min read
Day1: What is DevOpsI am accepting the #90DaysOfDevOps challenge under the guidance of Shubham Londhe. What is Devops? DevOps is a work culture centered around collaboration, communication and integration among the development teams. Actually was introduced to address ...Feb 13, 2023·2 min read
Mastering Infrastructure Automation with Chef: A Guide for IT Professionals and DevOpsConfiguration Management System Chef is a configuration management tool for automating the deployment and management of applications and infrastructure. It helps organizations to manage their infrastructure as code, ensuring consistency, repeatabilit...Feb 13, 2023·4 min read
Docker Interview Question and AnswerWhat is Docker and how does it work? Docker is an open-source platform that allows developers to automate the deployment of applications inside containers. A container is a standalone executable package that includes everything needed to run a piece...Feb 9, 2023·3 min read
From Concepts to Implementation: Understanding MVC in LaravelMVC stands for Model View Controller which is a design pattern that separates an application into three main components: Model: represents the data and business logic of the application. View: responsible for displaying the data to the user. Controll...Feb 8, 2023·2 min read