Microsoft PowerPoint - 01_ADVDBG_RAYMOND_NT.ppt

Size: px
Start display at page:

Download "Microsoft PowerPoint - 01_ADVDBG_RAYMOND_NT.ppt"

Transcription

1 Windows 高级调试 Windows 系统概览 张银奎 (Raymond Zhang) 软件社会 (1/2) User Mode Kernel Mode 2 Copyright (C) 2007 ADVDBG.ORG All rights reserved 1

2 软件社会 (2/2) Operating System (OS) Application Process Application Process Application Process Application Process Service Process Service Process Sub-System Process System Process 3 CPU 的保护模式 X86 CPU 有多种工作模式 实模式 又称实地址模式, 段地址 + 偏移 = 物理地址 保护模式 现代 CPU 的 native 模式, 多任务和虚拟地址支持 系统管理模式 系统固件 (firmware,( BIOS) ) 执行电源管理 安全检查 或平台相关的特定任务 保护模式 Protected Mode 谁被保护? 每个进程有自己的地址空间, 并受到保护 保护多任务环境中的各个任务的安全 在同一进程空间中, 高特权级的代码受到保护 4 Copyright (C) 2007 ADVDBG.ORG All rights reserved 2

3 保护规则 保护模式下, 程序工作的基本准则 用户程序不可以执行特权指令 用户程序不可以直接访问 I/O 端口和硬件寄存器 高特权级的代码可以执行和访问低特权级的代码和数据 低特权级的代码不可以直接执行和访问高特权级的代码和数据 计算机系统中的根本大法, 如果应用程序违反 (violation),, 杀掉! 0xC STATUS_ACCESS_VIOLATION 故意与非故意 5 模块及其工作模式 角色内核执行体硬件抽象层内核态驱动程序系统进程子系统进程用户态驱动程序 Shell 系统服务程序应用程序 实体 NTOSKRNL.EXE NTOSKRNL.EXE HAL.DLL PCI.SYS, WIN32K.SYS, SMSS, WinLogon, Lsass, CSRSS, PSXSS, OS2SS WINSPOOL.DRV, UMDF, Explorer.exe Svchost.exe, Notepad.exe, 模式内核内核内核内核用户用户用户用户用户用户 6 Copyright (C) 2007 ADVDBG.ORG All rights reserved 3

4 特权 DPL Descriptor Privilege Level U/S User/Supervisor 正在执行的代码所在代码段的特权级别就是该代码的特权级别 当一段代码调用位于其它段的函数或访问其它段的数据时,CPU, 会检查发起访问者是否有足够的权限 如果没有通过检查, 则产生异常 7 地址空间 0xFFFFFFFF 0x x7FFFFFFF 0x GB 2GB 对于 32 位系统,CPU, 可直接寻址 2 32 =4GB 空间, 这也是每个进程的地址空间大小 高 2GB 供内核模块使用, 称为内核空间 低 2GB 供用户态模块使用, 称为用户空间 使用 /3GB 开关启动, 可以将用户空间增大到 3GB 8 Copyright (C) 2007 ADVDBG.ORG All rights reserved 4

5 共享内核空间 进程 1 的用户空间 进程 2 的用户空间 内核空间 进程 3 的用户空间 进程 4 的用户空间 进程 n 的用户空间 0xFFFFFFFF 0x x7FFFFFFF 0x 每个 Win32 进程有 4GB 空间, 但用户态代码只能访问 2GB 用户空间 所有进程共享内核空间 9 调用内核服务 从用户态切换到内核态 IA32 CPU 设计了专用的指令 ( 从奔腾 II 开始 ) SYSENTER SYSEXIT 此前使用 INT 2E MSR 寄存器名称 SYSENTER_CS_MSR SYSENTER_ESP_MSR SYSENTER_EIP_MSR 用途 目标代码段的 CS 选择子 目标 ESP 目标 EIP 只能从固定的入口 (gate) 进入内核 10 Copyright (C) 2007 ADVDBG.ORG All rights reserved 5

6 保护模式下的内存地址 逻辑地址 段选择子 偏移 线性地址 由段的基地址加上偏移得到 物理地址 段选择子 偏移 GDT 或 LDT 11 线性地址 从线性地址到物理地址 线性地址 Dir Table Offset 0 页表,1024 个表项 (PTE) CR3 页目录,1024 个表项 (PDE) 上面是以 4KB 内存页 ( 未启用 PAE) 为例 1024PDE*1024PTE=2 20 页 12 Copyright (C) 2007 ADVDBG.ORG All rights reserved 6

7 CR3 寄存器 IA32 CPU 用来记录当前页目录表的物理基地址的寄存器, 简称 PDBR (Page Directory Base Register) 每个进程的最重要属性之一 切换任务时, 系统会将前一个任务的 CR3 作为上下文信息 (context( context) ) 的一部分保存起来 在开始执行新任务前, 系统会恢复寄存器状态, 包括 CR3, EFLAGS, EIP, 等 切换 CR3 寄存器意味着切换地址空间 不同进程拥有不同的地址空间 (CR3( 内容 ) ) 隔离与保护 lkd>!process 0 0 **** NT ACTIVE PROCESS DUMP **** PROCESS 89e32830 SessionId: none Cid: 0004 Peb: ParentCid: 0000 DirBase: 006f1000 ObjectTable: e1000c98 HandleCount: 463. Image: System 13 会话 (Session) 内核和执行体 内核和执行体系统服务特权高 会话管理器 Lsass WinLogon 特权高 特权低 每个会话有自己的桌面 输入设备和显示输出 14 Sub-System Process 应用程序 应用程序Sub-System Process 应用程序 应用程序 Copyright (C) 2007 ADVDBG.ORG All rights reserved 7

8 NT 内核一览 NT 3.1 NT 3.5 NT 3.51 NT 4.0 NT 5.0 NT 5.1 NT 5.2 NT 5.2 NT 5.2 NT 6.0 Windows NT 3.1 Windows NT 3.5 Windows NT 3.51 Windows NT 4.0 Windows 2000 Windows XP Server 2003 Windows XP SP2 Windows XP x64x Windows Vista NT OS Daytona Cairo, SUR Whistler Whistler Srvr Springboard Longhorn 15 线程与进程 线程 CPU 的调度单位 任务 任务状态段 (Task State Segment) 进程 线程的住所 OS 组织和管理程序的重要单位 16 Copyright (C) 2007 ADVDBG.ORG All rights reserved 8

9 进程的数据结构 EPROCESS lkd>!process 0 0 lkd>!process 4 lkd> dt nt!_eprocess PEB!peb 7ffdf000 dt nt!_peb 17 线程的数据结构 KTHREAD dt nt!_kthread TEB lkd> dt nt!_teb +0x034 LastErrorValue : Uint4B 0:001> uf kernel32!getlasterror kernel32!getlasterror: 7c a mov eax,dword ptr fs:[ h] 7c83932b 8b4034 mov eax,dword ptr [eax+34h] 7c83932e c3 ret 18 Copyright (C) 2007 ADVDBG.ORG All rights reserved 9

