mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
docs: update syscall reference and add installation guides
This commit is contained in:
27
docs/installation/README.md
Normal file
27
docs/installation/README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
# BoredOS Installation
|
||||
|
||||
## Requirements
|
||||
|
||||
- Disk with at least **1 GB** (2,097,152 sectors)
|
||||
- UEFI firmware
|
||||
- A running BoredOS live environment (ISO)
|
||||
|
||||
## Quick Start (UEFI)
|
||||
|
||||
```
|
||||
boredos_install --uefi /dev/sda
|
||||
```
|
||||
|
||||
After installation, reboot and select the target disk from your firmware boot menu.
|
||||
|
||||
## Manual Steps
|
||||
|
||||
```
|
||||
fdisk /dev/sda
|
||||
mkfs_fat -F 32 -n EFI /dev/sda1
|
||||
mkfs_fat -F 32 -n BOREDOS /dev/sda2
|
||||
boredos_install --no-partition --no-format --uefi /dev/sda
|
||||
```
|
||||
|
||||
|
||||
See `install_guide.md` for a full walkthrough and `internals.md` for a deep dive into how the process works.
|
||||
Reference in New Issue
Block a user