操作系统的英文版本的第一章.ppt_第1页
操作系统的英文版本的第一章.ppt_第2页
操作系统的英文版本的第一章.ppt_第3页
操作系统的英文版本的第一章.ppt_第4页
操作系统的英文版本的第一章.ppt_第5页
已阅读5页,还剩22页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1 7/10/2019,操作系统课件,教材: 操作系统概念(第六版 影印版) 【原书名】Operating System Concepts(Sixth Edition) 原书信息 【原出版社】John Wiley & Sons,Incl. 【作者】(美)Abraham Silberschatz & Peter Baer Galvin & Greg Gagne 【丛书名】国外优秀信息科学与技术系列教学用书 【出版社】高等教育出版社 【书号】7-04-011048-2 【出版日期】2002-5-1,2 7/10/2019,操作系统概念(第六版 影印版),本书是计算机类专业操作系统课程的一本经典教材,自第一版问世以来,经历了近20年的锤炼,被认为是该课程教材的一本“圣经”。它对操作系统的概念和基本原理给出了清晰的阐述。本书所涉及的基本概念和算法均基于当前商用操作系统,并在非特定操作系统的通用环境中展开讲解 。书中介绍了大量与流行操作系统相关的实现技术,包括Solaris2、Linux、Windows NT、Windows 2000、OS/2和Apple Macintosh操作系统。此版包括了线程、Windows 2000的新章节,并新增了客户/服务器模型和网络文件系统、嵌入式操作系统、实时操作系统、分布式操作系统等。,3 7/10/2019,教材作者的网站,/topic/books/aos-book 网站上的主要内容: 教学参考用PowerPoint Java 程序源代码 教学内容安排的建议 错误订正 有关其他OS 书籍的连接 本课件主要参考:Silberschatz, Galvin and Gagne 2002,4 7/10/2019,教材特点,保持Operating System Concepts,OSC的原特点 讨论在各种操作系统中应用的基础概念 大量在UNIX和其他操作系统中的例子: Solaris,Windows, NT, Linux, OS/2, AppleOS 和Mach 该书可以作为大学本科低年级或高年级操作系统的入门课程, 或用作研究生第一年课程 在Operating System Concepts,OSC第5版基础上,修改而成 OSC是一本被广泛采用的操作系统教科书OSC特点: 最大特点是概念叙述清晰 叙述方式易读、易懂 前5版卖出20万本 随着版本的更新,不断去除旧材料,增加新材料和新例子,5 7/10/2019,Chapter 1: Introduction,What is an Operating System? Mainframe Systems Desktop Systems Multiprocessor Systems Distributed Systems Clustered System Real -Time Systems Handheld Systems Computing Environments,6 7/10/2019,What is an Operating System?,A program that acts as an intermediary between a user of a computer and the computer hardware. Operating system goals: Execute user programs and make solving user problems easier. Make the computer system convenient to use. Use the computer hardware in an efficient manner.,7 7/10/2019,Computer System Components,1. Hardware provides basic computing resources (CPU, memory, I/O devices). 2. Operating system controls and coordinates the use of the hardware among the various application programs for the various users. 3. Applications programs define the ways in which the system resources are used to solve the computing problems of the users (compilers, database systems, video games, business programs). 4. Users (people, machines, other computers).,8 7/10/2019,Abstract View of System Components,9 7/10/2019,Operating System Definitions,Resource allocator manages and allocates resources. Control program controls the execution of user programs and operations of I/O devices . Kernel the one program running at all times (all else being application programs).,10 7/10/2019,Mainframe Systems,Reduce setup time by batching similar jobs Automatic job sequencing automatically transfers control from one job to another. First rudimentary operating system. Resident monitor initial control in monitor control transfers to job when job completes control transfers pack to monitor,11 7/10/2019,Memory Layout for a Simple Batch System,12 7/10/2019,Multiprogrammed Batch Systems,Several jobs are kept in main memory at the same time, and the CPU is multiplexed among them.,13 7/10/2019,OS Features Needed for Multiprogramming,I/O routine supplied by the system. Memory management the system must allocate the memory to several jobs. CPU scheduling the system must choose among several jobs ready to run. Allocation of devices.,14 7/10/2019,Time-Sharing SystemsInteractive Computing,The CPU is multiplexed among several jobs that are kept in memory and on disk (the CPU is allocated to a job only if the job is in memory). A job swapped in and out of memory to the disk. On-line communication between the user and the system is provided; when the operating system finishes the execution of one command, it seeks the next “control statement” from the users keyboard. On-line system must be available for users to access data and code.,15 7/10/2019,Desktop Systems,Personal computers computer system dedicated to a single user. I/O devices keyboards, mice, display screens, small printers. User convenience and responsiveness. Can adopt technology developed for larger operating system often individuals have sole use of computer and do not need advanced CPU utilization of protection features. May run several different types of operating systems (Windows, MacOS, UNIX, Linux),16 7/10/2019,Parallel Systems,Multiprocessor systems with more than on CPU in close communication. Tightly coupled system processors share memory and a clock; communication usually takes place through the shared memory. Advantages of parallel system: Increased throughput Economical Increased reliability graceful degradation fail-soft systems,17 7/10/2019,Parallel Systems (Cont.),Symmetric multiprocessing (SMP) Each processor runs and identical copy of the operating system. Many processes can run at once without performance deterioration. Most modern operating systems support SMP Asymmetric multiprocessing Each processor is assigned a specific task; master processor schedules and allocated work to slave processors. More common in extremely large systems,18 7/10/2019,Symmetric Multiprocessing Architecture,19 7/10/2019,Distributed Systems,Distribute the computation among several physical processors. Loosely coupled system each processor has its own local memory; processors communicate with one another through various communications lines, such as high-speed buses or telephone lines. Advantages of distributed systems. Resources Sharing Computation speed up load sharing Reliability Communications,20 7/10/2019,Distributed Systems (cont),Requires networking infrastructure. Local area networks (LAN) or Wide area networks (WAN) May be either client-server or peer-to-peer systems.,21 7/10/2019,General Structure of Client-Server,22 7/10/2019,Clustered Systems,Clustering allows two or more systems to share storage. Provides high reliability. Asymmetric clustering: one server runs the application while other servers standby. Symmetric clustering: all N hosts are running the application.,23 7/10/2019,Real-Time Systems,Often used as a control device in a dedicated application such as controlling scientific experiments, medical imaging systems, industrial control systems, and some display systems. Well-defined fixed-time constraints. Real-Time systems may be either hard or soft real-time.,24 7/10/2019,Real-Time Systems (Con

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论