vote up 6 vote down star
5

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...

flag
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 at 4:54
2  
Simple scripting yes, programming no. Threads, processes, I/O, filesystems, etc. are clearly programming topics. – David May 8 at 18:51
(P.S. Sure, sysadmins should understand these things, but that's why StackOverflow exists.) – David May 8 at 18:52

7 Answers

vote up 0 vote down check

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.

link|flag
vote up 0 vote down

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

cover

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Understanding the Linux Kernel book

cover image

link|flag
If you have read it, can you elaborate a bit: why do you recommend it? – Jonik May 12 at 10:17
vote up 5 vote down

Although you've specifically asked for an up-to-date book, I think it's worth mentioning Advanced Programming in the UNIX(R) 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.

link|flag
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 at 4:59
vote up 0 vote down

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

link|flag
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 at 9:55
@Jonik: You really should go and read the items in the link before you comment. – Wayne Koorts May 12 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 at 17:55
What I said was that there are some good recommendations in the question, which there are. – Wayne Koorts May 12 at 20:58
vote up 4 vote down

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

link|flag
How up to date is this though? Seems to date back to 2001... link is here to online version: advancedlinuxprogramming.com – Jon May 13 at 17:28

Your Answer

Get an OpenID
or

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