DEV Community

Cover image for Exploring Fundamental Concepts of Linux Administration Techniques
Kenneth Mahon
Kenneth Mahon

Posted on

Exploring Fundamental Concepts of Linux Administration Techniques

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

  1. pwd: this command is use to print the current working directory

Image description

  1. ls: this command is use to list the files and directories in the current location

Image description

  1. cd: Use to Change current directory to another. the image below shows when i changed to a directory called "engineer"

Image description

  1. cd -: use to return back to the previous directory

Image description

  1. mkdir: use to create a new directory. replace the "example" with the name of the directory you want to create

Image description

  1. 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

Image description

  1. cp: use to copy files and directories

Image description

  1. touch: use to create empty files

Image description

  1. Echo: use to print a line of text

Image description

  1. whoami: shows you the user you are

Image description

  1. su: use to switch between users

Image description

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:

Linux For Beginners

Basic Linux commands

Top comments (2)

Collapse
 
devopsking profile image
UWABOR KING COLLINS

Masterpiece I learnt a lot. Weldone!

Collapse
 
kennethstack profile image
Kenneth Mahon

thanks alot chief