├── system call implementation .pdf ├── window server installtion .pdf └── README.md /system call implementation .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hana1221M/OSSP_INDVIDUAL_HANA-MESFIN-HUNDE_bdu1601694_A/HEAD/system call implementation .pdf -------------------------------------------------------------------------------- /window server installtion .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hana1221M/OSSP_INDVIDUAL_HANA-MESFIN-HUNDE_bdu1601694_A/HEAD/window server installtion .pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Windows Server 2022 – OS Project 2 | 3 | ## INSTALLATION 4 | 5 | This project explains how to install Windows Server 2022 using Oracle VirtualBox. It includes steps like setting up a virtual machine, loading the ISO file, and following the installation wizard. Key tasks include choosing server roles, setting up a user account, and configuring the network. The goal is to get a clean and working server environment for learning. It's a simple way to explore Windows Server features without using a real server. 6 | 7 | ## SYSTEM CALL IMPLEMENTATION 8 | 9 | The system call explored in this project is `accept()`, which helps a server listen and respond to client connections. It’s part of the Winsock API in Windows and is commonly used in socket programming. When a client tries to connect, `accept()` creates a new socket to handle that specific connection. This is useful in apps like web servers that need to talk to many users at once. It’s a basic but powerful tool for building networked software. 10 | --------------------------------------------------------------------------------