0% found this document useful (0 votes)
8 views

Day-1 Linux Learning

Uploaded by

The Integer
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views

Day-1 Linux Learning

Uploaded by

The Integer
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

We are starting Linux from Today (RH124)

=====================================================================
1st Topic : Getting started with Redhat Enterprise Linux
=====================================================================
1) what is Open Source ?
2) What is Linux Distribution ??
3) What is Redhat Enterprise Linux ??

1) What is Open Source ??


==> Open Source is a software that licensed and copyright. These softwares are free
to use for study purpose,
change/update purpose, distribute purpose etc and its source code is also free

2) What is Linux Distribution ??


==> Linux Distribution = Linux Kernel + GNU tools + Additional Software & Package
manager
Example : Redhat, CentOS, Ubuntu, Fedora, SUSE, Kali etc

3) What is Redhat Enterprise Linux ??


==> Redhat is very popular company, he is providing paid services for Linux. if you
need any help in Linux,
then Redhat team will provide you support, because you are part of Enterprise
Redhat Linux which is paid version.
===================================================================================
==============================

2nd Topic : Access the command line


======================================
a) In Linux, Direct access in your laptop ==> In your laptop, install Redhat Linux.
Once you will open your laptop, then
you will get the terminal in your screen and you can direct access the command
line.

b) In Windows, via Putty you can get access --> You are login in windows now in
your laptop, you can download putty and install in your windows machine. In putty,
you can give Linux server name and password/password_file and login there then you
will get command line access for that Linux server.

c) In Mac, via SSH/iterm you can get access --> Once you will login mac system then
search iterm/iterm2 and from here you can get command line access for your Linux
server
===================================================================================
==============================

3rd Topic : manage files from the command lines


=========================================================
what is the file system ????
==> File systems are used by Operating system to manage files from where file will
be store and from where file will be retrieve etc.
Note :
In Windows, File Systems are : FAT32, FAT16, NTFS etc
In Linux, File systems are : ext3, ext4, etc
Directory listing attributes :
===================================
ls command to show list of files and directories.
Example:
amankumarfans@amankumarfans:~/DevOps/Sugavardhan$ ls
Aman aman
amankumarfans@amankumarfans:~/DevOps/Sugavardhan$

if we type "ls -l" then it will show long list for files and directories.
Example :
amankumarfans@amankumarfans:~/DevOps/Sugavardhan$ ls -l
total 4
drwxr-xr-x 2 amankumarfans amankumarfans 4096 Jun 20 21:32 Aman
-rw-r--r-- 1 amankumarfans amankumarfans 0 Jun 20 21:32 aman
amankumarfans@amankumarfans:~/DevOps/Sugavardhan$

You might also like