Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foo290/alpacaos
An x86_64 bit operating system
https://github.com/foo290/alpacaos
Last synced: 10 days ago
JSON representation
An x86_64 bit operating system
- Host: GitHub
- URL: https://github.com/foo290/alpacaos
- Owner: foo290
- Created: 2021-05-27T22:19:59.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-29T05:28:02.000Z (over 3 years ago)
- Last Synced: 2024-10-12T07:25:25.080Z (about 1 month ago)
- Language: Assembly
- Size: 3.98 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# alpacaOS
This is a x86_64 bit operating system (underdev) which I am writing to understand computers at assembly level :D
## Setup:
### Docker setup :
**Making Image:**
```
docker build buildenv -t {tag for your image goes here...}
```**Spinning up container:**
set your pwd to your cwd by ```export pwd=$PWD```
```
docker run --rm -it -v "$pwd":/root/env {tag of your image...}
```**Inside Container:**
```
make build-x86_64
```you will see build and dist folder after running above commands. These folder contains the kernel. You can emulate this by using emulator like qemu as :
```
qemu-system-x86_64 -cdrom dist/x86_64/kernel.iso
```