Signing you in…

What is Linux

Linux is a family of open-source Unix-like operating systems built around the Linux kernel. When people say Linux they often mean a full system: the kernel plus user-space tools, libraries, and sometimes a graphical desktop. Strictly speaking, the kernel is the part that manages hardware — CPU scheduling, memory, devices, networking — while everything you interact with in a shell or GUI is built on top of it.

ℹ️GNU/Linux: The Free Software Foundation popularized the term GNU/Linux because many essential tools (bash, gcc, coreutils) come from the GNU project. Colloquially, Linux is still the common name for the whole ecosystem.
Kernel and user space

The Linux kernel runs in a privileged mode and exposes services to programs through system calls — open files, create processes, allocate memory, and so on. User-space programs (shells, editors, servers) never touch hardware directly; they ask the kernel. This separation keeps the system stable and secure.

Why Linux matters
Open each card for typical Linux roles
🖥️
Servers & cloud
💻
Developer workstations
🔧
Embedded & IoT
📱
Android
Open source and distributions

The kernel and most user-space components are available under open licenses (GPL and others). No single vendor owns Linux; thousands of contributors and companies improve it. Distributors such as Debian, Fedora, and Ubuntu package the kernel with software repositories, installers, and policies — that packaged product is what you usually install as Linux.

Takeaway: Learn Linux by distinguishing the kernel from the distribution, and remember that the skills you build on the command line transfer across most distros.