操作系统概念中文版课后答案.pptx
《操作系统概念中文版课后答案.pptx》由会员分享,可在线阅读,更多相关《操作系统概念中文版课后答案.pptx(34页珍藏版)》请在咨信网上搜索。
1、Chapter 1n1.What are the three main purposes of an operating system?n环境提供者,为计算机用户提供一个环境,使得能够在计算机硬件上方便、高效的执行程序n资源分配者,为解决问题按需分配计算机的资源,资源分配需尽可能公平、高效n控制程序n监控用户程序的执行,防止出错和对计算机的不正当使用n管理I/O设备的运行和控制1-cont.n2.What is the main advantage of multiprogramming?n高效地使用CPU,通过重叠来自不同用户对CPU和I/O设备的需求n增加CPU的利用,设法让CPU执行有意
2、义的指令1-cont.n3.In a multiprogramming and time-sharing environment,several users share the system simultaneously.This situation can result in various security problems.na.What are two such problems?nb.Can we ensure the same degree of security in a time-shared machine as we have in a dedicated machine?
3、Explain your answer.n用户之间互相偷数据、代码n对系统资源使用的记账信息1-cont.n4.Define the essential properties of the following types of operating systems:na.Batchn相似需求的Job分批、成组的在计算机上执行,Job由操作员或自动Job程序装置装载;n可以通过采用 buffering,off-line operation,spooling,multiprogramming 等技术使CPU 和 I/O不停忙来提高性能n批处理适合于需要极少用户交互的Job。nb.Interactiv
4、en由许多短交易组成,下一次交易的结果可能不可预知n需要响应时间短1-cont.nc.Time sharingn使用CPU调度和多道程序提供对系统的经济交互式使用,CPU快速地在用户之间切换n一般从终端读取控制,输出立即打印到屏幕nd.Real timen在专门系统中使用,从传感器读取信息,必须在规定时间内作出响应以确保正确的执行1-cont.ne.Networkn在通用OS上添加n联网、通信功能n远程过程调用n文件共享nf.Distributedn具有联网、通信功能n提供远程过程调用n提供多处理机的统一调度调度n统一的存储管理n分布式文件系统1-cont.n5.Describe the di
5、fferences between symmetric and asymmetric multiprocessing.What are three advantages and one disadvantage of multiprocessor systems?nSymmetric multiprocessing中所有处理器同等对待,I/O可以在任意CPU上处理。nAsymmetric multiprocessing具有一个主CPU和多个从CPU,主CPU将任务分派到从CPU,I/O通常只能由主CPU处理。n多处理机系统的优点n比多个计算机系统可能更省钱(同样CPU个数)n执行程序更快n可靠
6、性更高n缺点:软硬件更复杂n6.thinking:what kind of features may exist in CC,IOT or CPS?Chapter 2n1.How does the distinction between monitor mode and user mode function as a rudimentary form of protection(security)system?n通过建立一组只能在monitor mode才能执行的特权指令集,OS能够确保总是能控制整个系统。2-cont.n2.What are the differences between a
7、 trap and an interrupt?What is the use of each function?nAn interrupt是硬件产生的系统内的流的改变nA trap是软件产生的“中断”。ninterrupt可以被I/O用来产生完成的信号,从而避免CPU对设备的轮询 nA trap可以用来调用OS的例程或者捕获算术错误 2-cont.n3.Which of the following instructions should be privileged?na.Set value of timer.nb.Read the clock.nc.Clear memory.nd.Turn o
8、ff interrupts.ne.Switch from user to monitor mode.na.Set value of timer.nc.Clear memory.nd.Turn off interrupts.ne.Switch from user to monitor mode.2-cont.n4.Protecting the operating system is crucial to ensuring that the computer system operates correctly.Provision of this protection is the reason b
9、ehind dual-mode operation,memory protection,and the timer.To allow maximum flexibility,however,we would also like to place minimal constraints on the user.The following is a list of operations that are normally protected.What is the minimal set of instructions that must be protected?na.Change to use
10、r mode.nb.Change to monitor mode.nc.Read from monitor memory.nd.Write into monitor memory.ne.Fetch an instruction from monitor memory.nf.Turn on timer interrupt.ng.Turn off timer interrupt.nb.Change to monitor mode.nc.Read from monitor memory.nd.Write into monitor memory.ng.Turn off timer interrupt.
11、Chapter 3n1.What are the five major activities of an operating system in regard to process management?n用户和系统进程地创建和删除n 进程的挂起和恢复n 提供进程同步的机制n 提供进程通信的机制n 提供死锁处理的机制3-cont.n2.What are the three major activities of an operating system in regard to memory management?n跟踪内存使用情况(哪一部分被使用、谁使用)n当内存空间可用的时候,确定将哪些进程
12、调入内存(job调度)n按需要分配和回收内存3-cont.n3.What are the three major activities of an operating system in regard to secondary-storage management?n剩余空间的管理n存储分配n磁盘调度3-cont.n4.What are the five major activities of an operating system in regard to file management?n文件创建和删除n目录创建和删除n目录和文件操作原语的支持n文件到二级存储的映射n将文件备份到非易失存储
13、设备3-cont.n5.What is the purpose of the command interpreter?Why is it usually separate from the kernel?n读取命令(从用户或者命令文件)并执行(转化成系统调用)n可能会经常改变3-cont.n6.What is the purpose of system calls?n让用户级进程可以请求操作系统所提供的服务3-cont.n7.What is the purpose of system programs?n为程序开发和运行提供了方便的环境n给用户提供基本的公共功能函数,为用户在不用自己写代码的情
14、况下解决公用问题n8.试着安装虚拟机试着安装虚拟机VMWARE,然后在这台虚拟机上安,然后在这台虚拟机上安装一个操作系统装一个操作系统n9.阅读阅读Linux源码,给出某一个源码,给出某一个system call的源码并的源码并分析,分析分析,分析init/main.c给出流程图给出流程图Chapter 4n1.Describe the differences among short-term,medium-term,and long-term scheduling.nShort-term,CPU调度nLong-term,job调度nMedium-term,分时系统中的中间调度级4-cont.
15、n2.Describe the actions a kernel takes to context switch between processes.n保存正在运行的进程的状态、恢复欲调度到CPU进程的状态4-cont.n3.What are the benefits and detriments of each of the following?Consider both the systems and the programmers levels.na.Symmetric and asymmetric communicationnb.Automatic and explicit buffe
16、ringnc.Send by copy and send by referencend.Fixed-sized and variable-sized messages4-cont.n4.The correct producerconsumer algorithm in the ppt,allows only n-1 buffers to be full at any one time.Modify the algorithm to allow all buffers to be utilized fully.4-cont.n5.Consider the interprocess-communi
17、cation scheme where mailboxes are used.na.Suppose a process P wants to wait for two messages,one from mailbox A and one from mailbox B.What sequence of send and receive should it execute?nb.What sequence of send and receive should P execute if P wants to wait for one message either from mailbox A or
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 操作系统 概念 中文版 课后 答案
1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前自行私信或留言给上传者【a199****6536】。
5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
6、文档遇到问题,请及时私信或留言给本站上传会员【a199****6536】,需本站解决可联系【 微信客服】、【 QQ客服】,若有其他问题请点击或扫码反馈【 服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【 版权申诉】”(推荐),意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:4008-655-100;投诉/维权电话:4009-655-100。