深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线

深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】电子书下载地址
- 文件名
- [epub 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 epub格式电子书
- [azw3 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 azw3格式电子书
- [pdf 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 pdf格式电子书
- [txt 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 txt格式电子书
- [mobi 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 mobi格式电子书
- [word 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 word格式电子书
- [kindle 下载] 深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】 kindle格式电子书
寄语:
代寻稀缺书老书,有问题可联系在线客服15011482491
内容简介:
为了彻底理解是什么使得Linux能正常运行以及其为何能在各种不同的系统中运行良好,你需要深入研究内核最本质的部分。内核处理CPU与外界间的所有交互,并且决定哪些程序将以什么顺序共享处理器时间。它如此有效地管理有限的内存,以至成百上千的进程能高效地共享系统。它熟练地统筹数据传输,这样CPU不用为等待速度相对较慢的硬盘而消耗比正常耗时更长的时间。
《深入理解Linux内核,第三版》指导你对内核中使用的最重要的数据结构、算法和程序设计诀窍进行一次遍历。通过对表面特性的探究,作者给那些想知道自己机器工作原理的人提供了颇有价值的见解。书中讨论了Intel特有的重要性质。相关的代码片段被逐行剖析。然而,本书涵盖的不仅仅是代码的功能,它解释了Linux以自己的方式工作的理论基础。
本书将使你了解Linux的所有内部工作,它不仅仅是一个理论上的练习。你将学习到哪些情况下Linux性能最佳,并且你将看到,在大量的不同环境里进行进程调度、文件存取和内存管理时,它如何满足提供良好的系统响应的需要。这本书将帮助你充分利用Linux系统。
书籍目录:
Preface
TheAudienceforThisBook
OrganizationoftheMaterial
LevelofDescription
OverviewoftheBook
BackgroundInformation
ConventionsinThisBook
HowtoContactUs
Safari?Enabled
Acknowledgments
Chapter1.Introduction
Section1.1.LinuxVersusOtherUnix-LikeKernels
Section1.2.HardwareDependency
Section1.3.LinuxVersions
Section1.4.BasicOperatingSystemConcepts
Section1.5.AnOverviewoftheUnixFilesystem
Section1.6.AnOverviewofUnixKernels
Chapter2.MemoryAddressing
Section2.1.MemoryAddresses
Section2.2.SegmentationinHardware
Section2.3.SegmentationinLinux
Section2.4.PaginginHardware
Section2.5.PaginginLinux
Chapter3.Processes
Section3.1.Processes,LightweightProcesses,andThreads
Section3.2.ProcessDescriptor
Section3.3.ProcessSwitch
Section3.4.CreatingProcesses
Section3.5.DestroyingProcesses
Chapter4.InterruptsandExceptions
Section4.1.TheRoleofInterruptSignals
Section4.2.InterruptsandExceptions
Section4.3.NestedExecutionofExceptionandInterruptHandlers
Section4.4.InitializingtheInterruptDescriptorTable
Section4.5.ExceptionHandling
Section4.6.InterruptHandling
Section4.7.SoftirqsandTasklets
Section4.8.WorkQueues
Section4.9.ReturningfromInterruptsandExceptions
Chapter5.KernelSynchronization
Section5.1.HowtheKernelServicesRequests
Section5.2.SynchronizationPrimitives
Section5.3.SynchronizingAccessestoKernelDataStructures
Section5.4.ExamplesofRaceConditionPrevention
Chapter6.TimingMeasurements
Section6.1.ClockandTimerCircuits
Section6.2.TheLinuxTimekeepingArchitecture
Section6.3.UpdatingtheTimeandDate
Section6.4.UpdatingSystemStatistics
Section6.5.SoftwareTimersandDelayFunctions
Section6.6.SystemCallsRelatedtoTimingMeasurements
Chapter7.ProcessScheduling
Section7.1.SchedulingPolicy
Section7.2.TheSchedulingAlgorithm
Section7.3.DataStructuresUsedbytheScheduler
Section7.4.FunctionsUsedbytheScheduler
Section7.5.RunqueueBalancinginMultiprocessorSystems
Section7.6.SystemCallsRelatedtoScheduling
Chapter8.MemoryManagement
Section8.1.PageFrameManagement
Section8.2.MemoryAreaManagement
Section8.3.NoncontiguousMemoryAreaManagement
Chapter9.ProcessAddressSpace
Section9.1.TheProcesssAddressSpace
Section9.2.TheMemoryDescriptor
Section9.3.MemoryRegions
Section9.4.PageFaultExceptionHandler
Section9.5.CreatingandDeletingaProcessAddressSpace
Section9.6.ManagingtheHeap
Chapter10.SystemCalls
Section10.1.POSIXAPIsandSystemCalls
Section10.2.SystemCallHandlerandServiceRoutines
Section10.3.EnteringandExitingaSystemCall
Section10.4.ParameterPassing
Section10.5.KernelWrapperRoutines
Chapter11.Signals
Section11.1.TheRoleofSignals
Section11.2.GeneratingaSignal
Section11.3.DeliveringaSignal
Section11.4.SystemCallsRelatedtoSignalHandling
Chapter12.TheVirtualFilesystem
Section12.1.TheRoleoftheVirtualFilesystem(VFS)
Section12.2.VFSDataStructures
Section12.3.FilesystemTypes
Section12.4.FilesystemHandling
Section12.5.PathnameLookup
Section12.6.ImplementationsofVFSSystemCalls
Section12.7.FileLocking
Chapter13.I/OArchitectureandDeviceDrivers
Section13.1.I/OArchitecture
Section13.2.TheDeviceDriverModel
Section13.3.DeviceFiles
Section13.4.DeviceDrivers
Section13.5.CharacterDeviceDrivers
Chapter14.BlockDeviceDrivers
Section14.1.BlockDevicesHandling
Section14.2.TheGenericBlockLayer
Section14.3.TheI/OScheduler
Section14.4.BlockDeviceDrivers
Section14.5.OpeningaBlockDeviceFile
Chapter15.ThePageCache
Section15.1.ThePageCache
Section15.2.StoringBlocksinthePageCache
Section15.3.WritingDirtyPagestoDisk
Section15.4.Thesync(),fsync(),andfdatasync()SystemCalls
Chapter16.AccessingFiles
Section16.1.ReadingandWritingaFile
Section16.2.MemoryMapping
Section16.3.DirectI/OTransfers
Section16.4.AsynchronousI/O
Chapter17.PageFrameReclaiming
Section17.1.ThePageFrameReclaimingAlgorithm
Section17.2.ReverseMapping
Section17.3.ImplementingthePFRA
Section17.4.Swapping
Chapter18.TheExt2andExt3Filesystems
Section18.1.GeneralCharacteristicsofExt2
Section18.2.Ext2DiskDataStructures
Section18.3.Ext2MemoryDataStructures
Section18.4.CreatingtheExt2Filesystem
Section18.5.Ext2Methods
Section18.6.ManagingExt2DiskSpace
Section18.7.TheExt3Filesystem
Chapter19.ProcessCommunication
Section19.1.Pipes
Section19.2.FIFOs
Section19.3.SystemVIPC
Section19.4.POSIXMessageQueues
Chapter20.ProgramExZecution
Section20.1.ExecutableFiles
Section20.2.ExecutableFormats
Section20.3.ExecutionDomains
Section20.4.TheexecFunctions
AppendixA.SystemStartup
SectionA.1.PrehistoricAge:theBIOS
SectionA.2.AncientAge:theBootLoader
SectionA.3.MiddleAges:thesetup()Function
SectionA.4.Renaissance:thestartup_32()Functions
SectionA.5.ModernAge:thestart_kernel()Function
AppendixB.Modules
SectionB.1.ToBe(aModule)orNottoBe?
SectionB.2.ModuleImplementation
SectionB.3.LinkingandUnlinkingModules
SectionB.4.LinkingModulesonDemand
Bibliography
BooksonUnixKernels
BooksontheLinuxKernel
BooksonPCArchitectureandTechnicalManualsonIntelMicroprocessors
OtherOnlineDocumentationSources
ResearchPapersRelatedtoLinuxDevelopment
AbouttheAuthors
Colophon
Index
作者介绍:
暂无相关内容,正在全力查找中
出版社信息:
暂无出版社相关信息,正在全力查找中!
书籍摘录:
暂无相关书籍摘录,正在全力查找中!
在线阅读/听书/购买/PDF下载地址:
原文赏析:
中断(interrupt)通常被定义为一个事件,该事件改变处理器执行的指令顺序。
物理IRQ可以分配给32~238范围内的任何向量。
每个中断向量都有它自己的irq_desc_t描述符。
临界区是一段代码,在其他的内核控制路径能够进入临界区前,进入临界区的的内核控制路径必须全部执行完这段代码。
每个定时器都包含一个字段,表示定时器将需要多长时间到期。每个字段的初值就是jiffies的当前值加上合适的节拍数。
Linux的调度基于分时(time sharing)技术:多个进程以“时间多路复用”方式运行,因为CPU的时间被分成“片(slice)”,给每个可运行进程分配一片。
其它内容:
书籍介绍
为了彻底理解是什么使得Linux能正常运行以及其为何能在各种不同的系统中运行良好,你需要深入研究内核最本质的部分。内核处理CPU与外界间的所有交互,并且决定哪些程序将以什么顺序共享处理器时间。它如此有效地管理有限的内存,以至成百上千的进程能高效地共享系统。它熟练地统筹数据传输,这样CPU不用为等待速度相对较慢的硬盘而消耗比正常耗时更长的时间。
《深入理解Linux内核,第三版》指导你对内核中使用的最重要的数据结构、算法和程序设计诀窍进行一次遍历。通过对表面特性的探究,作者给那些想知道自己机器工作原理的人提供了颇有价值的见解。书中讨论了Intel特有的重要性质。相关的代码片段被逐行剖析。然而,本书涵盖的不仅仅是代码的功能,它解释了Linux以自己的方式工作的理论基础。
本书将使你了解Linux的所有内部工作,它不仅仅是一个理论上的练习。你将学习到哪些情况下Linux性能最佳,并且你将看到,在大量的不同环境里进行进程调度、文件存取和内存管理时,它如何满足提供良好的系统响应的需要。这本书将帮助你充分利用Linux系统。
网站评分
书籍多样性:8分
书籍信息完全性:9分
网站更新速度:3分
使用便利性:5分
书籍清晰度:9分
书籍格式兼容性:7分
是否包含广告:9分
加载速度:7分
安全性:6分
稳定性:5分
搜索功能:3分
下载便捷性:3分
下载点评
- 四星好评(197+)
- 内容齐全(204+)
- 体验还行(398+)
- 好评多(301+)
- 愉快的找书体验(642+)
- 服务好(362+)
- 全格式(485+)
- 实惠(245+)
- 三星好评(301+)
- 赞(376+)
下载评价
- 网友 国***芳:
五星好评
- 网友 通***蕊:
五颗星、五颗星,大赞还觉得不错!~~
- 网友 屠***好:
还行吧。
- 网友 利***巧:
差评。这个是收费的
- 网友 方***旋:
真的很好,里面很多小说都能搜到,但就是收费的太多了
- 网友 堵***洁:
好用,支持
- 网友 寿***芳:
可以在线转化哦
- 网友 温***欣:
可以可以可以
- 网友 冉***兮:
如果满分一百分,我愿意给你99分,剩下一分怕你骄傲
- 网友 步***青:
。。。。。好
- 网友 宫***凡:
一般般,只能说收费的比免费的强不少。
- 网友 曾***文:
五星好评哦
- 网友 冯***丽:
卡的不行啊
喜欢"深入理解LINUX内核Daniel、Marco Cesati东南大学出版社【现货实拍 可开发票 下单速发 正版图书】"的人也看了
华东自助游:江西 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
众人皆吾师 唐世平学术随笔 唐世平【正版书籍】 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
Ireland 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
春天来了 万物复苏 男科医生的14堂身体课 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
正版 几米作品35:森林唱游(平装)几米漫画系列 幾米创作绘本漫画书籍 几米系列绘本漫画书经典故事书 幾米作品集书华文天下 书 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
再生育知识读本 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
破冰:上海土地批租试点亲历者说 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
爷爷的爷爷哪里来 贾兰坡 小学生课外阅读书籍 三四五六年级经典书目世界文学名著青少年儿童故事书6-12岁读物 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
演讲与口才知识大全集 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
抗法名将 冯子材 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 高中英语知识导图 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 金属冶炼安全真题详解与考前模拟:2023版+安全生产技术基础:2022版等 共8册 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 米菲绘本典藏合集全30册 礼盒装1-2-3岁儿童绘本图画书亲子阅读宝宝睡前故事儿童读物早教启蒙益智宝宝学说话幼儿园书籍 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 新编商务日语综合教程 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 国际高中AP化学教程 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 土力学(第2版) 编者:黄志全 黄河水利出版社 【新华书店正版图书书籍】 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 少儿百问百答 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 去过自己喜欢的生活吧 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 高职生职业业生涯规划 李彬,昃道鹏 编 著作 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
- 9787565905988 下载 pdf 百度网盘 epub 免费 2025 电子版 mobi 在线
书籍真实打分
故事情节:7分
人物塑造:3分
主题深度:4分
文字风格:7分
语言运用:6分
文笔流畅:8分
思想传递:9分
知识深度:8分
知识广度:7分
实用性:8分
章节划分:9分
结构布局:3分
新颖与独特:6分
情感共鸣:7分
引人入胜:6分
现实相关:7分
沉浸感:9分
事实准确性:7分
文化贡献:7分