≡ Menu

Major Linux Vs UNIX Kernel Differences

UNIX has been regarded as the mother of most of the operating systems. Some of the popular members of this family Include :

  • System V Release 4(SVR4) developed by AT&T.
  • 4.4 BSD From university of California
  • AIX from IBM.
  • HP-UX from Hewlett-Packard.
  • Solaris from Sun Microsystems.

[continue reading…]

If you are interested in writing Linux system programming, you should learn all the basic library/system calls. This article has an example C program that covers a set of system calls that will help you understand the usage of these basic library calls.
[continue reading…]

Hadoop is an open source software used for distributed computing that can be used to query a large set of data and get the results faster using reliable and scalable architecture.

This is the first article in our new ongoing Hadoop series.
[continue reading…]

Happy New Year 2012 — From Geek and the Dolls

[continue reading…]

How to Check and Repair MySQL Tables Using Mysqlcheck

When your mysql table gets corrupted, use mysqlcheck command to repair it.

Mysqlcheck command checks, repairs, optimizes and analyzes the tables.
[continue reading…]

Typically two processes communicate with each other on a single system through one of the following inter process communication techniques.

  • Pipes
  • Message queues
  • Shared memory

There are several other methods. But the above are some of the very classic ways of interprocess communication.

But have you ever given a thought over how two processes communicate across a network?

For example, when you browse a website, on your local system the process running is your web browser, while on the remote system the process running is the web server. So this is also an inter process communication but the technique through which they communicate with each other is SOCKETS, which is the focus of this article.
[continue reading…]

If you want to manipulate excel files programmatically, you can use Perl Spreadsheet module, which provides an object interface that makes it easier to create and parse Excel files.
[continue reading…]

6 Linux Crontab Command Examples

Crontab command manages the cron table that is used by the cron daemon to execute the cron jobs. This article explains the various command line options of the crontab command.

[continue reading…]