32 lines
387 B
Markdown
32 lines
387 B
Markdown
# Amix
|
|
|
|
Minimalistic Unix-like OS written on Rust.
|
|
|
|
## Getting started
|
|
|
|
### Dependencies
|
|
|
|
* Rust
|
|
* QEMU
|
|
|
|
### Executing
|
|
|
|
```
|
|
git clone https://git.inotfail.com/ami-chuu/amix.git
|
|
cd amix
|
|
cargo run
|
|
```
|
|
|
|
### Writing to a USB
|
|
|
|
```
|
|
dd if=target/x86_64-blog_os/debug/bootimage-blog_os.bin of=/dev/sdX && sync
|
|
```
|
|
|
|
Where sdX is the device name of your USB stick.
|
|
|
|
### Testing
|
|
|
|
```
|
|
cargo test
|
|
``` |