Day 7 of 90DaysOfDevOps · What is Package? Application software is delivered in units called packages. A package is a collection of files and directories...
Day 6 of 90DaysOfDevOps · Loops in Shell Script Let's create directories day1 to day90 #!/bin/bash read -p "directory name: " dirName read...
Day 5 of 90DaysOfDevOps · Before start learning linux shell scripting let's dive into following three concepts What is kernel? Kernel is core component...
Day 3 of 90DaysOfDevOps · User management A user is an entity, in a Linux operating system, that can manipulate files and perform several other...
Day 3 of 90DaysOfDevOps · Create file touch <filename> -> this will create any kind of file Add content in file vi <filename> or vim <filename> -> after...
Day 2 of 90DaysOfDevOps · listing command ls <options> <arguments> -> list all sub directories and file in present directory Examples: ls -l--> list the...