Skip to content

Commit 99c8f01

Browse files
Update README.md
++ added Linux file system chart
1 parent 78b33bb commit 99c8f01

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,28 @@
11
# Linux-FileOwl
22
Linux 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+
```

0 commit comments

Comments
 (0)