File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change 11# Linux-FileOwl
22Linux kernel subsystem that monitors file system events. It can be used to detect when files are created, modified, or deleted
3+
4+ # Linux File System
5+
6+ ``` mermaid
7+ graph TD
8+ subgraph Linux File System
9+ Root(/) --> bin[bin: Essential command binaries]
10+ Root(/) --> boot[boot: System boot loader files]
11+ Root(/) --> dev[dev: Device files]
12+ Root(/) --> etc[etc: Host-specific system-wide configuration files]
13+ Root(/) --> home[home: User home directory]
14+ Root(/) --> lib[lib: Shared library modules]
15+ Root(/) --> media[media: Media file such as CD-ROM]
16+ Root(/) --> mnt[mnt: Temporary mounted filesystems]
17+ Root(/) --> opt[opt: Add-on application software packages]
18+ Root(/) --> proc[proc: Interface to kernel data structures]
19+ Root(/) --> root_dir[root: Home directory for root user]
20+ Root(/) --> run[run: Run-time program data]
21+ Root(/) --> sbin[sbin: System binaries]
22+ Root(/) --> srv[srv: Site-specific data served by this system]
23+ Root(/) --> sys[sys: Virtual directory providing information about the system]
24+ Root(/) --> tmp[tmp: Temporary files]
25+ Root(/) --> usr[usr: Unix System Resources]
26+ Root(/) --> var[var: File that is expected to continuously change]
27+ end
28+ ```
You can’t perform that action at this time.
0 commit comments