After studying the basics of Linux Application Programming, the next step is to learn the different ways in which the programming concepts like fork, threads, IPC mechanism etc are used in real applications.

Please guide on how to master these concepts using real applications?

link|improve this question

78% accept rate
2  
There are tons of tutorials about this in the net. – Kiril Kirov Nov 22 '11 at 12:00
@KirilKirov: I am not talking about the tutorials. Its one thing to learn the concepts, but it is still another things to apply those concepts. I am particularly looking for some simple easy to learn applications where these concepts are applied. – LinuxPenseur Nov 22 '11 at 12:37
feedback

2 Answers

up vote 1 down vote accepted

If you want to understand what a particular program (e.g. a usual command like ls or date ...) does in term of system calls, try using strace on it, e.g.

strace ls

Another major point is that most of GNU/Linux is free software so you can study its source code (even run it with a debugger) and improve it.

link|improve this answer
feedback

Not sure what you're exactly targeting, but this book is a classic if you are programming on *nix:

Advanced Programming in the UNIX Environment (2nd Edition)
SBN-10:  0201433079
ISBN-13: 978-0201433074

HTH

link|improve this answer
I am not looking for a book. I want to look through actual application which are not so complex but contains essential concepts to master – LinuxPenseur Nov 22 '11 at 12:30
Oh ... ok. The book is still good, tho :) – hochl Nov 22 '11 at 12:34
Infact i learned the linux application programming from the same book itself. – LinuxPenseur Nov 22 '11 at 12:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.