Introduction to Docker for DevOpsA Little Bit of Container History Docker is a container runtime. A lot of people think that Docker was the first of its kind, but this is not true – Linux containers have existed since the 1970s. Docker is important to both the development community ...Apr 9, 2023·4 min read
Day 7 - Commands of linux ( find and awk)find -> the find command helps us to find a particular file within a directory. It is used to find the list of files for the various conditions like permission, user ownership, modification, date/time, size, and more. search readable, writeable, an...Mar 26, 2023·2 min read
Day 6 - Basic Commands of Linux (vim, grep)Vim -> It can be used to edit all kinds of plain text. It is especially useful for editing programs. There are a lot of enhancements above Vi: multi level undo, multi windows and buffers, syntax highlighting, command line editing, filename completion...Mar 25, 2023·5 min read
Day 5 - Basic Commands of Linux (pipe, less, more, head, tail)| (Pipe) -> Pipe is used to combine two or more commands such that output of one command serves as input to the next. In short, the output of each process directly as input to the next one like a pipeline. less -> less is a Linux command used for ...Mar 24, 2023·6 min read
Day 4 - Basic Commands of Linux (cp, rm, mv)cp -> Use the cp command to create a copy of the contents of the file or directory specified by the SourceFile or SourceDirectory. syntax -> cp [OPTION]source destination example: copy file1 (file) in folder1 (directory) example: copy delhi(directo...Mar 23, 2023·2 min read
Day 3 - Basic Commands of Linuxls -> Used to list files and directories ls -al -> Formatted long listing with hidden files. pwd-> Show current directory. cd(change directory) -> Change to home cd.. -> one step bacward cd ../../.. -> jump 3 step backward mkdir -> Crea...Mar 22, 2023·1 min read
Day 2 - Basic fundamentals of LinuxIntroduction to Linux Linux is an open-source Unix-like operating system-based family on the Linux kernel, and the OS kernel was first published on 17 September 1991 by Linus Torvalds. Typically, Linux is packaged as the Linux distribution, which con...Mar 21, 2023·5 min read