CozyDev

Stay curious

X Window System

LPI (subject 106)

Linux 系統的標準GUI是 X Window System,通常簡稱為X。目前發行的版本通常為 X Version 11 Release 7,這版本通常稱為X11R7.4或X11。以GNU Public License 條款發

Linux System Files

/etc/fstab Filesystem Table, default in 644 mode Structure # <file system> <mount point> <type> <options> <dump> <pass> fstab 主要有六個欄位: File System: 需要掛載的裝置(硬碟、Partitions、外接光碟機等等)。 Mount Poin

Linux Kernal

Deep dive into the largest open source program

What is Linux Kernal The kernal is a program Often with a name like vmlinuz- Loaded a run by a noot loader, like GRUB(linux) GRUB GRUB: Load the Kernal program from disk to memory, and transfer the control to kernal GRUB comes after Power-On-self-Test(POST) The Kernal is an API System calls Virtual file system entries (not really a directory) proc sys debugfs Device files(standard system calls, read, write, open,…etc) The

Processes and jobs

What are the differencess

In Linux systems, “process” and “job” are two distinct concepts representing different units of execution. Here’s the difference between them along with some common examples: Process: A process is an instance of a program running in the operating system. Each process has its own memory space, code, data, open files, resources, and state. Processes are independent of each other and cannot directly access the memory space of other processes. A