Kolam Ayer MakersLinux Foundations

Unix

Core Idea

Unix is the operating-system tradition behind Linux: files, processes, users, permissions, pipes, small tools, and text interfaces.

The Useful Unix Ideas

Course Examples

whoami
pwd
ls -la
cat /etc/os-release
history | grep ssh
ps -u "$USER" -o pid,comm,args | head

These commands show Unix ideas directly: identity, current directory, file metadata, readable system files, pipelines, and processes.

Common Confusions

Proof Check

Pick one command from the course and explain which Unix idea it demonstrates: file, process, user, permission, text stream, or manual page.

Docs Pointers