10 线程内访问进程结构 0:001> uf kernel32!isdebuggerpresent kernel32!isdebuggerpresent: mov eax,fs:[ ] ; 取得当前线程的线程环境块结构 TEB mov eax,[eax+0x30] ; 从 TEB 中取出 PEB 指针 movzx eax,byte ptr [eax+0x2] ; 取 PEB 中的 BeingDebugged 字段 ret 19 内核世界 Security Mgr Local Procedure Call Configuration Mgr (Registry) File Cache Mgr Process&Thread Mgr Object Mgr Memory Mgr 20 Copyright (C) 2007 ADVDBG.ORG All rights reserved 10

11 模块组织 NTOS (kernel-mode services) NTOSKRNL.EXE Scheduling, aka Kernel Run-time Library, Executive services, object manager, services for I/O, memory, processes, Hal (hardware-adaptation adaptation layer) 为 NTOS 及驱动程序隔离硬件差异性 X hal!* Drivers 扩展内核的功能, 管理设备 21 Kernel 内核的内核,OS, 的底层 处理器相关 (x86 vs. Alpha vs. etc.) 线程等待等待 调度以及上下文切换 (context switching) 异常和中断分发 OS synchronization primitives (different for MP vs. UP) Not a classic microkernel 与其它内核部件共享地址空间 X nt!ke* 22 Copyright (C) 2007 ADVDBG.ORG All rights reserved 11

12 HAL.DLL Hardware Abstraction Layer 安装盘中 (driver.cab ) 准备了多个文件, 安装程序根据硬件配置选择合适的复制到 <WinRoot>\System32 目录下 Hal.dll Halacpi.dll Advanced Configuration and Power Interface Halapic.dll Advanced Programmable Interrupt Controller Halaacpi.dll ACPI APIC Halmps.dll 多 CPU Halmacpi.dll 多 CPU + ACPI 23 NTOSKRNL.EXE Windows 内核和执行体的 PE(Portable Portable Executable) 映像文件, 位于 <WinROOT>\System32\ 内容 内核 执行体 以 DLL 方式输出函数给 HAL 和其它内核模块 内核服务的实现 系统初始化和启动 分两个阶段初始化 OS 内核 I/O 管理器启动 boot 类型的驱动, 然后启动 system_start 类型的驱动程序 创建 SMSS.EXE 进程 24 Copyright (C) 2007 ADVDBG.ORG All rights reserved 12

13 NTOSKRNL.EXE 安装程序根据硬件配置将不同版本的文件复制到目标目录下, 并将其改为统一的名字 察看使用的原始文件 <WinROOT>\Repair\Setup.log 文件版本属性 Original File Name 安装后的文件名 单 CPU 原始文件 多 CPU 原始文件 未启用 PAE NTOSKRNL.EXE NTOSKRNL.EXE NTKRNLMP.EXE 启用 PAE NTKRNLPA.EXE NTKRNLPA.EXE NTKRPAMP.EXE 25 NTOS Kernel 内核的内核,OS, 的底层 处理器相关 (x86 vs. Alpha vs. etc.) 线程等待等待 调度以及上下文切换 (context switching) 异常和中断分发 OS synchronization primitives (different for MP vs. UP) Not a classic microkernel 与其它内核部件共享地址空间 X nt!ke* 26 Copyright (C) 2007 ADVDBG.ORG All rights reserved 13

14 Depends 27 Windows 环境子系统 一个内核, 多个子系统 OS/2,POSIX POSIX,Windows Windows 子系统具有特殊的地位, 必不可少的子系统 用户态进程,CSRSS.EXE, Client/Server Runtime Server Subsystem WINSRV.DLL,, 控制台窗口,HardError, CSRSRV.DLL,, 进程 线程维护, 调试 BASESRV.DLL,, 安全, 登陆 内核模块,Win32K.sys, GDI,, 窗口绘制 USER,, 用户输入 28 Copyright (C) 2007 ADVDBG.ORG All rights reserved 14

15 用户世界 系统支持进程 环境子系统服务进程 系统支持进程 服务管理器 服务 应用程序 Session Manager (SMSS.EXE) Windows Subsystem (CSRSS.EXE) OS/2 Subsystem (OS2SS.EXE) POSIX Subsystem (PSXSS.EXE) Logon Process (WinLogon.EXE) Local Security Authentication Server (LSASS.EXE) Service Control Manager (SERVICES.EXE) SvcHost.exe MDM.exe SpoolSv.exe ctfmon.exe MMC.exe Shell Application (Explorer.exe) Windows Subsystem DLL (KERNEL32.DLL, USER32.DLL, ADVAPI32.DLL, GDI32.DLL) NTDLL.DLL 用户空间系统空间 29 总结 User Mode Kernel Mode 30 Copyright (C) 2007 ADVDBG.ORG All rights reserved 15

16 更多信息 Windows Internals 深入研究 Windows 内部原理系列 08/ html Vista 内核情景分析 31 问与答 Copyright (C) 2007 ADVDBG.ORG All rights reserved 16

提纲. 1 实验准备. 2 从实模式进入保护模式. 3 小结 陈香兰 ( 中国科学技术大学计算机学院 ) 软件综合实验之操作系统 July 1, / 11

提纲. 1 实验准备. 2 从实模式进入保护模式. 3 小结 陈香兰 ( 中国科学技术大学计算机学院 ) 软件综合实验之操作系统 July 1, / 11 .. 软件综合实验之操作系统 进入保护模式 陈香兰 中国科学技术大学计算机学院 July 1, 2016 陈香兰 ( 中国科学技术大学计算机学院 ) 软件综合实验之操作系统 July 1, 2016 1 / 11 提纲. 1 实验准备. 2 从实模式进入保护模式. 3 小结 陈香兰 ( 中国科学技术大学计算机学院 ) 软件综合实验之操作系统 July 1, 2016 2 / 11 实验准备 实验环境准备

More information

ebook 132-2

ebook 132-2 2 SQL Server 7.0 SQL Server SQL Server 7 SQL Server 7 5 2.1 SQL Server 7 SQL Server 7 SQL Server SQL Server SQL Server 2.1.1 SQL Server Windows NT/2000 Windows 95/98 ( r a n d o m access memory R A M )

More information

win2k Win2K win2k

win2k Win2K win2k Win2K win2k Win2K win2k win2k win2k Windows windows NT Windows NT Windows NT Windows NT Windows NT windows TCSEC D C1 C2 B1 B2 B3 A MS-DOS NT C2 AT T SYSTEM V UNIX with MLS IBM MVS/ESA Trusted XENIX and

More information

投影片 1

投影片 1 9 1 9-1 Windows XP Windows Server 2003 Mac OS Linux, 都 (OS, Operating System ) 2 3 , 來, 行 3 理 行 4 ,, (UI, User Interface), 滑, 令 列 (CLI, Command-Line Interface) (GUI, Graphical User Interface) 2 5 令 列,

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

