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.
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.
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.