Articles

Posts with Tag: Linux

6 minutes, 36 seconds
Linux System Calls in C: Practical Guide

This article provides a practical overview of Linux system calls in C. It focuses on real examples you can compile and run to better understand how user-space programs interact with the Linux kernel.

1. Linux System Calls

System calls are the interface between user-space applications and the L...

2 minutes, 23 seconds
How to use sockets in Linux

Linux sockets are a way to do inter-process communication (IPC), allowing processes to communicate with each other locally or over a network. They support several communication protocols, the most common being TCP and UDP.

Here’s a basic tutorial to get you started with Linux sockets using TCP,...