https://github.com/kts-o7/os_el
Operating Systems Experiential Learning Component
https://github.com/kts-o7/os_el
Last synced: 2 months ago
JSON representation
Operating Systems Experiential Learning Component
- Host: GitHub
- URL: https://github.com/kts-o7/os_el
- Owner: KTS-o7
- License: apache-2.0
- Created: 2023-03-17T17:43:44.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-17T17:53:23.000Z (about 2 years ago)
- Last Synced: 2025-01-06T19:18:18.671Z (4 months ago)
- Language: C
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OS_EL
Operating Systems Experiential Learning ComponentThis repository includes 3 codes to simulate
i. List command
ii. Paging
iii. Memory Mapscompile the list command with
```shell
gcc Improved_List.c -o ListImp
```
Run it with
```shell
./ListImp filename
```
Similarly the Memory map and Paging files can be compiled by
``` shell
gcc MMap.c - o MemoryMap
gcc paging.c - o paging
```
To run those files the following commands can be used.
``` shell
./MemoryMap
./paging
```