Page 1 of 21 中 文 简 体 中 文 繁 体 邮 箱 搜 索 本 网 站 搜 索 搜 索 网 站 首 页 今 日 中 国 中 国 概 况 法 律 法 规 公 文 公 报 政 务 互 动 政 府 建 设 工 作 动 态 人 事 任 免 新 闻 发 布 当 前 位 置 : 首 页 >> 公 文 公 报 >> 国 务 院 文 件 >> 国 务 院 文 件 中 央 政 府 门 户 网 站 www.gov.cn

More information

提纲 1 2 OS Examples for 3

提纲 1 2 OS Examples for 3 第 4 章 Threads2( 线程 2) 中国科学技术大学计算机学院 October 28, 2009 提纲 1 2 OS Examples for 3 Outline 1 2 OS Examples for 3 Windows XP Threads I An Windows XP application runs as a seperate process, and each process may

More information

ebook 132-6

ebook 132-6 6 SQL Server Windows NT Windows 2000 6.1 Enterprise Manager SQL Server Enterprise Manager( ) (Microsoft Management C o n s o l e M M C ) Enterprise Manager SQL Server Enterprise Manager 6.1.1 Enterprise

More information

普 通 高 等 教 育 十 二 五 重 点 规 划 教 材 计 算 机 系 列 中 国 科 学 院 教 材 建 设 专 家 委 员 会 十 二 五 规 划 教 材 操 作 系 统 戴 仕 明 姚 昌 顺 主 编 姜 华 张 希 伟 副 主 编 郑 尚 志 梁 宝 华 参 编 参 编 周 进 钱 进

普 通 高 等 教 育 十 二 五 重 点 规 划 教 材 计 算 机 系 列 中 国 科 学 院 教 材 建 设 专 家 委 员 会 十 二 五 规 划 教 材 操 作 系 统 戴 仕 明 姚 昌 顺 主 编 姜 华 张 希 伟 副 主 编 郑 尚 志 梁 宝 华 参 编 参 编 周 进 钱 进 科 学 出 版 社 普 通 高 等 教 育 十 二 五 重 点 规 划 教 材 计 算 机 系 列 中 国 科 学 院 教 材 建 设 专 家 委 员 会 十 二 五 规 划 教 材 操 作 系 统 戴 仕 明 姚 昌 顺 主 编 姜 华 张 希 伟 副 主 编 郑 尚 志 梁 宝 华 参 编 参 编 周 进 钱 进 参 编 北 京 内 容 简 介 本 书 由 浅 入 深 系 统 全 面 地 介 绍

More information

¬¬

