├── System Calls of Alpine Linux.pdf ├── Dagmawit_Anmut_Zemenay_Bdu1601219_B.pdf ├── getgid.c └── README.md /System Calls of Alpine Linux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Habld/Dagimawit/HEAD/System Calls of Alpine Linux.pdf -------------------------------------------------------------------------------- /Dagmawit_Anmut_Zemenay_Bdu1601219_B.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Habld/Dagimawit/HEAD/Dagmawit_Anmut_Zemenay_Bdu1601219_B.pdf -------------------------------------------------------------------------------- /getgid.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include 4 | 5 | int main() { 6 | printf("GID: %d\n", getgid()); 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Alpine Linux 2 | Alpine Linux is a security-oriented, lightweight Linux distribution based on musl libc and busybox. Designed for minimalism and efficiency, it excels in containerized environments and cloud computing. Visit [alpinelinux.org](https://www.alpinelinux.org) for documentation and installation details. 3 | # getgid System Call 4 | The `getgid` system call in Linux returns the real group ID of the calling process. It helps in managing permissions and user-group relationships efficiently. 5 | --------------------------------------------------------------------------------