Skip to content

alkuzin/kfs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kernel From Scratch

Monolithic Unix-like kernel from scratch.

Overview

List of changes here.

Build

First, clone this repository:

git clone https://github.com/alkuzin/kfs.git

Then change current working directory to kfs/build/

cd kfs/build/

Finaly, build project:

cmake CMakeLists.txt && make all

To run OS in QEMU write this command:

make init

License

Monolithic Unix-like kernel from scratch. Copyright (C) 2024 Alexander (@alkuzin).

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.