¬¬ 2 年 第 9 周 2.2.2-2.2.27 26 年 第 7 周 : 受 春 节 影 响, 一 二 级 市 场 无 供 应 成 交 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 供 应 26 年 第 7 周 (26 年 2 月 8 日 26 年 2 月 4 日 ) 哈 尔 滨 市 无 土 地 成 交 26 年 第 7 周 (26 年 2

More information

( 数 据 来 源 :2011 年 剑 桥 大 学 ) 上 面 这 两 张 图 片 来 自 剑 桥 大 学 2011 年 提 供 的 一 个 分 析 报 告, 通 过 这 个 报 告 我 们 可 以 看 出, 只 要 通 过 网 络 搜 索 引 擎 (Shodan 搜 索 引 擎 ) 进 行 简 单

( 数 据 来 源 :2011 年 剑 桥 大 学 ) 上 面 这 两 张 图 片 来 自 剑 桥 大 学 2011 年 提 供 的 一 个 分 析 报 告, 通 过 这 个 报 告 我 们 可 以 看 出, 只 要 通 过 网 络 搜 索 引 擎 (Shodan 搜 索 引 擎 ) 进 行 简 单 智 能 制 造 与 工 业 4.0 时 代 的 信 息 安 全 菲 尼 克 斯 电 气 mguard 为 控 制 系 统 保 驾 护 航 随 着 智 能 制 造 与 工 业 4.0 战 略 的 提 出, 工 业 生 产 的 数 字 化 成 为 一 种 不 可 阻 挡 的 未 来 趋 势, 高 度 融 合 IT 技 术 的 工 业 自 动 化 将 会 得 到 迅 速 而 广 泛 的 应 用, 对 于

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

A Preliminary Implementation of Linux Kernel Virus and Process Hiding 邵 俊 儒 翁 健 吉 妍 年 月 日 学 号 学 号 学 号 摘 要 结 合 课 堂 知 识 我 们 设 计 了 一 个 内 核 病 毒 该 病 毒 同 时 具 有 木 马 的 自 动 性 的 隐 蔽 性 和 蠕 虫 的 感 染 能 力 该 病 毒 获 得 权 限 后 会 自 动 将 自 身 加 入 内 核 模 块 中 劫 持 的 系 统 调 用 并 通 过 简 单 的 方 法 实 现 自 身 的

More information

indows CE 1996 Semiconductor Industry Association (SIA) Windows CE Windows Embedded CE 6.0 Windows CE Windows Embedded CE 6.0 Micr

indows CE 1996 Semiconductor Industry Association (SIA) Windows CE Windows Embedded CE 6.0 Windows CE Windows Embedded CE 6.0 Micr Windows Embedded CE 6.0 Windows Embedded CE 6.0 : Windows Embedded CE 6.0 : Windows CE Windows Embedded CE 6.0 API CE 6.0 Windows CE W indows CE 1996 Semiconductor Industry Association (SIA) 1994 1000

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National

More information

All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library Board, Singapore All Rights Reserved, National Library

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

作 業 系 統 簡 介 光 有 電 腦 硬 體, 會 不 容 易 使 用 必 須 要 有 適 當 的 程 式, 才 方 便 操 作 硬 體 衍 生 作 業 系 統 需 求 : 提 供 方 便 使 用 者 執 行 程 式 平 台 有 效 使 用 各 種 電 腦 硬 體 資 源 Jingo C. Lia

作 業 系 統 簡 介 光 有 電 腦 硬 體, 會 不 容 易 使 用 必 須 要 有 適 當 的 程 式, 才 方 便 操 作 硬 體 衍 生 作 業 系 統 需 求 : 提 供 方 便 使 用 者 執 行 程 式 平 台 有 效 使 用 各 種 電 腦 硬 體 資 源 Jingo C. Lia 第 三 章 作 業 系 統 概 論 Reporter : Jingo C. Liao 廖 正 宏 E-mail : jingo@mail.tku.edu.tw 章 節 列 表 1. 什 麼 是 作 業 系 統 2. 作 業 系 統 的 主 要 功 能 3. 作 業 系 統 的 核 心 程 式 4. 作 業 系 統 的 演 進 歷 史 5. 常 見 流 行 的 作 業 系 統 Jingo C. Liao

More information

最新执法工作手册(二百六十七)

最新执法工作手册(二百六十七) ................................. I .................... II ( ) 1997 1 14 3 ( ) () () () () () () 3 3 ( ) () () () () 7 30 1 3 1000 5000 () () () 1 5 1000 5000 () () () ()30 () ()

More information

CPU : i3 RAM: 2G Win2000 Windows XP Windows Vista Windows 7 Cable ADSL 1. [ ] 2., 1. 2. KGI [ ] 3. 4. 5. 6. 7. / /KGI /, 1. (1) / (2) - Proxy, Proxy IP Port (3) - a. / / b. (4) - (5) / / / / / (6) -,,

More information

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 容 分 发 网 络 Alibaba Cloud Content Delivery Network 一

More information

Windows Server 2003及Active Directory的除錯及災難回復 (M050103403)

Windows Server 2003及Active Directory的除錯及災難回復 (M050103403) 4 Active Directory 2005 01 易 度 易 1. Windows Server 2003 2. Windows XP 3. Windows Media Service 劉 路 M050103403 2005/01/21 不 狀 不 更 不 不 CPU 不 不 不 不 狀 了 更 DC( ) DC 更 來 DC 不 不 Active Directory 不 來 Active Directory

More information

研究生平台使用指导书.doc

研究生平台使用指导书.doc 目 录 前 言...1 第 一 部 山 东 大 学 研 究 生 英 语 自 主 学 习 平 台...2 1 平 台 简 介...2 2 新 生 须 知...2 2.1 山 东 大 学 非 英 语 专 业 攻 读 硕 士 学 位 研 究 生 英 语 教 学 实 施 意 见 ( 试 行 )...2 2.2 山 东 大 学 非 英 语 专 业 研 究 生 英 语 教 学 大 纲 ( 试 行 )...7 3

More information

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1

Cadence SPB 15.2 VOICE Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 Cadence SPB 15.2 VOICE 2005-05-07 Cadence SPB 15.2 PC Cadence 3 (1) CD1 1of 2 (2) CD2 2of 2 (3) CD3 Concept HDL 1of 1 1 1.1 Cadence SPB 15.2 2 Microsoft 1.1.1 Windows 2000 1.1.2 Windows XP Pro Windows

More information

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 1...3 2...20 3...28 4...41 5 Windows SQL Server...47 Microsoft SQL Server 2005 DBSRV1 Microsoft SQL Server

More information

A01 流 行 服 飾 科 壹 術 科 測 驗 考 題 說 明 一 施 測 題 目 : 寵 物 服 飾 貼 圖 創 作 二 施 測 程 序 : ( 一 ) 主 辦 學 校 統 一 說 明 考 試 內 容 和 方 式 ( 二 ) 主 辦 學 校 提 供 寵 物 圖 形 紙 予 考 生 ( 三 ) 由

A01 流 行 服 飾 科 壹 術 科 測 驗 考 題 說 明 一 施 測 題 目 : 寵 物 服 飾 貼 圖 創 作 二 施 測 程 序 : ( 一 ) 主 辦 學 校 統 一 說 明 考 試 內 容 和 方 式 ( 二 ) 主 辦 學 校 提 供 寵 物 圖 形 紙 予 考 生 ( 三 ) 由 新 北 市 105 學 年 度 高 級 中 等 學 校 專 業 群 科 特 色 招 生 甄 選 入 學 術 科 測 驗 考 題 範 例 目 次 A01 流 行 服 飾 科 60 A02 美 容 科 64 A03 幼 兒 保 育 科 67 A04 時 尚 造 型 科 71 A05 餐 飲 管 理 科 75 A06 應 用 外 語 科 ( 英 文 組 ) 80 A07 美 術 工 藝 科 85 A08

More information

ebook66-15

ebook66-15 1 5 Wi n d o w s 3 17 18 15.1 Vi r t u a l A l l o c p v A d d r e s s M U L L Vi r t u a l A l l o c M E M _ TO P _ D O W N 50 MB 52 428 800 5 0 1 024 1 024 p v A d d r e s s Vi r t u a l A l l o c N

More information

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se

1 SQL Server 2005 SQL Server Microsoft Windows Server 2003NTFS NTFS SQL Server 2000 Randy Dyess DBA SQL Server SQL Server DBA SQL Server SQL Se 1 SQL Server 2005 DBA Microsoft SQL Server SQL ServerSQL Server SQL Server SQL Server SQL Server SQL Server 2005 SQL Server 2005 SQL Server 2005 o o o SQL Server 2005 1 SQL Server 2005... 3 2 SQL Server

More information

Cisco WebEx Meetings Server 2.6 版常见问题解答

Cisco WebEx Meetings Server 2.6 版常见问题解答 Cisco WebEx Meetings Server 2.6 版 常 见 问 题 解 答 介 绍 2 应 用 程 序 和 文 档 共 享 2 主 持 加 入 和 设 置 会 议 2 在 Chrome 和 Firefox 上 加 入 WebEx 会 议 或 播 放 会 议 录 制 文 件 4 适 用 于 移 动 设 备 的 Cisco WebEx 4 下 载 Cisco WebEx 应 用 程 序

More information

浙江大学本科论文模板

浙江大学本科论文模板 本 科 生 毕 业 设 计 报 告 项 目 名 称 微 型 操 作 系 统 的 设 计 与 实 现 姓 名 与 学 号 曲 国 铖 3063027053 指 导 老 师 王 新 宇 专 业 计 算 机 科 学 与 技 术 学 院 计 算 机 学 院 A Dissertation Submitted to Zhejiang University for the Degree of Bachelor of

More information

06721 main() lock pick proc() restart() [2][4] MINIX minix2.0 GDT, IDT irq table[] CPU CPU CPU CPU (IDTR) idt[] CPU _hwint00:! Interrupt

06721 main() lock pick proc() restart() [2][4] MINIX minix2.0 GDT, IDT irq table[] CPU CPU CPU CPU (IDTR) idt[] CPU _hwint00:! Interrupt MINIX ( 730000) ( 730000) MINIX MINIX2.0 MINIX : MINIX TP3 1 MINIX UNIX Tanenbaum UNIX MINIX LINUX MINIX MINIX MINIX1.0 UNIX V7 MINIX2.0[3] POSIX MINIX3 MINIX Gabriel A. Wainer 1994-1995 [5] 1998 I/O 2002

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

KillTest 质量更高 服务更好 学习资料 半年免费更新服务

KillTest 质量更高 服务更好 学习资料   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 070-647 Title : Windows Server 2008,Enterprise Administrator Version : Demo 1 / 13 1. Active directory Windows Server 2008 (WAN) WAN WAN A.

More information

哈尔滨应用职业技术学院2012年教育教学质量报告

哈尔滨应用职业技术学院2012年教育教学质量报告 哈 尔 滨 应 用 职 业 技 术 学 院 高 等 职 业 教 育 质 量 年 度 报 告 (2015) 哈 尔 滨 应 用 职 业 技 术 学 院 2015 年 1 月 目 录 一 学 院 简 介... 1 二 办 学 条 件... 1 1. 办 学 资 源... 1 2. 办 学 经 费... 2 3. 师 资 队 伍... 3 三 学 院 教 学... 3 1. 专 业 建 设... 3 2.

More information

Microsoft Word - 100118002.htm

Microsoft Word - 100118002.htm 100 年 度 11800 電 腦 軟 體 應 用 乙 級 技 術 士 技 能 檢 定 學 科 測 試 試 題 本 試 卷 有 選 擇 題 80 題, 每 題 1.25 分, 皆 為 單 選 選 擇 題, 測 試 時 間 為 100 分 鐘, 請 在 答 案 卡 上 作 答, 答 錯 不 倒 扣 ; 未 作 答 者, 不 予 計 分 准 考 證 號 碼 : 姓 名 : 選 擇 題 : 1. (3)

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

经华名家讲堂

经华名家讲堂 5.1 5.1.1 5.1.2 5.2 5.2.1 5.2.2 5.2.3 5.2.4 5.2.5 5.3 5.3.1 5.3.2 5.3.3 / 5.3.4 / 5.3.5 / 5.4 Internet 5.4.1 Internet 5.4.2 Intranet 1. 2. 1 31 5 5.1 5.1.1 Internet 1 Host 20 60 IBM 2000 2 20 60 20 60

More information

3. 企 业 债 券 : 公 司 债 券 : 5. 证 券 公 司 债 券 : 6. 企 业 短 期 融 资 券 : 7. 中 期 票 据 : 8. 资 产 支 持 证 券 : 9. 国 际 开 发 机 构 人 民 币 债 券 : 10. 中 小 非 金 融 企 业 集 合 票 据 例 题? 判 断

3. 企 业 债 券 : 公 司 债 券 : 5. 证 券 公 司 债 券 : 6. 企 业 短 期 融 资 券 : 7. 中 期 票 据 : 8. 资 产 支 持 证 券 : 9. 国 际 开 发 机 构 人 民 币 债 券 : 10. 中 小 非 金 融 企 业 集 合 票 据 例 题? 判 断 第 1 节 投 资 银 行 业 务 概 述 1. 投 资 银 行 的 含 义 [ 熟 悉 ]: 等 第 1 章 证 劵 经 营 机 构 的 投 资 银 行 业 务 (1) 狭 义 的 就 是 指 某 些 资 本 市 场 活 动, 着 重 指 一 级 市 场 上 的 承 销 并 购 和 融 资 活 动 的 财 务 顾 问 (2) 广 义 的 包 括 公 司 融 资 并 购 顾 问 股 票 和 债 券

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

【结构化面试名师精品班2ATY15K002】讲义.docx

【结构化面试名师精品班2ATY15K002】讲义.docx 李 曼 卿 带 大 家 学 面 试 李 曼 卿 } 我 们 党 历 来 高 度 重 视 选 贤 任 能, 始 终 把 选 人 用 人 作 为 关 系 党 和 人 民 事 业 的 关 键 性 根 本 性 问 题 来 抓 好 干 部 要 做 到 信 念 坚 定 为 民 服 务 勤 政 务 实 敢 于 担 当 清 正 廉 洁 2013 年 6 月 28 日, 全 国 组 织 工 作 会 议 第 0 页 目

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

