Skip to main content

Command Palette

Search for a command to run...

Linux in one liners

Linux basic terminology: all you need to get started

Updated
1 min read
Linux in one liners
B

Software Engineer

1. Linux → the kernel, not the full operating system. It talks to hardware.

2. Kernel → controls CPU, memory, disk, network. The brain of the system.

3. Operating System → kernel + tools + libraries + apps.

4. Distribution (Distro) → Linux kernel bundled with tools. Example: Ubuntu, CentOS.

5. GNU Tools → basic commands like ls, cp, grep. This is why people say GNU/Linux.

6. Terminal → where you type commands.

7. Shell → program that reads your commands. Bash is common.

8. File System → everything starts from /. No drive letters.

9. Root User → admin user with full control.

10. Permissions → decide who can read, write, or run files.

11. Process → a running program.

12. Service → program running in background.

13. Package Manager → installs software. apt, yum, dnf.

14. SSH → connect to another machine securely.

15. Logs → files that record system activity and errors.

Linux Commands every DevOps engineer should know

Part 1 of 7

This series breaks down Linux commands into clear categories such as system, hardware, and file commands. Each topic is covered in a separate article to make learning Linux simple, organized, and beginner-friendly.

Up next

Linux - chapter-6: modify file owners and search commands

Changing File Ownership and Efficiently Searching Files in Linux