diff options
| author | Kacper Fiedorowicz <kf@efab.pl> | 2026-01-03 18:44:51 +0100 |
|---|---|---|
| committer | Kacper Fiedorowicz <kf@efab.pl> | 2026-01-03 18:44:51 +0100 |
| commit | 6018e17637264a9561b37be699c3d53b6661de23 (patch) | |
| tree | 8546c9fa94358e7d6daaad5f11ac53e61be97ad5 /docs/fs.txt | |
| parent | ab21f339a33abb1144f3c0f5c4285324e7e88392 (diff) | |
Diffstat (limited to 'docs/fs.txt')
| -rw-r--r-- | docs/fs.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/docs/fs.txt b/docs/fs.txt new file mode 100644 index 00000000..c6617df0 --- /dev/null +++ b/docs/fs.txt @@ -0,0 +1,30 @@ +FILESYSTEM +========== + +Openlinux filesystem is designed to be as handy as possible. + +┌── bin/ +│ └── (System binaries) +│ +├── efi/ (separate parition can be mounted at /boot) +│ └── boot/ +│ ├── bootx64.efi (1) +│ └── initrd (2) +│ +├── lib/ +│ └── (System libraries) +│ +├── usr/ +│ ├── include/ +│ │ └── (System headers) +│ │ +│ ├── local/ +│ │ ├── bin/ +│ │ │ └── (User binaries) +│ │ ├── lib/ +│ │ │ └── (User libraries) +│ │ └── include/ +│ │ └── (User headers) + +(1) - https://www.kernel.org/doc/html/latest/admin-guide/efi-stub.html +(2) - https://www.kernel.org/doc/html/latest/admin-guide/initrd.html |
