https://github.com/boechat107/my-ostep-projects
My implementations of OSTEP projects (Operating Systems)
https://github.com/boechat107/my-ostep-projects
operating-system study-project
Last synced: 2 months ago
JSON representation
My implementations of OSTEP projects (Operating Systems)
- Host: GitHub
- URL: https://github.com/boechat107/my-ostep-projects
- Owner: boechat107
- Created: 2022-09-17T21:04:47.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-21T21:05:57.000Z (about 2 years ago)
- Last Synced: 2025-01-21T13:25:52.096Z (4 months ago)
- Topics: operating-system, study-project
- Language: C
- Homepage:
- Size: 69.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My OSTEP Projects
My implementation of [OSTEP projects](https://github.com/remzi-arpacidusseau/ostep-projects) (*Operating Systems: Three Easy Pieces*). These projects are part of OSSU's Operating Systems [course roadmap](https://github.com/ossu/computer-science/blob/master/coursepages/ostep/README.md).
## Implementations
* [X] `initial-utilities`
* [X] `wcat` (C and Rust)
* [X] `wgrep` (C and Rust)
* [X] `wzip` and `wunzip` (C and Rust)* [ ] [processes shell](./projects-in-c/) - `wish`
* [ ] C (in progress)
* [ ] Rust## Requirements
To compile C code:
* `c99` (C compiler)
* `make` (for Makefile)To compile Rust code:
* `rustc`
* `cargo`