Free, practical DevOps lessons

Master DevOps Tools with Real Practice

Step-by-step lessons that guide you through essential DevOps tools in your own terminal. No simulators, no sandboxesβ€”just real practice, real skills.

Why DevOpsPath Works

Purpose-built lessons emphasize clarity, real practice, and progressive mastery so you can apply DevOps skills immediately.

πŸ“

Crystal Clear Steps

Each command explained with what it does, why it matters, and what to expect

πŸ’»

Real Terminal Practice

Run actual commands in your terminal. Build real muscle memory, real skills

🎯

Learn by Doing

Progressive lessons that build on each other. Start simple, master the advanced

Don't take our word for it

Feedback from the DevOpsPath community

Real people Β· Real results
Real learner feedback
β€œI've used many other sites to learn Linux, and while they were helpful, DevOpsPath really solidified my understanding. Coming from a linguistics background with some front-end experience, the hands-on approach made complex concepts finally click.”
YG
Yasin GΓΌnaydΔ±n
Technical Support Engineer

Enjoying DevOpsPath?

We'd love to hear how it's going. Share your story and help other learners find their path.

Share your story β†’
πŸ’‘Daily DevOps Tip

Day 50: Understand chmod Numbers in 60 Seconds

View all tips

Understanding chmod numbers means you can set precise file permissions without guessing β€” security starts with getting permissions right.

# Make a script executable by owner, readable by everyone
chmod 755 script.sh    # rwxr-xr-x

# Standard permissions for config files
chmod 644 config.yaml  # rw-r--r--

# Lock down private keys and secrets
chmod 600 id_rsa       # rw-------
chmod 600 .env         # rw-------

# Verify permissions
ls -la

# Permission math:
# r (read)    = 4
# w (write)   = 2
# x (execute) = 1
#
# 7 = 4+2+1 = rwx (read, write, execute)
# 6 = 4+2   = rw- (read, write)
# 5 = 4+1   = r-x (read, execute)
# 4 = 4     = r-- (read only)
# 0 = 0     = --- (no access)
#
# Three digits: [owner][group][others]
# 755 = owner:rwx, group:r-x, others:r-x

Quick Start

Jump into your first lesson and start learning today

Git Fundamentals

14 lessons available

Master version control with Git. Learn branching, merging, and collaboration workflows.

Start Git Track
🐳

Docker Essentials

11 lessons available

Learn containerization with Docker. Build, ship, and run applications in isolated containers.

Start Docker Track
☸️

Kubernetes

15 lessons available

Master container orchestration. Deploy, scale, and manage containerized applications.

Start Kubernetes Track
πŸ’»

Linux & Bash

8 lessons available

Master the command line with Linux and Bash. Learn file operations, text processing, and scripting.

Start Linux Track
πŸ”„

CI/CD

16 lessons available

Automate build, test, and deployment pipelines. Learn GitHub Actions and deployment strategies.

Start CI/CD Track
🎯Hands-On Projects

Build Real-World DevOps Pipelines

Apply everything you've learned by building complete end-to-end projects. Integrate multiple tools and see the full DevOps workflow in action.

πŸš€

Full CI/CD Pipeline Project

Build a complete production-ready pipeline from scratch. Take a Node.js app from code commit through automated testing, Docker containerization, and Kubernetes deployment using GitHub Actions.

Advanced
90 minutes
15 steps

Prerequisites:

Git🐳 Docker☸️ KubernetesπŸ”„ CI/CD
View All Projects

More projects coming soon: Terraform Infrastructure, Monitoring Stack, Multi-Cloud Deployment...

Ready to Level Up Your DevOps Skills?

Choose your learning track and start practicing with real commands. Build real skills through hands-on experience.