Pada tutorial kali ini akan membahas sedikit mengenai VoIP Server. VoIP (Voice over Internet Protocol) juga disebut IP Telephony (Internet ...Read more »
The Magician Of Linux
Pada tutorial kali ini akan membahas sedikit mengenai VoIP Server. VoIP (Voice over Internet Protocol) juga disebut IP Telephony (Internet ...Read more »
Dalam jaringan, Point-to-Point Protocol ( PPP ) adalah data link protokol yang umum digunakan dalam membangun hubungan langsung antara dua ...Read more »
Grub Loader menurut saya adalah semacam gerbang buatan linux untuk bisa memasuki sistem operasi dual boot atau lebih sistem operasi dalam s...Read more »
Load balance pada mikrotik adalah teknik untuk mendistribusikan beban trafik pada dua atau lebih jalur koneksi secara seimbang, agar trafik...Read more »
Bandwidth management digunakan karena orang-orang pada saat ini tergantung pada internet. Tetapi karena keterbatasan bandwidth yang ada, mak...Read more »
Untuk memberikan nama domain pada suatu mesin/server maka dibutuhkanlah DNS Server. DNS server berfungsi untuk menterjemahkan alamat IP seb...Read more »
MapServer adalah applikasi Open Source yang memungkinkan sebuah data peta diakses melalui web. Teknologi ini pertama kali dikembangkan ol...Read more »
Pthreads Basics Quiz Pthreads Basics Quiz A quiz on basics of pthreads 1. Which header file needs to be used for pthread programming ?...Read more »
When sharing resources between multiple threads, it is safe to allow multiple readers to access the resource simultaneous as they would not ...Read more »
We saw in the post " " how we can use mutexes in pthreads to achieve synchronization among various threads. Along with the the thr...Read more »
pthreads allows us to create and manage threads in a program. When multiple threads are working together, it might be required that the thre...Read more »
Along with mutexes, pthreads gives us another tool for synchronization between the threads, condition variables. Condition variables are va...Read more »
In the mutex we saw in the post " " , if a mutex is locked by one thread, other threads will wait infinitesly for the mutex when p...Read more »
In the post " Creating an ioctl command in linux " we saw the basics of ioctl, and how we can create our own ioctl commands. The ...Read more »
The following is a C program to find out the maximum length allowed for a host name in the system We can make use of the function sysconf a...Read more »
The following is a C program to find out the number of processors configured on a system. We can make use of the function sysconf and pass...Read more »
Here are three ways in which we can get the path to the current working directory using a c program, 1. we can make use of the function ...Read more »
Here are three ways in which we can get the user name of the currently logged in user using a c program. 1. Using getlogin Header file re...Read more »
mungkin pada kesempatan sebelumnya kita pernah membahas cara membuat distro linux dengan menggunakan salah satu aplikasi yang disediakan ole...Read more »
In c programming, we use structures to store variables of different data types in one kind of variable. Each variable in the structure is te...Read more »