ReadingChair.com - Read regularly updated book reviews and shop for books online.
  
Amazon.com:
Barnes & Noble:
Powell's:
Wal-Mart:

You are on the page: Operating Systems
Books: Text Books: Operating Systems



Textbook of Biochemistry With Clinical Correlations Textbook of Biochemistry With Clinical Correlations
by Thomas M. Devlin
List Price: $115.00
Available from Amazon

$105.54 On 7-21-2006 3.5 out of 5 stars
See Item's Page

Product Review
"a very readable textideal for medicine or clinical biochemistry undergraduate studentshas much to offer to medicinal chemistry students" (Chemistry World, April 2004)

"Outstanding…classicclear illustrations aboundan exceedingly thorough, accurate, and up-to-date volume." (The Quarterly Review of Biology)

"A delightful book to read…I would recommend this book highlyfor any who seek to understand the biochemical basis of disease" (Annals of Clinical Biochemistry)

"…I believe this text fills an important niche, and in that niche it is very well done…a very useful text for those going into medicine.” (Biochemistry and Molecular Education, July-August 2002)

"a comprehensive biochemistry booknew material in key areas justifies the new edition" (Doody's Health, April 19, 2002)

"There are numerous good textbooks available for general biochemistry, but medical, pharmacy, and other health professional students often question the relevance of the extensive coverage given tosimpler organismsDevlin's textbook fills the needs of these students, with its strong emphasis on human biochemistryan excellent choice for a pharmaceutical or medical biochemistry course." (Journal of Medicinal Chemistry, Vol. 45, No. 11)

"This is a welcome and relatively inexpensive volume for students of biochemistry and especially those involved with clinical biochemistry".(Cell Biochemistry & Function, June 2003) --This text refers to the Hardcover edition.

Annals of Clinical Biochemistry
"A delightful book to read. I would recommend this book highlyfor any who seek to understand the biochemical basis of disease" --This text refers to the Hardcover edition.



Project Management: A Systems Approach to Planning, Scheduling, and Controlling Project Management: A Systems Approach to Planning, Scheduling, and Controlling
by Harold Ph.D. Kerzner
List Price: $85.00
Available from Amazon

$78.63 On 7-21-2006 5.0 out of 5 stars
See Item's Page

Book Description
This Ninth Edition of the industry-leading project management “bible” applies its streamlined approach to new, authoritative coverage aligned with the Project management Institute’s Project management Body of Knowledge (PMI’s PMBOK), the new mandatory source of training for the Project management Professional (PMP) Certification Exam. Written by one of the best-known authorities on the subject, this extraordinary edition gives a profound understanding of project management.

About The Author
HAROLD KERZNER, Ph.D., a prominent instructor for the International Institute of Learning (IIL), is currently Professor of Systems management at Baldwin-Wallace College in Ohio and President of Project management Associates, a consulting and training firm that conducts seminars for leading U.S. and international corporations. He is the recipient of a Distinguished Alumni Award from the University of Illinois and has taught engineering at that institution and business administration at Utah State University, where he received the 1998 Distinguished Service Award. The Northeast Ohio Chapter of the Project management Institute has honored Dr. Kerzner by instituting the Kerzner Award for Project management Excellence.


Survival Analysis Using the SAS System: A Practical Guide Survival Analysis Using the SAS System: A Practical Guide
by Paul D. Allison
List Price: $41.95
Available from Amazon

$26.43 On 7-21-2006 5.0 out of 5 stars
See Item's Page

Eric R. Ziegel Technometrics, Book Review Editor
This book is marvelously fluent and presents the features of SAS® survival-analysis material in an enjoyable and readable style.

Jimmy Thomas Efird Roche Global Development
This text is very informative for statisticians and applied researchers. It presents basic survival concepts with useful real-life examples.


Memory as a Programming Concept in C and C++ Memory as a Programming Concept in C and C++
by Frantisek Franek
List Price: $39.99
Available from Amazon

$30.83 On 7-21-2006 5.0 out of 5 stars
See Item's Page

Book Description
Assuming readers have a basic familiarity with C or C++, Frantisek Franek describes the techniques, methods and tools available to develop effective memory usage. The overwhelming majority of "bugs" and crashes in computer programming stem from problems of memory access, allocation, or deallocation. Such memory related errors are notoriously difficult to resolve. Moreover, the role that memory plays in C and C++ programming is a subject often overlooked in courses and in books. Most professional programmers learn about it entirely through actual experience of the problems it causes.


Design of the UNIX Operating System (Prentice Hall Software Series) Design of the UNIX Operating System (Prentice Hall Software Series)
by Maurice J. Bach
Available from Amazon

$73.33 On 7-21-2006 4.5 out of 5 stars
See Item's Page

The publisher, Prentice-Hall ECS Professional
This book describes the internal algorithms and the structures that form the basis of the UNIX ®operating system and their relationship to the programmer interface. The system description is based on UNIX System V Release 2 supported by AT&T, with some features from Release 3.

From the Inside Flap
Preface

The UNIX system was first described in a 1974 paper in the Communications of the ACM Thompson 74 by Ken Thompson and Dennis Ritchie. Since that time, it has become increasingly widespread and popular throughout the computer industry where more and more vendors are offering support for it on their machines. It is especially popular in universities where it is frequently used for operating systems research and case studies.

Many books and papers have described parts of the system, among them, two special issues of the Bell System technical journal in 1978 BSTJ 78 and 1984 BLTJ 84. Many books describe the user level interface, particularly how to use electronic mail, how to prepare documents, or how to use the command interpreter called the shell; some books such as The UNIX programming Environment Kernighan 84 and Advanced UNIX programming Rochkind 85 describe the programming interface. This book describes the internal algorithms and structures that form the basis of the operating system (called the kernel) and their relationship to the programmer interface. It is thus applicable to several environments. First, it can be used as a textbook for an operating systems course at either the advanced undergraduate or first-year graduate level. It is most beneficial to reference the system source code when using the book, but the book can be read independently, too. Second, system programmers can use the book as a reference to gain better understanding of how the kernel works and to compare algorithms used in the UNIX system to algorithms used in other operating systems.

Finally, programmers on UNIX systems can gain a deeper understanding of how their programs interact with the system and thereby code more-efficient, sophisticated programs.

The material and organization for the book grew out of a course that I prepared and taught at AT&T Bell Laboratories during 1983 and 1984. While the course centered on reading the source code for the system, I found that understanding the code was easier once the concepts of the algorithms had been mastered. I have attempted to keep the descriptions of algorithms in this book as simple as possible, reflecting in a small way the simplicity and elegance of the system it describes. Thus, the book is not a line-by-line rendition of the system written in English; it is a description of the general flow of the various algorithms, and most important, a description of how they interact with each other. Algorithms are presented in a C-like pseudo-code to aid the reader in understanding the natural language description, and their names correspond to the procedure names in the kernel. Figures depict the relationship between various data structures as the system manipulates them. In later chapters, small C programs illustrate many system concepts as they manifest themselves to users. In the interests of space and clarity, these examples do not usually check for error conditions, something that should always be done when writing programs. I have run them on System V; except for programs that exercise features specific to System V, they should run on other versions of the system, too.

Many exercises originally prepared for the course have been included at the end of each chapter, and they are a key part of the book. Some exercises are straightforward, designed to illustrate concepts brought out in the text. Others are more difficult, designed to help the reader understand the system at a deeper level. Finally, some are exploratory in nature, designed for investigation as a research problem. Difficult exercises are marked with asterisks.

The system description is based on UNIX System V Release 2 supported by AT&T, with some new features from Release 3. This is the system with which I am most familiar, but I have tried to portray interesting contributions of other variations to the operating system, particularly those of Berkeley software Distribution (BSD). I have avoided issues that assume particular hardware characteristics, trying to cover the kernel-hardware interface in general terms and ignoring particular machine idiosyncrasies. Where machine-specific issues are important to understand implementation of the kernel, however, I delve into the relevant detail. At the very least, examination of these topics will highlight the parts of the operating system that are the most machine dependent.

The reader must have programming experience with a high-level language and, preferably, with an assembly language as a prerequisite for understanding this book. It is recommended that the reader have experience working with the UNIX system and that the reader knows the C language Kernighan 78. However, I have attempted to write this book in such a way that the reader should still be able to absorb the material without such background. The appendix contains a simplified description of the system calls, sufficient to understand the presentation in the book, but not a complete reference manual.

The book is organized as follows. Chapter I is the introduction, giving a brief, general description of system features as perceived by the user and describing the system structure. Chapter 2 describes the general outline of the kernel architecture and presents some basic concepts. The remainder of the book follows the outline presented by the system architecture, describing the various components in a building block fashion. It can be divided into three parts: the file system, process control, and advanced topics. The file system is presented first, because its concepts are easier than those for process control. Thus, Chapter 3 describes the system buffer cache mechanism that is the foundation of the file system. Chapter 4 describes the data structures and algorithms used internally by the file system. These algorithms use the algorithms explained in Chapter 3 and take care of the internal bookkeeping needed for managing user files. Chapter 5 describes the system calls that provide the user interface to the file system; they use the algorithms in Chapter 4 to access user files.

Chapter 6 turns to the control of processes. It defines the context of a process and investigates the internal kernel primitives that manipulate the process context. In particular, it considers the system call interface, interrupt handling, and the context switch. Chapter 7 presents the system calls that control the process context. Chapter 8 deals with process scheduling, and Chapter 9 covers memory management, including swapping and paging systems.

Chapter 10 outlines general driver interfaces, with specific discussion of disk drivers and terminal drivers. Although devices are logically part of the file system, their discussion is deferred until here because of issues in process control that arise in terminal drivers. This chapter also acts as a bridge to the more advanced topics presented in the rest of the book. Chapter 11 covers interprocess communication and networking, including System V messages, shared memory and semaphores, and BSD sockets. Chapter 12 explains tightly coupled multiprocessor UNIX systems, and Chapter 13 investigates loosely coupled distributed systems.

The material in the first nine chapters could be covered in a one-semester course on operating systems, and the material in the remaining chapters could be covered in advanced seminars with various projects being done in parallel.

A few caveats must be made at this time. No attempt has been made to describe system performance in absolute terms, nor is there any attempt to suggest configuration parameters for a system installation. Such data is likely to vary according to machine type, hardware configuration, system version and implementation, and application mix. Similarly, I have made a conscious effort to avoid predicting future development of UNIX operating system features Discussion of advanced topics does not imply a commitment by AT&T to provide particular features, nor should it even imply that particular areas are under investigation.

It is my pleasure to acknowledge the assistance of many friends and colleagues who encouraged me while I wrote this book and provided constructive criticism of the manuscript. My deepest appreciation goes to Ian Johnstone who suggested that I write this book, gave me early encouragement, and Reviewed the earliest draft of the first chapters. Ian taught me many tricks of the trade, and I will always be indebted to him. Doris Ryan also had a hand in encouraging me from the very beginning, and I will always appreciate her kindness and thoughtfulness. Dennis Ritchie freely answered numerous questions on the historical and technical background of the system. Many people gave freely of their time and energy to Review drafts of the manuscript, and this book owes a lot to their detailed comments. They are Debby Bach, Doug Bayer, Lenny Brandwein, Steve Buroff, Tom Butler, Ron Gomes, Mesut Gunduc, Laura Israel, Dean Jagels, Keith Kelleman, Brian Kernighan, Bob Martin, Bob Mitze, Dave Nowitz, Michael Poppers, Marilyn Safran, Curt Schimmel, Zvi Spitz, Tom Vaden, Bill Weber, Larry Wehr, and Bob Zarrow. Mary Frubstuck provided help in preparing the manuscript for typesetting. I would like to thank my management for their continued support throughout this project and my colleagues, for providing such a stimulating atmosphere and wonderful work environment at AT&T Bell Laboratories. John Wait and the staff at Prentice-Hall provided much valuable assistance and advice to get the book into its final form. Last, but not least, my wife, Debby, gave me lots of emotional support, without which I could never have succeeded.



Mike Meyers' A+ Guide to Operating Systems Mike Meyers' A+ Guide to Operating Systems
by Michael Meyers
Available from Amazon

$60.00 On 7-21-2006 2.0 out of 5 stars
See Item's Page

Book Description
Mike Meyers, one of the premier computer and network skills trainers, delivers a learning system designed to explain key IT principles in an easy-to-understand format. This terrific guide will not only help prepare you to pass the exam, but also to help you become a good PC technician. Meyers covers topics beyond the exam, and essential for students to know, from existing to emerging technologies.

Back Cover Copy

Essential Skills for On-the-Job Success

Mike Meyers, one of the premier computer and network skills trainers, has developed a learning system designed to teach A+ PC technician skills in an easy-to-understand way that will prepare you for an IT career. Mike gives you helpful tips throughout the book, end-of-chapter practice questions, and hundreds of photographs and illustrations. Completely up to date for the new CompTIA A+ standards, this comprehensive guide will help you pass the A+ Operating System Technologies exam and become an expert PC technician.

Inside this book, you will learn how to:

  • Identify PC components
  • Manage files, directories, and disks
  • Work from the command line in DOS
  • Install, configure, and upgrade Windows 9x/ME, Windows NT 4.0 Workstation, Windows 2000 Professional, and Windows XP
  • Interpret common error codes from the boot sequence
  • Load and configure application device drivers
  • Connect to client-side networks
  • Set up a system for Internet access

The CD-ROM features:

  • Three full practice exams with hundreds of questions for the Operating System Technologies requirement. Available in Practice or Final Mode.
  • Useful tools and utilities for PC technicians
  • One hour of LearnKey video training featuring Mike Meyers teaching key A+ topics (online registration required)

Each chapter includes

  • Learning Objectives
  • Many Figures and Illustrations
  • Real-World Examples
  • Try This! and Cross Check Exercises
  • Tech Tip Sidebars
  • Helpful Notes and Warnings
  • End-of-Chapter Quizzes and Lab Projects
Part II of Mike Meyers’ A+ Certification Guide


New Trading Systems and Methods (Wiley Trading) New Trading Systems and Methods (Wiley Trading)
by Perry J. Kaufman
List Price: $125.00
Available from Amazon

$78.75 On 7-21-2006 3.5 out of 5 stars
See Item's Page

Product Review
". . . the best book on technical trading strategies and techniques currently available. . . A must read." (The technical Analyst, March/April 2006)

" it's packed with a ton of useful information on programs, spreadsheets, algorithms and other tools. It even comes with a CD-ROM that's pulsing with more hot, sexy info covering just about every trading trick under the sun." (Trader Monthly magazine, June/July 2005)

"At $125, the book is not cheap, but no trader should be without it." (Managed Account Reports (MAR), April 2005)

Book Description
Get the bestselling guide to trading systems, now updated for the 21st century.

For more than two decades, futures traders have turned to the classic Trading Systems and Methods for complete information about the latest, most successful indicators, programs, algorithms, and systems. Perry Kaufman, a leading futures expert highly respected for his years of experience in research and trading, has thoroughly updated this bestselling guide, adding more systems, more methods, and extensive risk analysis to keep this the most comprehensive and instructional book on trading systems today. His detailed, hands-on manual offers a complete analysis, using a systematic approach with in-depth explanations of each technique. This edition also includes a CD-ROM that contains the TradeStation EasyLanguage program, Excel spreadsheets, and Fortran programs that appear in the book.



Operating System Concepts Operating System Concepts
by Abraham Silberschatz, Peter Baer Galvin, and Greg Gagne
Available from Amazon

$97.95 On 7-21-2006 4.0 out of 5 stars
See Item's Page

Book Description
Another defining moment in the evolution of operating systems
Small footprint operating systems, such as those driving the handheld devices that the baby dinosaurs are using on the cover, are just one of the cutting-edge applications you'll find in Silberschatz, Galvin, and Gagne's Operating System Concepts, Seventh Edition.
By staying current, remaining relevant, and adapting to emerging course needs, this market-leading text has continued to define the operating systems course. This Seventh Edition not only presents the latest and most relevant systems, it also digs deeper to uncover those fundamental concepts that have remained constant throughout the evolution of today's operation systems. With this strong conceptual foundation in place, students can more easily understand the details related to specific systems.
New Adaptations
* Increased coverage of user perspective in Chapter 1.
* Increased coverage of OS design throughout.
* A new chapter on real-time and embedded systems (Chapter 19).
* A new chapter on multimedia (Chapter 20).
* Additional coverage of security and protection.
* Additional coverage of distributed programming.
* New exercises at the end of each chapter.
* New programming exercises and projects at the end of each chapter.
* New student-focused pedagogy and a new two-color design to enhance the learning process.

Back Cover Copy
Another defining moment in the evolution of operating systems

Small footprint operating systems, such as those driving the handheld devices that the baby dinosaurs are using on the cover, are just one of the cutting-edge applications you’ll find in Silberschatz, Galvin, and Gagne’s Operating System Concepts, Seventh Edition. 

By staying current, remaining relevant, and adapting to emerging course needs, this market-leading text has continued to define the operating systems course. This Seventh Edition not only presents the latest and most relevant systems, it also digs deeper to uncover those fundamental concepts that have remained constant throughout the evolution of today’s operation systems. With this strong conceptual foundation in place, students can more easily understand the details related to specific systems.


New Adaptations

  • Increased coverage of user perspective in Chapter 1.
  • Increased coverage of OS design throughout.
  • A new chapter on real-time and embedded systems (Chapter 19).
  • A new chapter on multimedia (Chapter 20).
  • Additional coverage of security and protection.
  • Additional coverage of distributed programming.
  • New exercises at the end of each chapter.
  • New programming exercises and projects at the end of each chapter.
  • New student-focused pedagogy and a new two-color design to enhance the learning process.


Additional Pages:  1   2   3    


© Adapt, Inc. 1998-2006








Other Shops:
American States, Atlases, Art, Art Techniques, Audio Books, Authors, Biographies, Business, Celebrities, Children's, Cities, Computers, Cookbooks, Countries, Dictionaries, En Español, Encyclopedias, History, Horror, Large Print, Law, Medical, Mystery, Photographers, Photography Techniques, Powell's Selections, Presidents, Research, Romance, Sci-Fi, Study Guides, Subjects, Techical, Teenagers, Textbooks, Travel

Books
Resources
Most Watched Book Auctions
Operating Systems at Sduf
Book Review Directory
Reviewed Authors
Reviewed Titles
Review List
Site Map