mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-17 19:38:54 +01:00
Add base GNU/Linux help file with file structure information
This commit is contained in:
parent
5096c4fac8
commit
70eb2b1f74
27
help/gnu_linux.md
Normal file
27
help/gnu_linux.md
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
# The GNU/Linux System
|
||||||
|
|
||||||
|
This file holds information about GNU/Linux in general.
|
||||||
|
|
||||||
|
## Root file structure
|
||||||
|
|
||||||
|
```
|
||||||
|
/ # Root directory
|
||||||
|
/bin # Binaries for global commands (ls, cat, etc.)
|
||||||
|
/boot # Boot loader files (grub, the linux kernel, etc.)
|
||||||
|
/dev # "Device files" (/dev/null, /dev/random, etc.)
|
||||||
|
/etc # System-wide configuration files
|
||||||
|
/home # Saved files and personal settings of each user
|
||||||
|
/lib # Libraries used by the binaries in /bin
|
||||||
|
/lib64 # 64-bit libraries
|
||||||
|
/mnt # Temporarily mounted filesystems reside here
|
||||||
|
/opt # Applications that don't rely on other dependencies
|
||||||
|
/proc # Provides process and kernel information as files
|
||||||
|
/root # Home directory for the root user
|
||||||
|
/run # Information about the running system since last boot
|
||||||
|
/sbin # System binaries (fsck, init, route, etc.)
|
||||||
|
/srv # Site-specific data served by the system
|
||||||
|
/sys # Contains information about the system
|
||||||
|
/tmp # Temporary files used for processes
|
||||||
|
/usr # Applications that rely on other dependencies
|
||||||
|
/var # Variable files that are supposed to change over time
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user