linuxlab.io
Tutorials▾
  • Linux & networking
    File system, processes, TCP/IP, BGP and OSPF
    →
  • Terraform & IaC
    HCL, state, plan/apply on a LocalStack sandbox
    →
  • Git & GitHub
    Object model, plumbing, branching, GitHub Actions
    →
All tutorials →
PricingAboutSign inCreate account
/
  • Введение
  • Уроки
  • How it works
  • Симулятор
  • База знаний
  • Собеседование
Lessons
Footer
linuxlab-TutorialsPricingAboutPrivacy & cookies
Copyright © 2026 LinuxLab. All rights reserved.
Beginner · урок 01·~10 мин
пропустить →
About

The file system: first look

In Linux everything is a file: processes, devices, network interfaces. The directory tree is organized by the fhs (Filesystem Hierarchy Standard). In this lesson you walk through the directory tree, create your own file, and confirm that the system remembered what you did.

Если уже знаком с темой, пропустить введение и сразу к терминалу.

What you'll learn

Что узнаешь

Ключевые идеи урока. Каждая разбирается на отдельном шаге с проверкой.

  • ┌In Linux everything is a file: processes, devices, sockets
  • ├The FHS standard defines where /etc, /home, /var, /usr live
  • ├Every shell is a process with a PID, visible through ps/pgrep
  • └Init scripts in the lesson YAML prepare the sandbox before it starts
Commands

Команды, которые встретятся

Не нужно их заучивать заранее, запомнятся по ходу. Беглый взгляд сейчас сделает урок легче.

командачто делает
pwdabsolute path to the current directory
ls -la <dir>long listing including hidden files
cat <file>print the contents of a file to stdout
echo 'text' > <file>create or overwrite a file with a string
pgrep -x <name>find a process by exact name
Knowledge base

База знаний по теме

Короткие справочные статьи. Не главы, не нужно читать перед уроком. Удобно открывать после, чтобы закрепить термин.

/kb/process-and-pid

Processes and PID

/kb/systemd

systemd as the init system

готов?

Sandbox запустится автоматически, подожди 5–10 секунд после клика.

Начать урок →