This module builds the foundation for everything else in the course.
Before managing users, services, storage, or security, learners must first understand:
What Linux is, how servers are structured, and how to work comfortably from the command line.
This module removes fear of Linux and builds confidence.
What You Will Learn in This Module
By the end of Module 1, learners will be able to:
Lesson 1: What Is Linux and Why Enterprises Use It
Simple Explanation
Linux is an open-source operating system designed for:
Most enterprise servers run Linux because:
✔ it is reliable
✔ it handles heavy workloads
✔ it is secure
✔ it runs cloud platforms
✔ it powers data centers
Real Enterprise Examples
Linux runs:
If you manage infrastructure, you manage Linux.
Lesson 2: Linux Distributions (Distros) Explained Simply
Linux comes in different versions called distributions.
Common enterprise distros:
They all share:
Difference:
Lesson 3: Server Linux vs Desktop Linux
Desktop Linux
Server Linux
Enterprise admins mostly use:
terminal only
Lesson 4: Understanding the Linux Directory Structure
Linux organizes everything into folders.
Important directories:
/etc
Configuration files (VERY important)
/var
Logs, application data
/home
User files
/root
Administrator home
/opt
Optional enterprise software
/tmp
Temporary files
Enterprise Rule
Never randomly edit files in /etc without knowing their purpose.
Lesson 5: Getting Comfortable with the Terminal
The terminal is your main tool.
Core commands:
Navigation
File Operations
Viewing Files
These are daily admin tools.
Lesson 6: Understanding Files and Permissions (Intro Level)
Every file has:
Permissions:
Shown as:
rwxr-xr-x
This controls who can access what.
Enterprise security depends heavily on permissions.
Lesson 7: Root User & Administrative Access
Linux has a superuser:
root
Root can:
Enterprise best practice:
don’t log in as root directly
use sudo for admin tasks
This protects systems from mistakes.
Lesson 8: Remote Server Access (SSH Basics)
Servers are accessed remotely using:
SSH (Secure Shell)
Admins connect from their PC:
ssh user@server_ip
SSH provides:
Never expose SSH publicly without protection.
Lesson 9: Enterprise Mindset: Why CLI Matters
Enterprises prefer CLI because:
✔ faster
✔ scriptable
✔ works remotely
✔ lightweight
✔ automation friendly
Professional admins think in commands, not clicks.
Lesson 10: Practical Self Practice
Learners practice:
No pressure just confidence building.
MODULE 1 SUMMARY
By completing Module 1, learners now understand:
This module answers:
“How do I confidently access and navigate a Linux server?”