Skip to content

3. Directory Structure

Pradosh edited this page Apr 7, 2026 · 3 revisions

Directory Structure

tree -d > tree.txt

Run the above command to get an glimpse of the directories. Output is given below.

.
├── disk_root
│   └── EFI
│       └── BOOT
├── firmware
│   └── uefi
├── keys
├── limine
└── source
    ├── boot
    ├── drivers
    │   ├── audio
    │   └── networking
    │       └── ethernet
    │           └── RTL
    ├── includes
    │   ├── algorithms
    │   ├── archive
    │   ├── C++
    │   ├── commands
    │   ├── disk
    │   ├── drivers
    │   ├── executables
    │   ├── filesystems
    │   │   └── layers
    │   ├── flanterm
    │   ├── image
    │   ├── math
    │   ├── opengl
    │   └── sys
    ├── kernel
    │   └── C
    │       ├── algorithms
    │       ├── archive
    │       ├── disk
    │       ├── executables
    │       ├── filesystems
    │       │   └── layers
    │       ├── flanterm
    │       ├── image
    │       ├── interrupts
    │       ├── math
    │       ├── misc
    │       ├── opengl
    │       ├── shell
    │       │   └── commands
    │       └── user-input
    ├── linker
    ├── obj
    │   ├── drivers
    │   │   ├── audio
    │   │   └── networking
    │   │       └── ethernet
    │   │           └── RTL
    │   ├── kernel
    │   │   └── C
    │   │       ├── algorithms
    │   │       ├── archive
    │   │       ├── disk
    │   │       ├── executables
    │   │       ├── filesystems
    │   │       │   └── layers
    │   │       ├── flanterm
    │   │       ├── image
    │   │       ├── interrupts
    │   │       ├── math
    │   │       ├── misc
    │   │       ├── opengl
    │   │       ├── shell
    │   │       │   └── commands
    │   │       ├── tasking
    │   │       └── user-input
    │   └── userland
    └── scripts

74 directories

Clone this wiki locally