Reddit Reddit reviews Operating System Concepts, Seventh Edition

We found 12 Reddit comments about Operating System Concepts, Seventh Edition. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Operating Systems
Operating System Concepts, Seventh Edition
Check price on Amazon

12 Reddit comments about Operating System Concepts, Seventh Edition:

u/HotRodLincoln · 12 pointsr/AskReddit

The best part is it's from the first (or second) chapter of this textbook which is very, very widely used.

u/qacek · 6 pointsr/programming

Sure beats the hell out of DINOSAURS?!

u/deaddodo · 5 pointsr/osdev

The source in the littleosbook builds on itself each chapter. However, it's important to know that the littleosbook, osdev wiki and most online resources aren't necessarily "tutorials" after the bootloader and bare-bones stages. Any later information is going to be more abstract and guidance. If you need in depth assistance with osdev, you'll want to invest in one (or more) of the following:

u/defected · 5 pointsr/starterpacks

This was my book for a 400-level class. I still own it, but it looks ridiculous.

u/mipadi · 5 pointsr/books

I'm partial to my copy of Operating System Concepts, which features a nice watercolor painting of dinosaurs on the front cover. (Every edition has a dinosaur theme. I'm not sure why. And no, there are no references to dinosaurs in the text.) For a textbook, the cover is beautiful.

u/Secretiveslave · 3 pointsr/sysadmin
u/9us · 1 pointr/java

I learned it from the dinosaur book:

http://amzn.com/1118063333

If you are resourceful you can find this book for free. Or you can get older versions for very cheap (http://amzn.com/0471694665) and the relevant concepts are still pretty much the same.

u/monumentshorts · 1 pointr/compsci

I should mention I never went to lecture and learned everything from "operating systems concepts" 7th edition http://www.amazon.com/gp/aw/d/0471694665/ref=pd_aw_sbs_3?pi=SL500_SY115 and I loved it.

u/Enginerd · 1 pointr/AskReddit

No, that's operating systems.

u/[deleted] · 1 pointr/linuxadmin

Might not be the best approach, but maybe start with an OS internals book . They're always relevant, even when the actual underlying algorithms of an OS change.

See OS Principles by Silberschatz.

I used to read the linux docs and not understand what half the terminology meant until reading an OS book. Although I used this book which is far more rigorous in terms of theory.

u/ElectricRebel · 1 pointr/compsci

I'd say CLRS is the most fundamental, since all CS is built on algorithms.

For architecture/systems people (my area):

Computer Architecture: A Quantitative Approach by Patterson and Hennessy. Their other book Computer Organization and Design is excellent as well (and should be read first).

All books by Andrew Tanenbaum. His distributed systems, OS, and network books are excellent reads.

The Dinosaur book for OSes.

I also really like Smith/Nair for Virtual Machines. It is a new book and is not among the classics yet, but it is great.

For memory, caches, and disks, I recommend Jacob. It is also a newer book, but is essential to understand the Von Neumann bottleneck and possible solutions.

And, of course, the dragon book for getting started compilers. Then Ken Kennedy for advanced compilers.


And as a side note:

For AI, Russell and Norvig is required reading.

For type systems, Pierce is awesome.