Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a good book on Linux system programming and wondered whether anybody could recommend an up-to-date appropriate book that covers the subject well. Things like:

  • I/O and fileystems
  • Thread and processes
  • etc...

Can anybody suggest an appropriate book that they've read/used, not just something that they've seen on Amazon : ) many thanks...

share|improve this question
Arguably scripting and understanding the operating system are part of a system administrators role to some degree, so I disagree. Please reverse the negative vote, don't be petty. – Jon May 8 '09 at 4:54
2  
Simple scripting yes, programming no. Threads, processes, I/O, filesystems, etc. are clearly programming topics. – David Zaslavsky May 8 '09 at 18:51
(P.S. Sure, sysadmins should understand these things, but that's why StackOverflow exists.) – David Zaslavsky May 8 '09 at 18:52
hint from someone who has done a fair amount of systems programming: The Linux Programming Interface is the right answer. Steven's book is a "classic," but isn't nearly as relevant to the modern programmer. – catphive Apr 14 '11 at 0:22

closed as not constructive by Kev Sep 18 '11 at 13:47

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

Although you've specifically asked for an up-to-date book, I think it's worth mentioning Advanced Programming in the UNIX® Environment (2nd Edition). It was released in 2005, and is an update of the classic first edition (released in 1992) by the late W. Richard Stevens. I'm familiar with the first edition, but haven't seen the second one.

The first edition became a classic because it provided thorough yet clear descriptions of its topics, with copious code examples which were available for download. The second edition is updated to include Linux, FreeBSD and Mac OS X, and by all reports (e.g. reviews on Amazon) is just as good a book as the first edition.

share|improve this answer
Familiar with this one, I believe it was the reference book in my university course on unix systems programming, alas I never bought it, but thanks for the reminder, it's a classic alright : ) – Jon May 8 '09 at 4:59
Source Code here: kohala.com/start/apue.html – user295190 Apr 5 '10 at 1:03

The Linux Programming Interface:

enter image description here

This is one of the most comprehensive you'll find. The author may not be a huge name in the Open Source world, but you've almost certainly already been reading his stuff. He's been the maintainer of the Linux man pages since 2004. A review from LWN can be read here.

share|improve this answer

Advanced Linux Programming is freely available and is an excellent book on Linux system programming.

share|improve this answer
3  
How up to date is this though? Seems to date back to 2001... link is here to online version: advancedlinuxprogramming.com – Jon May 13 '09 at 17:28

Linux Kernel Development by Robert Love. Gives you in-depth UNDERSTANDING of how Linux works. However, you will not find few-pages code samples in there. I read this book being almost a Linux newbie and afterwards was able to write kernel modules.

share|improve this answer
up vote 1 down vote accepted

So after doing all the research into the books presented here, Beginning Linux Programming by Neil Matthew and Richard Stones was the book I chose in the end.

It was up to date (published in 2007), covered all the topics I wanted it to (including Threads, I/O, IPC etc...) as well as GUI programming with Gnome/KDE.

Having read the first three chapters, it's a good introductory text to system programming in general and covers some of the more advanced topics.

share|improve this answer

Linux Application Development is a good book to start with covering the basics on *nix development.

cover

share|improve this answer

Understanding the Linux Kernel book

cover image

share|improve this answer
If you have read it, can you elaborate a bit: why do you recommend it? – Jonik May 12 '09 at 10:17

There are some good recommendations in this StackOverflow question of the same subject:

http://stackoverflow.com/questions/381557/how-do-i-get-started-programming-in-linux

share|improve this answer
That question deals with using Linux as a programming environment in general, perhaps with languages such as Java, Python, or Perl, while this one is specifically about Linux system programming. – Jonik May 12 '09 at 9:55
@Jonik: You really should go and read the items in the link before you comment. – Wayne Koorts May 12 '09 at 17:38
I did. Some of the recommendations may be relevant here too (and indeed some are already mentioned); many are not. Anyway, that /question/ isn't really of the same subject, as you suggested. – Jonik May 12 '09 at 17:55
What I said was that there are some good recommendations in the question, which there are. – Wayne Koorts May 12 '09 at 20:58

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