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

Looking for a good book on the linux kernel internals.

Which book is better: "Linux Device Drivers" or "Linux Kernel." I've heard both are very good.

How do they differ?

Thanks KaL

share|improve this question
Personally I like "Effective Java" best ;-) – Joachim Sauer Feb 8 '11 at 14:56
@Joachim Sauer, "Effective Java" covers "linux kernel internals"? I had no idea, thanks for the input, I just ordered! – mrduclaw Feb 8 '11 at 16:03
@mrduclaw: you'll love it just as much as I do, I'm sure! I was trying to comment on the fact that asking "Which of those two books is better?" rarely has a simple "this one" answer, because they hardly ever cover the exact same content. "Which one is better if I want to know about X" is better, if X is sufficiently specific. – Joachim Sauer Feb 8 '11 at 16:05
@Joahchim Sauer, "Which book is better for covering Linux Kernel Internals" is only a small rewrite, and "Linux Kernel Internals" is sufficiently specific, I think. I'm not sure rephrasing it to fit your pre-formatted form really buys him much when he's all ready asking a pretty specific question. But hey, here's to needless nit-picking on both our parts, eh! – mrduclaw Feb 8 '11 at 17:49

closed as not constructive by John Kraft, brasofilo, Danack, Michael Dorgan, Audrius Meškauskas May 1 at 17:22

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.

4 Answers

up vote 1 down vote accepted

As the title suggests, one is about the whole kernel, the other goes more into details about device drivers.

Both date back a while though, so you might want to check out Jacobo's recommendation too.

share|improve this answer

A third edition of Linux Kernel Development by Robert Love, published by Addison-Wesley came out last year. It might be worth looking at, since the information in it is more up to date than the other books.

share|improve this answer

Linux Kernel, it's points out better the big picture.

share|improve this answer

Linux Device Drivers 3rd ed. is a great book to learn from, but it is now dated. It does teach you much about how the kernel works. If you want to get into driver development, Essential Linux Device Drivers is more current. I like it better as a reference, but it is harder to follow for someone just getting into driver development.

share|improve this answer

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