Linux 1
Linux 1
Day-01 : Linux
===============
1) Pre-Requisites
2) Course Content
4) What is the benefit you are goning to get from this course
6) Course Info
================
pre-requisites
================
===============================
Who should learn this course ?
================================
1) Freshers
2) Working Professional (java, net, python, tester, devops, aws)
3) Non IT people
======================================
Where we will use Linux in Realtime ?
======================================
To setup jenkins
To setup docker
To setup k8s
To setup sonar
To setup nexus
To setup ELK
To store logs
==========================================
What we will learn as part of this course
==========================================
Duration : 2 Weeks
Class Time : 6:30 PM to 8:00 PM (IST) ==> Mon-Sat
==========================
What is Operating System
==========================
=> Users will communicate with computers using Operating System (OS)
=============
Windows OS
=============
Ex: Play Games, Watch Movies, Internet Browsing, Store data, Online Classes...
Note: Windows is not recommended for business usecases (servers, tools, application
deployment..)
=======================
Linux Operating System
=======================
touch
mv
rm
vi
mkdir
cat
=================
Linux OS History
=================
=> Initially Linus Torvalds was using Unix OS and found some challenges in that and
informed to that company but they did not accept his suggestions.
=> Linus started doing research and he found "Minux OS" is similar to his ideas.
=> He has taken Minux OS and made few changes to that and released into market as
Linux OS.
================================
Linux Distributions / Flavours
================================
=> Many companies downloaded Linux OS code and modified according to their
requirement and released into market with different names.
Ex: Amazon Linux, Red Hat, Ubuntu, Cent OS, SuSe, Kali, Fedora.......
==========
Summary
==========
=====================
Linux Machine Setup
=====================
✅ Please go thru below videos and get ready with setup before coming to
tomorrow's class.
-
*Ashok IT*
===================
Linux File System
===================
================
Linux Commands
================
cd : change directory
$ cd <dirname>
$ cd ..
ls : list content
$ rm <file-name>
$ rm *.txt
$ rm a*.txt
$ rm -rf <dir-name>
$ mv <present-name> <new-name>
$ mv <present-location> <new-location>
cat : create file with data + append data to file + print file data
$ cat f1.txt
$ cat -n f1.txt
================
whoami
date
cal
pwd
cd
ls
touch
rm
mv
cat
===========