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

This summer I'm getting into UNIX (mostly *BSD) development. I've graduate level knowledge about operating systems. I can also understand the code & read from here and there but the thing is I want to make most of my time. Reading books are best for this.

From my search I found that these two books

  1. "Unix Internals: The New Frontiers" by Uresh Vahalia (1996) (See here for 2nd edition)
  2. The Design and Implementation of the FreeBSD Operating System (Covers 5.2 FreeBSD) (2004)

are like established books on UNIX OS internals. But the thing is these books are pretty much outdated.

So, Is there any recent books that covers internals of recent Unix OS?

How about books on other Unix operating systems? They seem to be recent than above books but how close are they to OpenBSD/FreeBSD?

I really don't prefer HP-UX as its not open source.

share|improve this question
The second book (Design and implementation..) is really nice. If you are interested in learning about Linux then I would strongly recommend book Linux Internals by Robert Love – Chintan Parikh May 11 '10 at 6:36
@themangoman Did you read "Understanding Linux Kernel - Orielly" I heard both this & Robert Love's books are are good but size of Orielly book was more I thought its more explanatory and went for it. – claws May 11 '10 at 11:31

closed as not constructive by Bill the Lizard Apr 30 at 21:42

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 2 down vote accepted

Actually the The Design and Implementation of the FreeBSD Operating System has a new edition from 2004. I'd say it's your best bet.

I'd heartily recommend you to have a look at Advanced Programming in the UNIX(R) Environment (2nd Edition) as well. It's not a kernel level book, but it's targeted mostly at BSD system calls, IPC, etc - a compelling read.

You should also consider Modern Operating Systems from 2007. It's centered around the educational Unix-like Minix OS that served as the inspiration for Linux.

Finally Designing BSD Rootkits: An Introduction to Kernel Hacking comes to mind. Designing BSD Rootkits arms you with the knowledge you need to write offensive rootkits, to defend against malicious ones, and to explore the FreeBSD kernel and operating system in the process.

share|improve this answer

I'd honestly recommend just pulling down a local copy of the tree and reading through that.

The man pages in OpenBSD are also superb, which should provide you with everything you've ever wanted to know about OpenBSD.

If you get stumped for whatever reason, you can reach the community of developers that basically make OpenBSD great by sending your questions to misc@openbsd.org (or tech@openbsd.org if it's a legitimate question about the internals and you haven't already consulted the man pages as well as the internet(and preferably the source code) ).

The community is in fact very glad to help people, provided that they took the time to do their homework before asking stupid questions and wasting everyone's time.

share|improve this answer

Network-stack oriented and for 4.4BSD-Lite, but Richard Steven's TCP Illustrated Volume 2 is also very good. Not sure how relevant it is for current BSDs.

You can also check out the FreeBSD Developers' Handbook

share|improve this answer

This one is pretty recent and close to latest Linux kernels : http://www.amazon.com/Understanding-Linux-Kernel-Third-Daniel/dp/0596005652/ref=sr_1_1?ie=UTF8&s=books&qid=1273219581&sr=8-1, if you are interested in Linux also.

share|improve this answer

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