http://learning.sohu.com/s2007/07gkzw/ Page 1 of 13 搜 狐 首 页 - 新 闻 - 体 育 - 娱 乐 圈 - 财 经 - IT - 汽 车 - 房 产 - 女 人 - 短 信 - ChinaRen - 邮 件 - 博 客 - BBS - 搜 狗 各 媒 院 地 体 校 关 动 注 态 招 志 07 分 办 愿 数 主 模 线 任 拟 估 填 访

More information

0404.doc

0404.doc 20-4-2004 2 2004-CE 2 0 0 4 1. 40% 30% 2. 3. 4. All Rights Reserved 2004 2004-CE-HIST 1-1 3 1. A A 1862 1871 1848 1849 (a) A (1 ) (b) A A (4 ) (c) A A (5 ) 2004-CE-HIST 1-2 -1-4 2. B B 1902 (a) B B (1+1

More information

Microsoft Word - Web Dynpro For ABAP跟踪测试工具简介 _2_.doc

Microsoft Word - Web Dynpro For ABAP跟踪测试工具简介 _2_.doc Web Dynpro For ABAP 跟 踪 测 试 工 具 简 介 概 述 从 传 统 ABAP UI 开 发 ( 如 Dynpro,ABAP List 等 等 ) 直 接 转 到 Web Dynpro For ABAP 开 发 来, 我 们 可 能 会 发 现 那 些 传 统 的 跟 踪 测 试 工 具 ( 如 SAT, 也 许 SAAB 还 是 一 个 简 单 易 用 的 合 适 的 工 具

More information

口 行 政 管 理 部 门 进 行 安 全 条 件 审 查 未 经 安 全 条 件 审 查 通 过, 港 口 建 设 项 目 不 得 开 工 建 设 第 六 条 交 通 运 输 部 指 导 监 督 全 国 港 口 建 设 项 目 安 全 条 件 审 查 工 作 国 务 院 国 家 发 展 改 革 委

口 行 政 管 理 部 门 进 行 安 全 条 件 审 查 未 经 安 全 条 件 审 查 通 过, 港 口 建 设 项 目 不 得 开 工 建 设 第 六 条 交 通 运 输 部 指 导 监 督 全 国 港 口 建 设 项 目 安 全 条 件 审 查 工 作 国 务 院 国 家 发 展 改 革 委 港 口 危 险 货 物 安 全 管 理 规 定 (2012 年 12 月 11 日 交 通 运 输 部 令 第 9 号 公 布 自 2013 年 2 月 1 日 起 施 行 ) 第 一 章 总 则 第 一 条 为 加 强 港 口 危 险 货 物 管 理, 预 防 和 减 少 危 险 货 物 事 故, 保 障 人 民 生 命 财 产 安 全, 保 护 环 境, 根 据 中 华 人 民 共 和 国 港

More information

V A. 1 Hyper-V R2 V C. A. Hyper-V B. Microsoft SCOM 20 V C. MAP D. Microsoft SCVMM 2008 V B. V D. 2. IT IT 2

V A. 1 Hyper-V R2 V C. A. Hyper-V B. Microsoft SCOM 20 V C. MAP D. Microsoft SCVMM 2008 V B. V D. 2. IT IT 2 indows Server 2008 R2 08 01 1. V A. 1 Hyper-V R2 V C. A. Hyper-V B. Microsoft SCOM 20 V C. MAP D. Microsoft SCVMM 2008 V B. V D. 2. IT IT 2 08 Windows Server 2008 R2 Hyper-V R2 1. A. V B. V C. V D. 2.

More information

产 品 & 服 务 公 司 简 介 我 们 一 直 追 求 将 最 有 价 值 的 产 品 和 最 有 效 的 技 术 支 持 进 行 完 美 结 合, 我 们 也 将 秉 持 这 一 理 念, 凭 借 专 业 的 咨 询 和 OEM 服 务, 为 我 们 的 客 户 提 供 市 场 领 先 的 计

产 品 & 服 务 公 司 简 介 我 们 一 直 追 求 将 最 有 价 值 的 产 品 和 最 有 效 的 技 术 支 持 进 行 完 美 结 合, 我 们 也 将 秉 持 这 一 理 念, 凭 借 专 业 的 咨 询 和 OEM 服 务, 为 我 们 的 客 户 提 供 市 场 领 先 的 计 A Global Company 凌 华 科 技 世 界 级 嵌 入 式 计 算 技 术 领 导 厂 商, 在 x86 计 算 加 固 设 计 高 可 靠 性 以 及 工 业 I/O 的 整 合 领 域 具 有 世 界 领 先 的 地 位 凌 华 科 技 专 注 在 测 量 测 试 工 业 自 动 化 军 工 及 航 空 航 天 网 络 和 通 信 交 通 医 疗 以 及 游 戏 设 备 等 领 域

More information

User Guide

User Guide HP Classroom Manager 软 件 使 用 手 册 Copyright 2012 Hewlett-Packard Development Company,L.P. 本 手 册 中 所 含 信 息 如 有 更 改 恕 不 另 行 通 知 本 手 册 含 有 受 版 权 保 护 的 专 有 信 息 在 没 有 获 得 Hewlett-Packard 公 司 书 面 许 可 的 情 况 下,

More information

優質居所 攜手共建

優質居所 攜手共建 2000 Housing Authority. All rights reserved. 2000 Housing Authority. All rights reserved. 2000 Housing Authority. All rights reserved. 2000 Housing Authority. All rights reserved. 2000 Housing Authority.

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device) 的 Intel C++ Software Development Tool Suite for Linux* OS, 目 标 读 者 主 要 是 技 术 决 策 制 订

简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device) 的 Intel C++ Software Development Tool Suite for Linux* OS, 目 标 读 者 主 要 是 技 术 决 策 制 订 白 皮 书 Robert Müller-Albrecht 开 发 人 员 产 品 部 门 支 持 移 动 互 联 网 设 备 的 Intel C++ Software Development Tool Suite for Linux* OS 文 档 编 号 :319332-001US 简 介 本 白 皮 书 高 度 概 述 了 支 持 移 动 互 联 网 设 备 (Mobile Internet Device)

