https://github.com/bryanpmx/utep_cs_operating_systems
This repository is a comprehensive collection of projects and examples demonstrating core concepts of operating systems. These include process and thread management, processor scheduling, concurrency, interprocess communication, memory management, input/output operations, file systems, and basic networking.
https://github.com/bryanpmx/utep_cs_operating_systems
c filesystem interprocess-communication memory-management networking operating-system
Last synced: 6 months ago
JSON representation
This repository is a comprehensive collection of projects and examples demonstrating core concepts of operating systems. These include process and thread management, processor scheduling, concurrency, interprocess communication, memory management, input/output operations, file systems, and basic networking.
- Host: GitHub
- URL: https://github.com/bryanpmx/utep_cs_operating_systems
- Owner: BryanPMX
- Created: 2025-01-22T16:44:02.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-22T16:57:08.000Z (about 1 year ago)
- Last Synced: 2025-03-23T03:16:13.466Z (about 1 year ago)
- Topics: c, filesystem, interprocess-communication, memory-management, networking, operating-system
- Language: C
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Operating Systems Course Projects
## Overview
Welcome to the Operating Systems Course Projects repository. This collection of projects is designed to illustrate and provide practical experience with the fundamental components of operating systems. Through these projects, students can explore and learn about process and thread management, processor scheduling and concurrency, interprocess communication, memory management, input/output operations, file systems, and the basics of networking.
## Projects
This repository is organized into several directories, each dedicated to a specific area of operating systems:
- **Client-Server**: Contains a client and server application demonstrating socket programming and basic network communication.
- **Password Cracker**: Implements a simple brute-force password cracker to illustrate process scheduling and thread management.
- **FUSE File System**: Uses the FUSE library to create a user-space file system, showcasing file system management and operations.