Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 659 Bytes

File metadata and controls

22 lines (17 loc) · 659 Bytes

os-projects

A collection of programs written in C/C++ which emulate various algorithms used in operating systems.

Process Manager/Shell

Command Result
pwd print working directory
cd [directory name] change directory
jobs list all currently running processes and their ids
kill [process id] force quit a specific process
fg [process id] force a process to run in foreground
bg [process id] force a process to run in background
[executable file] run process in foreground
[executable file] & run process in background
quit exit shell

Virtual Memory Manager

Heap Manager

Server/Client