More information

宁夏专业技术人员服务平台

宁夏专业技术人员服务平台 宁 夏 专 业 技 术 人 员 服 务 平 台 职 称 申 报 系 统 版 本 号 :1.0 ( 版 本 处 于 变 动 中, 请 您 随 时 下 载 新 版 ) 使 用 说 明 书 2014 年 3 月 4 日 目 录 一 使 用 要 求... 1 二 进 入 系 统... 2 三 用 户 注 册... 4 四 完 善 个 人 基 本 信 息... 6 五 职 称 申 报... 8 六 打 印 确

More information

产品手册

产品手册 Norton 360TM 产 品 手 册 关 爱 环 境, 我 们 应 尽 的 责 任 Symantec 已 移 除 本 手 册 的 封 面, 以 降 低 对 环 境 的 影 响 Norton 360 产 品 手 册 本 手 册 介 绍 的 软 件 基 于 授 权 许 可 协 议 提 供, 且 只 能 在 遵 守 协 议 条 款 的 前 提 下 使 用 文 档 版 本 21.0 Copyright

More information

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP

Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS RAID (4) SATA (5) SATA (a) S A T A ( S A T A R A I D ) (b) (c) Windows XP Serial ATA ( Sil3132)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 6 (4) S A T A... 10 (5) S A T A... 12 Ác Åé å Serial ATA ( Sil3132) S A T A (1) SATA (2) BIOS SATA (3)* RAID BIOS

More information

<BBB6D3ADB7C3CECABFC6D1A7CEC4BBAFC6C0C2DB>

<BBB6D3ADB7C3CECABFC6D1A7CEC4BBAFC6C0C2DB> 1 of 5 7/18/2010 2:35 PM 联 系 管 理 员 收 藏 本 站 中 国 科 学 院 自 然 科 学 史 研 究 所 首 页 期 刊 介 绍 创 刊 寄 语 编 委 成 员 往 期 下 载 论 坛 网 络 资 源 12th ICHSC [ 高 级 ] 现 在 位 置 : 首 页 > 期 刊 文 章 小 中 大 打 印 关 闭 窗 口 PDF 版 查 看 桃 李 不 言, 下 自

More information

T1028_Manual_KO_V3 0.pdf

T1028_Manual_KO_V3 0.pdf 2009 : 2009/09 PC Microsoft, MS-DOS, Windows, Windows Sound System Microsoft Corporation Intel, Atom Intel Corporation Sound Blaster, Sound Blaster ProCreative Technology I AC AC AC AC AC - 115 V/60 Hz

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

福 建 顶 点 软 件 股 份 有 限 公 司 首 次 公 开 发 行 股 票 招 股 说 明 书 发 行 股 票 类 型 人 民 币 普 通 股 (A 股 ) 本 次 拟 发 行 股 数 每 股 面 值 每 股 发 行 价 预 计 发 行 日 期 预 计 上 市 的 证 券 交 易 所 发 行 后

福 建 顶 点 软 件 股 份 有 限 公 司 首 次 公 开 发 行 股 票 招 股 说 明 书 发 行 股 票 类 型 人 民 币 普 通 股 (A 股 ) 本 次 拟 发 行 股 数 每 股 面 值 每 股 发 行 价 预 计 发 行 日 期 预 计 上 市 的 证 券 交 易 所 发 行 后 福 建 顶 点 软 件 股 份 有 限 公 司 ( 福 州 市 台 江 区 新 港 街 道 五 一 中 路 169 号 利 嘉 城 二 期 16 号 楼 24 层 07 室 ) 首 次 公 开 发 行 股 票 招 股 说 明 书 ( 申 报 稿 ) 保 荐 人 ( 主 承 销 商 ) ( 上 海 市 中 山 南 路 318 号 东 方 国 际 金 融 广 场 24 层 ) 福 建 顶 点 软 件 股

More information

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12

6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-1 6-2 6-3 6-4 6-5 6-6 6-7 6-8 6-9 Process Data flow Data store External entity 6-10 Context diagram Level 0 diagram Level 1 diagram Level 2 diagram 6-11 6-12 6-13 6-14 6-15 6-16 6-17 6-18 6-19 6-20 6-21

More information

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

1 Windows Windows Vista Windows Server 2008 ImageX Windows Windows Deployment Services virtual machines Windows activation infrastructure o Win

1 Windows Windows Vista Windows Server 2008 ImageX Windows Windows Deployment Services virtual machines Windows activation infrastructure o Win 1 Windows Windows VistaWindows Server 2008 ImageXWindowsWindows Deployment Servicesvirtual machineswindows activation infrastructure 70-643 o WindowsWindows Deployment Services images o Microsoft Windows

More information

ebook 185-6

ebook 185-6 6 Red Hat Linux DB2 Universal Database 6.1 D B 2 Red Hat D B 2 Control Center D B 2 D B 2 D B 2 6.1 DB2 Universal Database [DB2]6.1 D B 2 O LT P O L A P D B 2 I B M P C We e k D B 2 D B 2 L i n u x Windows

More information

untitled

untitled 1 2.35cm 1.8 Fn Fn+F1 Fn+F2 Fn+F3 () Fn+F4 Fn+F5 / () Fn+ Fn+ Fn+ Fn+ º 18 ACPI APM ACPI Intel Microsoft Toshiba Windows 98 ACPI Standby CPU Windows 98 Hibernation Sleep Manager None

More information

untitled

