-
Notifications
You must be signed in to change notification settings - Fork 1
6. Post‐boot Setup
When you completed the login-phase you will meet the kernel shell (fsh).
If you want to run any real world applications you must load toybox and then run any software.
By default root is not mounted. You have to mount your root. Run the following command to get the list of block devices. (Inside fsh)
lsblk
Before any mounting or configuration you must mount root partition by
mount <diskname> /
There are two types of disk (as on date):
| Example | Description |
|---|---|
| disk0p1 | AHCI Disks (SATA and SATAPI) are classified here, disks may start from zero, but partitions start from one. |
| nvme0n1p1 | NVMe Disks are classified here with same principles as above |
/proc can be mounted using the command,
mount proc /proc
You have full freedom to select the mount path but beware anything other than /proc will break your compatibility with software
/dev can be mounted using the command,
mount dev /dev
You have full freedom to select the mount path but beware anything other than /dev will break your compatibility with software
Under construction*
FrostWing Operating System -- Copyright (C) Pradosh 2022-2026