Free Pascal Operating System (FPOS) is a operating system consists of a minimal kernel built on FreePascal. It contains a Scheme implementation of a hard drive (ATA) driver, keyboard (PS2), serial (8250 UART), FAT32 filesystem and a small real time clock manager. The project was built to experiment with developement of operating system using a high level functional language to study the developement process and the use of Scheme to build a fairly complex system.
I built this in Docker using run-release. Here is the output:
[ 0.040000] kmain: loading kshell...
This is ArvernOS kernel shell. Type 'help' for more information.
Protip: switch to usermode with the 'usermode' command.
kshell> ls
2 ./
2 ../
0 dev/
0 proc/
0 bin/
172 booo
0 etc/
717 info
446 lorem.txt
kshell> cat lorem.txt
no such file or directory
kshell>
Am I missing something? Why is lorem.txt not found?
I built this in Docker using run-release. Here is the output:
Am I missing something? Why is
lorem.txt
not found?