untitled MeetingPlaza Version6.1 License Package NTT IT 2012 11 20 I 1... 4 1-1 Web...4 1-2 MeetingPlaza...4 1-3...4 1-4...5 2... 6 2-1...6 2-2...7 3... 9 3-1...10 3-2...13 3-3...16 3-3-1... 17 3-3-2... 18 3-3-3...

More information

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co

BYOD IP+Optical (IP NGN) API 4. End-to-End (Service Aware) 5. IP NGN (IP Next Generation Network) ( ) Prime Carrier Management Access Edge Co BYOD 228 2015 IT open source DIY ( ) Up/Down HP NNMi WhatsUp Gold Nagios HP SiteScope WhatsUp Gold HP NNMi WhatsUp Gold Cacti MRTG HP ispi Performance for Metrics WhatsUp Gold ( ) Open source Agent End-to-End

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEB2E2CAD4D1A7CFB0D7CAC1CF2E707074205BBCE6C8DDC4A3CABD5D>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEB2E2CAD4D1A7CFB0D7CAC1CF2E707074205BBCE6C8DDC4A3CABD5D> 软 件 测 试 学 习 资 料 2014 对 软 件 产 品 ( 不 限 程 序 安 装 包 手 机 应 用 包 游 戏 网 站 等 ) 进 行 的 功 能 性 能 安 全 代 码 级 测 试 检 查, 以 便 发 现 各 种 类 型 的 错 误 找 出 跟 用 户 需 求 体 验 不 一 致 的 问 题 软 件 测 试 的 目 的 : 给 用 户 提 供 一 个 高 质 量 的 软 件 产 品,

More information

国家军用标准

国家军用标准 ICS 35.040 L 80 中 华 人 民 共 和 国 国 家 标 准 GB/T 20272 2006 信 息 安 全 技 术 操 作 系 统 安 全 技 术 要 求 Information security technology- Security techniques requirement for operating system 2006-05-31 发 布 2006-12-01 实 施

More information

Windows-10-volume-licensing-guide-tw.pdf

Windows-10-volume-licensing-guide-tw.pdf Windows 10 2015 9 2 Windows 10 Windows 10 Microsoft Windows PC Windows 10 Windows 10 Microsoft Desktop Optimization Pack Windows Windows Windows 10 Windows 10 Windows 10 Windows Microsoft Windows 10 *

More information

NEXT SDT2.51 C:\ARM251 SDT2.51 ARM SDT 2.51 ARM PROJECT MANAGER SDT 2

NEXT SDT2.51 C:\ARM251 SDT2.51 ARM SDT 2.51 ARM PROJECT MANAGER SDT 2 S3C44B0 SDT DRAGNBOY MICROSTAR ARM 51 ARM S3C44B0 ARM SDT2.51 IAR ADS SDT2.51 S3C44B0 LEDTEST SDT ARM 1 2 SDT embed.8800.org SDT2.51 SDT2.51 ARM ARM CPU ARM SDT ADS ADS MULTI-ICE SDT JTAG JTAG SDT SDT2.51

More information

SiteView技术白皮书

SiteView技术白皮书 SiteView ECC V6.2 技 术 白 皮 书 游 龙 网 络 科 技 ( 中 国 ) 有 限 公 司 DragonFlow Networks(China),Inc. 目 录 第 一 章 产 品 概 述... 3 第 二 章 系 统 结 构... 6 一 系 统 架 构... 7 1 用 户 管 理 模 块... 7 2 Web Server... 8 3 存 储 加 密 模 块... 8

More information

_PhotoDirectorUG.book

