vote up 3 vote down star
2

This just occurred to me in answering another question. Can anyone recommend any good, current, systems programming books, for really any variant of UNIX? Such a book would teach file and directory structure, fork/exec, pipes, FIFOS, and semaphores. I'd think (looking back on my similar course) that a reasonable final project would be writing a full shell, and possibly a lightweight HTTP daemon.

The UNIX Programming Environment by Kernighan and PIke comes closest, but is pretty old.

flag

73% accept rate

5 Answers

vote up 10 vote down check

alt text

I used Advanced Programming in the UNIX Environment by Stevens and Rago for my Systems Programming course 2 years ago. It's a stellar book. Very thorough, very clear. It makes a great reference book too, and is definitely the size of one!

link|flag
+1, probably the best book for learning systems programming in UNIX. The second edition is also quite current including Linux 2.4 and Solaris 9. – Robert Gamble Dec 20 '08 at 3:37
Thing thing I love about it too is that it makes it very clear when a particular system call is different in each and specifies how they differ. – Bob Somers Dec 20 '08 at 3:38
Best book up to 2009 on the subject. – ojblass May 3 at 20:05
vote up 1 vote down

Advanced unix programming

link|flag
vote up 4 vote down

You may want to have The Art of Unix Programming for light (?) reading. This book is freely available online.

Linux Device Drivers is probably another good book you may want to take a look if you need to go deep into the kernel.

link|flag
vote up 0 vote down

A great book on systems that covers the above subjects, though not Unix-specific (they try to remain reasonably agnostic), is "Computer Systems: A Programmer's Perspective" by Bryant and O'Hallaron.

Interestingly, the class they teach from this textbook actually involves writing a shell and a caching proxy service, just like you suggested.

link|flag
vote up 0 vote down

I enjoyed the Unix Systems Programming book. It's not an ultimate reference book, but rather teaches the nuances of the POSIX standard for the standard Unixy things and the threading and timers sections are really good.

link|flag

Your Answer

Get an OpenID
or

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