Dark Mode
Image
  • Thursday, 18 April 2024
DevOps-2: Learn about Linux

DevOps-2: Learn about Linux


DevOps-2: Learn about Linux - Outline

2.1. Learning Objective
  • Workflow of Linux Operating System
  • Popular Linux Distributions
  • Importance of Linux DevOps
  • Basic commands of Linux
2.2. Linux Introduction

Linux is an open-source operating system that manages the communication between software and hardware of a system.

Components of Linux OS:-

  1. Bootloader: A software to manage the booting process of a computer that mostly comes as a splash screen to boot into an OS.
  2. Kernel: The core of a system that manage CPU, memory and peripheral devices and is the basic level of an OS.
  3. Init System: A subsystem that bootstraps the user space and is charged with controlling daemons.
  4. Daemons: Background services such as printing, sound and scheduling.
  5. Graphical Server: A subsystem to display graphics on the monitor, commonly referred as an X server or X.
  6. Desktop Environment: The component with which users interact the most and includes build-in applications.
  7. Applications: High-quality software application can be easily found using App store like tools that simplify application installation.

Components of Linux OS

Linux Distributions:-

Linux distributions or distros are different versions of the Linux OS offered to suit any type of users. Popular linux distributions are Ununtu, Debian, CentOS, Fedora, Linux Mint, OpenSUSE, Archlinux, Elementary OS.

Components of Linux OS

Importance of Linux in DevOps

  • Faster Development on Linux
  • Open Source
  • Flexible
  • Scalable

Linux Administration

Linux administration is about managing system operation, such as,

  • File backup and restorations
  • Disaster recovery
  • New system builds
  • Hardware, software and user maintenance
  • File system housekeeping
  • Application installation and configuration
2.3. Basic Linux commands

Some of the basic linux commands,

ls: Command to list files and directory
cd: Command to change the current or active directory
sudo: Change the current user to a super/root user.
mv: Used to move a file or rename a file.
rm: Remove files in a directory.
rm -r: remove all the contents of a directory.
mkdir: create a directory in the current directory
chmod: change a file mode to r- read, w- write or x- execute
chown: change the ownership of a file/folder
cat: View the contents of a file
echo: Display a text or string to the standard output or a file.
clear: clear the terminal screen.
apt-get: A package manager to install, remove and upgrade software package.
history: command to show previously used commands.

Comment / Reply From