_PhotoDirectorUG.book 讯 连 科 技 PhotoDirector 3 用 户 手 册 版 权 和 免 责 声 明 版 权 所 有 未 经 讯 连 科 技 书 面 同 意, 本 着 作 物 之 任 何 部 分 均 不 得 转 载 复 制 保 存 或 传 送 依 据 相 关 法 令 之 规 定, PhotoDirector 以 仅 此 状 态 的 基 础 提 供, 不 附 有 任 何 形 式 的 ( 无 论 是 明 示 的

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

摘 要 本 文 档 介 绍 如 何 解 决 OPC 通 讯 中 的 DCOM 的 问 题 关 键 词 OPC DCOM Key Words OPC DCOM IA&DT Service & Support Page 2-12

摘 要 本 文 档 介 绍 如 何 解 决 OPC 通 讯 中 的 DCOM 的 问 题 关 键 词 OPC DCOM Key Words OPC DCOM IA&DT Service & Support Page 2-12 OPC DCOM 问 题 处 理 Troubleshooting DCOM 文 档 类 型 (User Guide) Edition (2008 年 12 月 ) https://support.industry.siemens.com/cs/cn/zh/view/109481341 摘 要 本 文 档 介 绍 如 何 解 决 OPC 通 讯 中 的 DCOM 的 问 题 关 键 词 OPC DCOM

More information

产品手册

产品手册 产 品 手 册 Norton 360 产 品 手 册 本 手 册 介 绍 的 软 件 基 于 授 权 许 可 协 议 提 供, 且 只 能 在 遵 守 协 议 条 款 的 前 提 下 使 用 文 档 版 本 22.5 Copyright 2015 Symantec Corporation. 2015 年 Symantec Corporation 版 权 所 有 All rights reserved.

More information

目 录 Leica ICC50 HD 引 言 9 基 本 特 点 10 基 本 特 点 ( 续 ) 11 Leica ICC50 HD: 概 述 12 拆 箱 14 准 备 开 始! 使 用 之 前 的 准 备 工 作 16 开 始 设 置! 使 用 计 算 机 进 行 连 接 和 成 像 操 作

目 录 Leica ICC50 HD 引 言 9 基 本 特 点 10 基 本 特 点 ( 续 ) 11 Leica ICC50 HD: 概 述 12 拆 箱 14 准 备 开 始! 使 用 之 前 的 准 备 工 作 16 开 始 设 置! 使 用 计 算 机 进 行 连 接 和 成 像 操 作 Leica ICC50 HD 手 册 目 录 Leica ICC50 HD 引 言 9 基 本 特 点 10 基 本 特 点 ( 续 ) 11 Leica ICC50 HD: 概 述 12 拆 箱 14 准 备 开 始! 使 用 之 前 的 准 备 工 作 16 开 始 设 置! 使 用 计 算 机 进 行 连 接 和 成 像 操 作 19 PC 模 式 下 的 限 制 20 在 PC 模 式 下

More information

untitled

untitled () () 1 1.01 1.02 1.03 01-02- 03-04- 05-06- 07-08- 09-1.04? 01-02- 2.01 2.02 01-02- 09-2.03 01-02- 03-09- 2.04 1 2.05 1 2.06 01-02- 03-04- 09-2.07 01-02- 03-04- 09-2.08 01-02- 03-04- 05-06- 07-08- 09-2.09

More information

Desktop Management Guide

Desktop Management Guide Ĵ* 商 用 台 式 机 文 档 部 件 号 312947-AA1 2003 詤 3 本 指 南 介 绍 了 预 装 在 某 些 机 型 上 的 安 全 保 护 功 能 和 智 能 管 理 功 能 的 定 义 及 使 用 说 明 2002 Hewlett-Packard Company 2002 Hewlett-Packard Development Company, L.P. HP Hewlett

More information

1 CPU interrupt INT trap CPU exception

1 CPU interrupt INT trap CPU exception 1 CPU interrupt INT trap CPU exception 2 X86 CPU gate 64 16 1 2 5 8 16 16 P DPL 00101 TSS 101 DPL P 1 64 16 1 2 1 1 3 3 5 16 16 16 P DPL 0 D 000 16 110 111 100 D 1=32 0=16 DPL P 1 INT DPL1>=CPL>=DPL CPU

More information

ClientHelpSymantec™ Endpoint Protection 及 Symantec Network Access Control 客户端指南

ClientHelpSymantec™ Endpoint Protection 及 Symantec Network Access Control 客户端指南 Symantec Endpoint Protection 及 Symantec Network Access Control 客 户 端 指 南 Symantec Endpoint Protection 及 Symantec Network Access Control 客 户 端 指 南 本 手 册 介 绍 的 软 件 基 于 授 权 许 可 协 议 提 供, 且 只 能 在 遵 守 协 议 条

More information

封面及首頁.doc

封面及首頁.doc Terms of Use The copyright of this thesis is owned by its author. Any reproduction, adaptation, distribution or dissemination of this thesis without express authorization is strictly prohibited. All rights

More information

HOL-CHG-1695

HOL-CHG-1695 Table of Contents 练 习 概 述 - - vsphere 挑 战 练 习... 2 练 习 指 导... 3 第 1 单 元 : 在 实 践 中 学 习 (15 分 钟 )... 5 剪 贴 板 复 制 和 粘 贴 功 能 无 法 使 用?... 6 虚 拟 机 性 能 不 佳... 17 第 2 单 元 : 基 本 运 维 挑 战 (30 分 钟 )... 32 无 法 登 录

More information

05 01 X Window X Window Linux Linux X Window X Window Webmin Web Linux Linux X Window X Window Notebook PC X Window X Window module Linux Linux kernel

05 01 X Window X Window Linux Linux X Window X Window Webmin Web Linux Linux X Window X Window Notebook PC X Window X Window module Linux Linux kernel Linux sub bash test2.sh sub bash test.sh test2.sh sub bash var1 123 123 test.sh test2.sh var1 bash sub bash var1 bash 01 5-4 X Window X Window X Window Linux Server X Window CPU2006 Linux X Window benchmark

More information

2Office 365 Microsoft Office 365 Microsoft Office Microsoft Office Microsoft Office 365 Office (Office Web Apps) Office WindowsMAC OS Office 365 Offic

2Office 365 Microsoft Office 365 Microsoft Office Microsoft Office Microsoft Office 365 Office (Office Web Apps) Office WindowsMAC OS Office 365 Offic 2.1 Office 365 Office 365 Office 365 Microsoft Office Microsoft Office Office 365 Office WordExcelPowerPointOutlookAccessOneNote Publisher Office 365 Office365 Office Online ( Office Web Apps)Skype for

More information

cosa Quick Start Manual

cosa Quick Start Manual 小 心 SmartStor Cloud 網 路 儲 存 體 機 箱 內 的 電 子 元 件 易 受 靜 電 放 電 (ESD) 的 影 響, 因 而 受 到 損 壞 處 理 SmartStor Cloud 裝 置 或 其 子 配 件 時, 應 隨 時 遵 守 預 防 措 施 警 告! 風 扇 含 有 危 險 的 活 動 零 件 確 保 手 指 及 其 他 身 體 部 位 遠 離 風 扇 小 心 如

More information

Windows 2000/2003/xp (FRS) SYSVOL Domain Policies Scripts Staging Domain staging areas Domain name staging areas Domain name Policies Scripts AD 1.2 A

Windows 2000/2003/xp (FRS) SYSVOL Domain Policies Scripts Staging Domain staging areas Domain name staging areas Domain name Policies Scripts AD 1.2 A AD 1 AD AD AD 1.1 AD AD ----AD SYSVOL 1 AD Ntds.dit Edbxxxxx.log Edb.chk Res1.log Res2.log Ntds.dit (10 MB) Edb.log Edb.log Edb.log Edbxxxxx.log 00001 Active Directory edb.log Edbxxxxx.log Res1.log Res2.log

More information

1 Par t IBM 7 Par t 2 I BM IBM Par t Q & A

1 Par t IBM 7 Par t 2 I BM IBM Par t Q & A IBM 1 Par t 1 12 2 3 1 3 3 3 1 4 4 4 5 5 5 2 5 6 6 IBM 7 Par t 2 I BM IBM 1 0 1 1 2 2 1 6 3 1 8 Par t 3 2 0 Q & A 2 9 2 2 Pa r t 1 12 4 27 1 2 3 2,3 0 0 2 1990 9 1992 6 1995 4 1995 7 12 1995 8 11 1995

More information

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone,

KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, KDC-U5049 KDC-U4049 Made for ipod, and Made for iphone mean that an electronic accessory has been designed to connect specifically to ipod, or iphone, respectively, and has been certified by the developer

More information

untitled

untitled 8086/8088 CIP /. 2004.8 ISBN 7-03-014239-X.... TP313 CIP 2004 086019 16 100717 http://www.sciencep.com * 2004 8 2004 8 1 5 500 787 1092 1/16 16 1/2 391 000 1 2 ii 1 2 CAI CAI 3 To the teacher To the student

More information

ebook12-1

ebook12-1 API N e t B I O S Wi n s o c k A P I Wi n s o c k 1 N e t B I O S Wi n s o c k A P I N e t B I O S O S / 2 D O S 2 3 4 Wi n d o w s Wi n d o w s 1 NetBIOS Network Basic Input/Output System, NetBIOS A P

More information

9 Internet 10 Internet

9 Internet 10 Internet 1 2 3 4 5 6 Internet 7 8 9 Internet 10 Internet 11 12 1 1.1 1.2 1.3 1.4 1.5 1.6 1.1 1.1.1 20 50 20 60 ARPANET ARPANET Internet 20 70 ISO International Organization for Standardization TCP/IP 20 90 Internet

More information

说明书

说明书 睿 坤 管 理 卡 V6.00 使 用 手 冊 二 十 四 科 技 有 限 公 司 目 錄 一 序 言...5 二 產 品 介 紹...5 1. 相 關 專 用 語... 5 2. 主 要 功 能 說 明... 6 3. 功 能 特 點... 6 4. 環 境 需 求... 7 三 產 品 的 安 裝...8 1. 安 裝 前 準 備... 8 2. 安 裝 步 驟... 8 2.1 基 本 的 安

More information

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( )

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) ( ) ( ) Windows USB 1 SATA A. SATASATAIntel SATA (SATA3

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

財金資訊-84期.indd

財金資訊-84期.indd BANK 3.0 BANK 3.0 / 102 12 Target Corporation POS (Point-of-sale) 7,000 200 10 ( ) 103 5 29 11 2 103 7 10 10300173840 ( ) ( ) 1 48 / No.84 / 2015.10 BANK 3.0 1 ( ATM ) ( ) ( ) 103 ( 2) 2 ( ) ( ) ( ) (

More information