I want to refresh and deepen my knowledge about systems programming (operating systems, embedded systems, network programming and related low-level topics). I always wanted to buy one of Tanenbaum's books for that purpose and I'm about to do just that, but I can't decide which of his books, many of which apparently cover roughly the same topics, to get. Can you enlighten me? I think the following three are best in my case, but I can't decide which one to get:

  • Modern Operating Systems
  • Operating Systems Design and Implementation
  • Distributed Systems

If you know more than one of these books, I'd be happy to know the difference between them.

I'm also happy about other book recommendations, it doesn't even necessarily have to be from Tanenbaum, but since I've studied CS and worked as a systems programmer some years ago, I want something that goes beyond the basics.

link|improve this question

74% accept rate
You know, it almost seems like you're working for Tanenbaum and you're trying to get endorsements here. – DOK Jun 4 '11 at 12:58
@DOK- highly unlikely methinks! – RichardOD Jun 4 '11 at 13:04
No, I don't. I was assuming that his books are the most notable in that area, feel free to correct me if I'm wrong. – futlib Jun 4 '11 at 13:22
feedback

closed as off topic by Mat, Nick Dandoulakis, pavium, Mike Pennington, Cody Gray Jun 4 '11 at 14:00

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

up vote 1 down vote accepted

- Modern Operating Systems, gives conceptual overview of operating system design and principles.

- Operating Systems Design and Implementation, describes a real UNIX-like operating system he creates: MINIX. The book demonstrates how it works while illustrating the principles behind it.

- Distributed Systems: Principles and Paradigms, shows how distributed systems are designed and implemented, including: communication, replication, fault tolerance, and security.

I suggest "Modern Operating Systems" if you want to know the concept of OS in general, "Operating Systems Design and Implementation" if you want to know the code to build the OS (MINIX).

But, I think all those 3 books are too basic. If you want to study more serious low level topic especially system programming,network programming in Linux, I suggest these books:

link|improve this answer
feedback

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