Welcome back guys to day 3 of my DevOps journey! we are progressing little by little. we already know what DevOps is all about and the various concept of DevOps. interesting right??? did i just hear yes?? it is definitely interesting. To progress further in my learning Journey, i dived into LINUX OS ; Another interesting part of DevOps. sit tight as i take you through all i learnt today
Introduction
Linux is an open-source operating system kernel that serves as the foundation for a wide range of operating systems, collectively known as Linux distributions or distros. Linux is known for its stability, security, flexibility, and the ability to run on various hardware architectures. It is based on the Unix operating system, which provides a robust and mature foundation for multitasking, multiuser systems.
Basic Linux Commands
Linux Command Line interface (CLI) is essential for effective system administration and development tasks. The CLI is an essential tool in their workflow. it Enables developers to compile code, manage version control system, run scripts, and interact with development tools and frameworks.
let's take a look at some of the commands line
- pwd: this command is use to print the current working directory
- ls: this command is use to list the files and directories in the current location
- cd: Use to Change current directory to another. the image below shows when i changed to a directory called "engineer"
- cd -: use to return back to the previous directory
- mkdir: use to create a new directory. replace the "example" with the name of the directory you want to create
- rm: use to remove files and directories. when you run the command, you won't see any output but when you use the ls command to check the list of files and directory, you won't see file/directory you removed
- cp: use to copy files and directories
- touch: use to create empty files
- Echo: use to print a line of text
- whoami: shows you the user you are
- su: use to switch between users
It is important to linux Command line interface in the journey of becoming a DevOps Engineer. take time to practice them and get use to it.
okay guys; it is nice sharing my day 3 with you all.
Resources:
Top comments (2)
Masterpiece I learnt a lot. Weldone!
thanks alot chief