LINUX内核开发与调试

Size: px
Start display at page:

Download "LINUX内核开发与调试"

Transcription

1 GDB 基础 张银奎 2017/2/14 珠海白石富华里

2 Richard Matthew Stallman Richard Matthew Stallman is a software developer and software freedom activist. Born in 1953, he attended Harvard starting in 1970 and graduated in 1974 with a Bachelor of Arts in physics. From September 1974 to June 1975 he was a graduate student in physics at MIT. Stallman developed a number of widely used software components of the GNU system: the GNU Compiler Collection, the GNU symbolic debugger (gdb), GNU Emacs, and various others.

3

4 RMS in China, 2000 Beijing -> Chengdu -> JiuZhaiGou -> Wuhan and to Shanghai"

5 Richard Stallman using his Lemote machine at Indian Institute of Technology Madras, Chennai before his lecture on 'Free Software, Freedom and Education' organized by Free Software Foundation, Tamil Nadu. What hardware do you use? I am using a Lemote Yeelong, a netbook with a Loongson chip and a 9-inch display. This is my only computer, and I use it all the time. I chose it because I can run it with 100% free software even at the BIOS level. /Richard_Stallman

6 GNU Projects Stallman announced the plan for the GNU operating system in September 1983 on several ARPANET mailing lists and USENET. Stallman was responsible for contributing many necessary tools, including a text editor (Emacs), compiler (GCC), debugger (GNU Debugger), and a build automator (GNU make). In 1991, Linus Torvalds, a Finnish student, used the GNU's development tools to produce the free monolithic Linux kernel. Man ls AUTHOR Written by Richard M. Stallman and David MacKenzie.

7 GDB GNU Debugger 1986 年,Richard Stallman 创建 ,John Gilmore 维护 目前在 GDB Steering Committee It was modeled after the DBX debugger, which came with Berkeley Unix distributions 支持很多种 CPU architecture A29K, ARC, ETRAX CRIS, D10V, D30V, FR-30, FR-V, Intel i960, M32R, 68HC11, Motorola 88000, MCORE, MN10200, MN10300, NS32K, Stormy16, V850, Z8000 and many more 默认为命令行界面, 有很多 GUI 的前端 (Add-on) 7

8 官网

9 Contributors to gdb

10 ChangeLog

11 /gdb/readme README for GDB release This is GDB, the GNU source-level debugger. A summary of new features is in the file `gdb/news'. Check the GDB home page at for up to date release information, mailing list links and archives, etc. The file `gdb/problems' contains information on problems identified late in the release cycle. GDB's bug tracking data base at contains a more complete list of bugs.

12 RMS's gdb Debugger Tutorial d.com/rtfm/gdbtut/gdbt oc.html

13 Document 学习 GDB 的最好教材 Tenth Edition, for gdb version 章, 多个附录,790 页

14 概览 1 A Sample gdb Session 2 Getting In and Out of gdb 2.1 Invoking gdb Choosing Files Choosing Modes What gdb Does During Startup 2.2 Quitting gdb 2.3 Shell Commands 2.4 Logging Output 3 gdb Commands 3.1 Command Syntax 3.2 Command Completion 3.3 Getting Help

15 在 GDB 下运行程序 4 Running Programs Under gdb 4.1 Compiling for Debugging 4.2 Starting your Program 4.3 Your Program's Arguments 4.4 Your Program's Environment 4.5 Your Program's Working Directory 4.6 Your Program's Input and Output 4.7 Debugging an Already-running Process 4.8 Killing the Child Process 4.9 Debugging Multiple Inferiors and Programs 4.10 Debugging Programs with Multiple Threads 4.11 Debugging Forks 4.12 Setting a Bookmark to Return to Later A Non-obvious Benefit of Using Checkpoints

16 5 Stopping and Continuing 5.1 Breakpoints, Watchpoints, and Catchpoints Setting Breakpoints Setting Watchpoints Setting Catchpoints Deleting Breakpoints Disabling Breakpoints Break Conditions Breakpoint Command Lists Dynamic Printf How to save breakpoints to a file Static Probe Points Cannot insert breakpoints Breakpoint address adjusted Continuing and Stepping 5.3 Skipping Over Functions and Files 5.4 Signals 5.5 Stopping and Starting Multi-thread Programs All-Stop Mode Non-Stop Mode Background Execution Thread-Specific Breakpoints Interrupted System Calls Observer Mode 停止和继续

17 炫酷功能 6 Running programs backward 7 Recording Inferior's Execution and Replaying It

18 查看栈 源代码 8 Examining the Stack 8.1 Stack Frames 8.2 Backtraces 8.3 Selecting a Frame 8.4 Information About a Frame 8.5 Management of Frame Filters. 9 Examining Source Files 9.1 Printing Source Lines 9.2 Specifying a Location Linespec Locations Explicit Locations Address Locations 9.3 Editing Source Files Choosing your Editor 9.4 Searching Source Files 9.5 Specifying Source Directories 9.6 Source and Machine Code

19 查看数据 10 Examining Data 10.1 Expressions 10.2 Ambiguous Expressions 10.3 Program Variables 10.4 Artificial Arrays 10.5 Output Formats 10.6 Examining Memory 10.7 Automatic Display 10.8 Print Settings 10.9 Pretty Printing Pretty-Printer Introduction Pretty-Printer Example Pretty-Printer Commands Value History Convenience Variables Convenience Functions Registers Floating Point Hardware Vector Unit Operating System Auxiliary Information Memory Region Attributes Attributes Memory Access Mode Memory Access Size Data Cache Memory Access Checking Copy Between Memory and a File How to Produce a Core File from Your Program Character Sets Caching Data of Targets Search Memory Value Sizes

20 11 Debugging Optimized Code 11.1 Inline Functions 11.2 Tail Call Frames 12 C Preprocessor Macros 13 Tracepoints 13.1 Commands to Set Tracepoints Create and Delete Tracepoints Enable and Disable Tracepoints Tracepoint Passcounts Tracepoint Conditions Trace State Variables Tracepoint Action Lists Listing Tracepoints Listing Static Tracepoint Markers Starting and Stopping Trace Experiments Tracepoint Restrictions 13.2 Using the Collected Data tfind n tdump save tracepoints filename 13.3 Convenience Variables for Tracepoints 13.4 Using Trace Files 跟踪点

21 查看符号表和改变执行目标 16 Examining the Symbol Table 17 Altering Execution 17.1 Assignment to Variables 17.2 Continuing at a Different Address 17.3 Giving your Program a Signal 17.4 Returning from a Function 17.5 Calling Program Functions 17.6 Patching Programs 17.7 Compiling and injecting code in gdb Compilation options for the compile command Caveats when using the compile command Compiler search for the compile command

22 指定文件和控制 GDB 18 gdb Files 18.1 Commands to Specify Files 18.2 File Caching 18.3 Debugging Information in Separate Files 18.4 Debugging information in a special section 18.5 Index Files Speed Up gdb 18.6 Errors Reading Symbol Files 18.7 GDB Data Files 22 Controlling gdb 22.1 Prompt 22.2 Command Editing 22.3 Command History 22.4 Screen Size 22.5 Numbers 22.6 Configuring the Current ABI 22.7 Automatically loading associated files Automatically loading init file in the current directory Automatically loading thread debugging library Security restriction for auto-loading Displaying files tried for auto-load 22.8 Optional Warnings and Messages 22.9 Optional Messages about Internal Happenings Other Miscellaneous Settings

23 概览 命令基础 用户态会话 断点 执行控制 符号 查看调试目标 高级技巧

24 Syntax A gdb command is a single line of input. There is no limit on how long it can be. You can repeat certain gdb commands by typing just RET. You can also use the TAB key to get gdb to fill out the rest of a word in a command # comment

25 缩写和别名 You can abbreviate a gdb command to the first few letters of the command name, if that abbreviation is unambiguous; (GDB) info > I (GDB) continue > c 很多命令有简单的别名 (GDB) backtrace > bt (GDB) ptype > pt

26 Convenience Variables GDB 维护的违变量以 $ 开头 $ most recent displayed value $n nth displayed value $$ displayed value previous to $ $$n nth displayed value back from $ 可以使用 set 命令定义 set $foo = *object_ptr

27 $_ 和 $ The variable $_ is automatically set by the x command to the last address examined. The variable $ is automatically set by the x command to the value found in the last address examined. Its type is chosen to match the format in which the data was printed

28 $_thread Gdb provides two convenience variables, $_thread and $_gthread (the latter being pretty new), which can be used in conditions to refer to the current thread. So, once the worker thread has started, you can use info thread to find its number. Then you can change your breakpoint (supposing for this example that it is breakpoint 2) like: (gdb) cond 2 $_thread!= 57

29 Gdb variables (gdb) set $foo = 4 (gdb) p $foo $3 = 4

30 Register Variables (gdb) break write if $rsi == 2

31 表达式归纳 expr an expression in C, C++, or Modula-2(including function calls), or: an array of len elements beginning at addr file::nm a variable or function nm defined in file {type}addr read memory at addr as specied type $ most recent displayed value $n nth displayed value $$ displayed value previous to $ $$n nth displayed value back from $ $_ last address examined with x $ value at address $_ $var convenience variable; assign any value show values [n] show last 10 values [or surrounding $n] show conv display all convenience variables

32 Shell Commands shell command-string!command-string

33 Info and show info -- Generic command for showing things about the program being debugged show -- Generic command for showing things about the debugger

34 Debug the debugger set debug -- Generic command for setting gdb debugging flags

35 Logging Output

36 常用调试命令对照表 WinDBG 命令 GDB 命令 功能 bp break 或 b 设置软件断点 ba watch 设置硬件断点 k backtrace 或 bt 显示函数调用序列 ( 栈回溯 ) g continue 或 c 恢复执行 p/t next/step 或 n/s 单步跟踪 d x 观察内存 dv info locals 观察局部变量 dt pt 观察数据类型 ( 结构 ) gu finish 执行到函数返回.frame frame 切换当前栈帧 lm i shared 列模块 36

37 更多常用命令 命令行 run xxx set args xx xx show args 观察类型 ptype whatis print 管理断点 源代码 info/disable/delete break list 3,8 info line/source/sources show conv 37

38

39

40 Get help help(h) help class apropos args complete args

41 概览 命令基础 用户态会话 断点 执行控制 符号 查看调试目标 高级技巧

42 调试模式 调试模式 交互式调试 转储分析 gdb --core=<file> 调试新进程 调试已经运行的进程 内核调试 gdb <exe> gdb --args <exe> [args] gdb --pid=<n>

43 调试新进程 命令行指定 exe gdb <exe> 命令行指定 exe 和参数 gdb --args <exe> [args] 使用命令 gdb file <exe> run [args]

44 示例 1 gdb file <exe> run [args]

45 示例 2 gdb --args gcc -O2 -c foo.c

46 args... [~]$ gdb --args pizzamaker --deep-dish --toppings=pepperoni (gdb) show args Argument list to give program being debugged when it is started is " --deep-dish --toppings=pepperoni". (gdb) b main Breakpoint 1 at 0x45467c: file oven.c, line (gdb) run

47 设置和显示程序参数 set args Specify the arguments to be used the next time your program is run. If set args has no arguments, run executes your program with no arguments. Once you have run your program with arguments, using set args before the next run is the only way to run it again without arguments. show args Show the arguments to give your program when it is started.

48 环境变量 path directory show paths show environment [varname] set environment varname [=value]

49 工作目录 继承 GDB 的当前目录 cd [directory] Set the gdb working directory to directory. If not given, directory uses ~. pwd Print the gdb working directory.

50 输入输出 info terminal run > outfile tty /dev/ttyb

51 inferior n. 部下, 下属 ; 次品 ; 晚辈 ;[ 印 ] 下角码 [ɪnˈfɪriə(r)] gdb represents the state of each program execution with an object called an inferior. An inferior typically corresponds to a process, but is more general and applies also to targets that do not have processes. Inferiors may be created before a process runs, and may be retained after a process exits. 下程

52 显示下程信息 (gdb) info inferiors Num Description Executable * 1 <null> /home/ge/work/llaolao3/baner 描述部分的 null 表示进程退出或者没有运行, 或者已经 detach

53 克隆下程 (gdb) clone-inferior -copies 2 Added inferior 2. Added inferior 3. (gdb) info inferiors Num Description Executable 3 <null> /home/ge/work/llaolao3/baner 2 <null> /home/ge/work/llaolao3/baner * 1 <null> /home/ge/work/llaolao3/baner

54 切换下程 inferior infno Make inferior number infno the current inferior. The argument infno is the inferior number assigned by gdb, as shown in the first field of the info inferiors display.

55 增加下程 add-inferior [ -copies n ] [ -exec executable ]

56 更多关于下程的命令 remove-inferiors infno... detach inferior infno... kill inferiors infno...

57 file 命令 Use FILE as program to be debugged. It is read for its symbols, for getting the contents of pure memory, and it is the program executed when you use the `run' command. If FILE cannot be found as specified, your execution directory path ($PATH) is searched for a command of that name. No arg means to have no executable file and no symbols.

58 文件命令 file 指定执行文件和符号文件 文件名作为参数, 不带参数则清除此类信息 exec-file 指定执行文件 symbol-file 指定符号文件

59 开始运行 run Start debugged program. You may specify arguments to give it. Args may include "*", or "[...]"; they are expanded using "sh". Input and output redirection with ">", "<", or ">>" are also allowed. With no arguments, uses arguments last specified (with "run" or "set args"). To cancel previous arguments and run with no arguments, use "set args" without arguments.

60 附加到已经运行的进程 命令行参数 gdb --pid=<n> 使用 attach 命令 attach process-id

61 终止调试会话 分离 - detach 杀死 - quit

62 Quit gdb use the quit command (abbreviated q) type an end-of-file character (usually Ctrl-d)

63 进程跟踪 Process Trace,Ptrace 最早实现在 1979 发布的 Unix V7 Unix/Linux 用户态调试的主要依据 63 父进程 fork 子进程 waitpid 调试器 / 养父进程 ptrace

64 ptrace #include <sys/ptrace.h> long int ptrace(enum ptrace_request request, pid_t pid, void * addr, void * data) PTRACE_ATTACH/ PTRACE_DETACH PTRACE_PEEKTEXT, PTRACE_PEEKDATA, PTRACE_PEEKUSER PTRACE_POKETEXT, PTRACE_POKEDATA, PTRACE_POKEUSER PTRACE_SINGLESTEP PTRACE_KILL 系统调用 64

65 waitpid #include <sys/types.h> #include <sys/wait.h> pid_t waitpid(pid_t pid, int *status, int options); WIFEXITED(status): 子进程正常退出 WEXITSTATUS(status): 子进程的退出码 WIFSIGNALED(status): SIGINT, CTRL-C WTERMSIG(status): 终止信号编号 WIFSTOPPED(status): SIGSTOP, CTRL-Z WSTOPSIG(status): 停止信号编号 65

66 概览 命令基础 用户态会话 断点 执行控制 符号 查看调试目标 高级技巧

67 设置代码断点 软件断点硬件断点 break 普通 tbreak 一次性 rbreak 接受正则表达式成批设置 hbreak thbreak 一次性

68 两类断点 软件断点 基于 CPU 的断点指令, 如 x86 的 INT 3 ( 机器码 0xCC) 替换断点位置的指令 CPU 执行到此时触发断点异常 没有数量限制 硬件断点 基于 CPU 的调试寄存器, 如 x86 的 DR0 DR7 不需要修改程序代码, 可以针对 EEPROM 上的代码设置 有数量限制

69 指定位置 (Location) Linespec locations 行号 -/+ 偏移行 文件名 : 行号 函数名 函数 : 标号 文件名 : 函数名 标号 Explicit locations -source filename -function function -label label -line number Address locations *address

70 示例 对函数名和地址设断点

71 示例 对源代码行设断点 第二个断点 +2 意为相对当前代码行之后 (after)2 行, 上个 list 命令会影响当前代码行的位置 For the list command, the current line is the last one printed; for the breakpoint commands, this is the line at which execution stopped

72 硬件断点 VBOX 虚拟机中设置失败

73 管理断点 info b delete 1 #Delete breakpoint 1 disable 1 # Disable the breakpoint 1 enable 1 # Enable breakpoint 1 delete #Delete all breakpoints clear sum #Clear any breakpoints at the entry to function sum

74 扩展断点 监视点 watchpoint 断点 追踪点 tracepoint 捕捉点 catchpoint

75 监视点 监视表达式, 值变化时中断 The expression may be as simple as the value of a single variable, or as complex as many variables combined by operators. watch a*b + c/d watch *(int *)0x watch *global_ptr 数据断点 (data breakpoint)

76 监视点示例

77 实现 硬件平台相关 X86 上是使用硬件寄存器, 数量有限制, 最多 4 个

78 自动删除

79 访问监视点 rwatch [-l -location] expr [thread thread-id] [mask maskvalue] Set a watchpoint that will break when the value of expr is read by the program. awatch [-l -location] expr [thread thread-id] [mask maskvalue] Set a watchpoint that will break when expr is either read from or written into by the program.

80 访问监视点示例 写 fd 触发实际上是 61 行的写操作触发硬件断点, 事后报告, 导致 gdb 行号报告为 62 行 fd = open(name, O_RDWR); 读 fd 触发 读 fd 触发 读 n 做比较时触发, 写时没有触发

81 线程约束 thread <threadno> 进档指定线程遇到断点时才中断 适用于各类断点

82 线程约束示例 (gdb) b hd_ioctl thread 1 Breakpoint 10 at 0x : file baner.c, line 16.

83 附加条件 直接使用 if 关键字附加在断点命令后 或者 condition bnum expression condition bnum 没有参数则删除之前设置的条件

84 条件断点示例

85

86 附件命令示例

87 例 2 (gdb) b do_mmap_pgoff Breakpoint 1 at 0xffffffff8111a441: file mm/mmap.c, line 940. (gdb) command 1 Type commands for when breakpoint 1 is hit, one per line. End with a line saying just "end". >print addr >print len >print prot >end (gdb)

88 概览 命令基础 用户态会话 断点 执行控制 符号 查看调试目标 高级技巧

89 单步跟踪 stepi #Execute one instruction stepi 4 # Execute four instructions nexti # Like stepi, but proceed through function calls without stopping step # Execute one C statement

90 汇编级跟踪 set disassemble-next-line on

91 汇编 窗口 (gdb)layout asm (gdb) focus asm (gdb) ni

92 Oops (gdb) show version GNU gdb (Ubuntu/Linaro ubuntu2.1) Copyright (C) 2012 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later < ml> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu".

93 观察机器码 echo 'asm("mov $400835, %rax\n jmp *%rax\n");' > test.c gcc -c test.c objdump -d test.o display /3i $pc

94 恢复执行 continue # Resume execution until the next breakpoint until 3 # Continue executing until program hits breakpoint 3 finish # Resume execution until current function returns

95 调用函数 call sum(1, 2) # Call sum(1,2) and print return value

96 强制返回 return expression You can cancel execution of a function call with the return command. If you give an expression argument, its value is used as the function s return value.

97 触发中断 CTRL + C Suspending execution is done with the interrupt command when running in the background,or Ctrl-c during foreground execution.

98 反向单步 # reverse-step, reverse-next, reverse-continue (rc) # target record # target record-full

99 利用 RTIT 反向单步 Real time instruction trace, 又叫 intel processor trace Gdb 7.10 supports PT for backwards debugging (reverse-step) Uses perf interface, works as non root

100 概览 命令基础 用户态会话 断点 执行控制 符号 查看调试目标 高级技巧

101 调试符号 编译器对调试的重大贡献 编译过程的副产品 衔接二进制程序与源程序的桥梁 对调试有着重要意义 源代码级调试必须 二进制跟踪时的灯塔

102 DWARF DWARF Debugging Information Format 功莫大焉

103 再看 ELF

104 段表

105 感受 DWARF 编译单元

106 TAG( 标签 )

107 产生符号 $ gcc g o baner baner.c -g --gen-debug generate debugging information

108 Ubuntu 的符号服务器

109 服务器的根目录

110 下载内核符号文件

111 示例 2

112 libc

113 学习用虚拟机 - gebox

114 加载符号文件 file 或者 symbol-file [ filename ] Read symbol table information from file filename. PATH is searched when necessary. Use the file command to get both symbol table and program to run from the same file.

115 案例

116 符号文件信息

117 两阶段读取 对于大多数符号文件,GDB 先是快速扫描符号文件, 然后根据需要读取详细数据 可以使用 readnow 选项来强制读取所有符号信息

118 显示符号 info variables regexp info classes regexp info functions regexp info types regexp

119 查找函数 info functions regexp

120 符号命令归纳 info address s #show where symbol s is stored info func [regex] #show names, types of defined functions (all, or matching regex) info var [regex] #show names, types of global variables (all, or matching regex) whatis [expr] #show data type of expr [or $] without evaluating; ptype [expr] #ptype gives more detail ptype type #describe type, struct, union, or enum

121 符号和地址互查

122 观察虚函数表 或

123 查看源代码

124 源文件信息

125 Install source files from Ubuntu [~/src]$ apt-get source coreutils [~/src]$ sudo apt-get install coreutils-dbgsym [~/src]$ gdb /bin/ls GNU gdb (GDB) 7.1-ubuntu (gdb) list main 1192 ls.c: No such file or directory. in ls.c (gdb) directory ~/src/coreutils-7.4/src/ Source directories searched: /home/nelhage/src/coreutils-7.4:$cdir:$cwd (gdb) list main 1192 } 1193 }

126 安装 libc 源文件 sudo apt-get source libc6-dev /home/ge/eglibc-2.15

127 设置搜索路径 Add directory dirname to the front of the source path. Several directory names may be given to this command, separated by : ( ; on MS-DOS and MSWindows, where : usually appears as part of absolute file names) or whitespace. $cdir to refer to the compilation directory $cwd to refer to the current working directory

128 安装内核源文件 [~/src]$ apt-get source linux-image generic [~/src]$ sudo apt-get install linux-image generic-dbgsym [~/src]$ gdb /usr/lib/debug/boot/vmlinux generic (gdb) list schedule 5519 /build/buildd/linux /kernel/sched.c: No such file or directory. in /build/buildd/linux /kernel/sched.c (gdb) set substitute-path /build/buildd/linux /home/nelhage/src/linux / (gdb) list schedule static void put_prev_task(struct rq *rq, struct task_struct *p) 5521 {

129 常用命令

130 概览 命令基础 用户态会话 断点 执行控制 符号 读写调试目标 高级技巧

131 观察寄存器

132 修改寄存器 (gdb)set $<name>=<value>

133

134 栈回溯 backtrace

135 参数和局部变量

136 切换栈帧 frame <no>

137 观察变量和内存

138 x [~]$ grep saved_command /proc/kallsyms ffffffff B saved_command_line (gdb) x/s 0xffffffff ffffffff <>: "root=/dev/sda1 quiet

139 示例

140 @ (gdb) p *&a[0]@10 $1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} to view elements in a long vector, all you do is 'p *&a[550]@4'

141 修改内存 (gdb) set <var>=<exp> (gdb) help set variable Evaluate expression EXP and assign result to variable VAR, using assignment syntax appropriate for the current language (VAR = EXP or VAR := EXP for example). VAR may be a debugger "convenience" variable (names starting with $), a register (a few standard names starting with $), or an actual variable in the program being debugged. EXP is any valid expression. This may usually be abbreviated to simply "set".

142 反汇编

143 x/i (gdb) x/5i schedule 0xffffffff a <schedule>: push %rbp 0xffffffff b <schedule+1>: mov $0x11ac0,%rdx 0xffffffff <schedule+8>: mov %gs:0xb588,%rax 0xffffffff b <schedule+17>: mov %rsp,%rbp 0xffffffff e <schedule+20>: push %r15 x/10i sum Examine first 10 instructions of function sum

144 X86 汇编语言 INTEL 语法 先是目标, 然后是源, 也就是从右向左赋值 Windows 上流行 AT&T 语法 先是源, 然后是目标, 也就是从左向右赋值 Unix 和 Linux 上流行

145 概览 命令基础 用户态会话 断点 执行控制 符号 查看调试目标 高级技巧

146 信号

147 处理规则

148 改变信号处理规则 handle SIGPIPE nostop print

149 多线程调试

150 info threads * 代表当前线程

151 切换线程 thread thread-id

152 对多个线程执行命令 thread apply [thread-id-list all [-ascending]] command

153 命名 thread name [name]

154 命令文件

155 Q&A

156 拍案惊奇 软件调试实战训练营 软件调试高级研习班 2017 庐山秀峰站

157 切问而近思 欢迎关注格友公众号

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1.

Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE Project Properties IDE makefile 1. Oracle Solaris Studio 12.2 IDE 2010 9 2 8 9 10 11 13 20 26 28 30 32 33 Oracle Solaris Studio makefile C C++ Fortran IDE Solaris Linux C/C++/Fortran IDE "Project Properties" IDE makefile 1. "File" > "New

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

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

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

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "P

Oracle Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE P Oracle Solaris Studio 12.3 IDE 2011 12 E26461-01 2 7 8 9 9 Oracle 10 12 14 21 26 27 29 31 32 33 Oracle Solaris Studio IDE makefile C C++ Fortran makefile IDE Solaris Linux C/C++/Fortran Oracle IDE "Project

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

How to Debug Tuxedo Server printf( Input data is: %s, inputstr); fprintf(stdout, Input data is %s, inputstr); fprintf(stderr, Input data is %s, inputstr); printf( Return data is: %s, outputstr); tpreturn(tpsuccess,

More information

EK-STM32F

EK-STM32F STMEVKIT-STM32F10xx8 软 件 开 发 入 门 指 南 目 录 1 EWARM 安 装... 1 1.1 第 一 步 : 在 线 注 册... 1 1.2 第 二 步 : 下 载 软 件... 2 1.3 第 三 步 : 安 装 EWARM... 3 2 基 于 STMEVKIT-STM32F10xx8 的 示 例 代 码 运 行... 6 2.1 GPIO Demo... 6 2.2

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Linux 操 作 系 统 基 础 介 绍 课 程 目 标 及 要 求 了 解 Linux 操 作 系 统 的 登 入 方 式 掌 握 常 用 命 令 的 基 本 用 法 能 够 熟 练 在 各 个 目 录 转 换 Outline 1. Linux 操 作 系 统 简 介 2. Linux 操 作 系 统 的 登 录 3. Linux 操 作 系 统 的 目 录 结 构 4. 常 用 命 令 5.

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

言1.PDF

言1.PDF MSP430 WINDOWS WORKBENCH MSP430 Flash Green MCU Flash Flash MCU MSP430 16 RISC 27 125ns 1.8V~3.6V A/D 6 s MSP430 10 ESD MSP430 MSP430 10 MSP430 2001 MSP430 Windows Workbench Interface Guide Windows Workbench

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

More information

Guide to Install SATA Hard Disks

Guide to Install SATA Hard Disks SATA RAID 1. SATA. 2 1.1 SATA. 2 1.2 SATA 2 2. RAID (RAID 0 / RAID 1 / JBOD).. 4 2.1 RAID. 4 2.2 RAID 5 2.3 RAID 0 6 2.4 RAID 1.. 10 2.5 JBOD.. 16 3. Windows 2000 / Windows XP 20 1. SATA 1.1 SATA Serial

More information

入學考試網上報名指南

入學考試網上報名指南 入 學 考 試 網 上 報 名 指 南 On-line Application Guide for Admission Examination 16/01/2015 University of Macau Table of Contents Table of Contents... 1 A. 新 申 請 網 上 登 記 帳 戶 /Register for New Account... 2 B. 填

More information

untitled

untitled Unix Ka-Lok Ng () Department of Biological Sciences and Biotechnology() Taichung Healthcare and Management University (O) 04-23323456 x1856 3408 Teach the student how to use Linux system using TEXT mode

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論

國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 表 11 國 立 政 治 大 學 教 育 學 系 博 士 班 資 格 考 試 抵 免 申 請 表... 46 論 文 題 目 申 報 暨 指 導 教 授... 47 表 12 國 立 政 治 大 學 碩 博 士 班 論 國 立 政 治 大 學 教 育 學 系 2016 新 生 入 學 手 冊 目 錄 一 教 育 學 系 簡 介... 1 ( 一 ) 成 立 時 間... 1 ( 二 ) 教 育 目 標 與 發 展 方 向... 1 ( 三 ) 授 課 師 資... 2 ( 四 ) 行 政 人 員... 3 ( 五 ) 核 心 能 力 與 課 程 規 劃... 3 ( 六 ) 空 間 環 境... 12 ( 七 )

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

WinMDI 28

WinMDI 28 WinMDI WinMDI 2 Region Gate Marker Quadrant Excel FACScan IBM-PC MO WinMDI WinMDI IBM-PC Dr. Joseph Trotter the Scripps Research Institute WinMDI HP PC WinMDI WinMDI PC MS WORD, PowerPoint, Excel, LOTUS

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

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

ch_code_infoaccess

ch_code_infoaccess 地 產 代 理 監 管 局 公 開 資 料 守 則 2014 年 5 月 目 錄 引 言 第 1 部 段 數 適 用 範 圍 1.1-1.2 監 管 局 部 門 1.1 紀 律 研 訊 1.2 提 供 資 料 1.3-1.6 按 慣 例 公 布 或 供 查 閱 的 資 料 1.3-1.4 應 要 求 提 供 的 資 料 1.5 法 定 義 務 及 限 制 1.6 程 序 1.7-1.19 公 開 資

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 ............ 1 2 3 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

2017 CCAFL Chinese in Context

2017 CCAFL Chinese in Context Student/Registration Number Centre Number 2017 PUBLIC EXAMINATION Chinese in Context Reading Time: 10 minutes Working Time: 2 hours and 30 minutes You have 10 minutes to read all the papers and to familiarise

More information

软件自由法律中心 GPL 软件许可证合规指导

软件自由法律中心 GPL 软件许可证合规指导 GPL Eben Moglen Mishi Choudhary 2015 8 21 GNU GPL 3 W 3 Copyleft............................... 3 Copyleft 4................................ 7 GPLv2.................................... 7 GPLv3....................................

More information

A Preliminary Implementation of Linux Kernel Virus and Process Hiding

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

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

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

CDWA Mapping. 22 Dublin Core Mapping

CDWA Mapping. 22 Dublin Core Mapping (version 0.23) 1 3... 3 3 3 5 7 10 22 CDWA Mapping. 22 Dublin Core Mapping. 24 26 28 30 33 2 3 X version 0.2 ( ) 4 Int VarcharText byte byte byte Id Int 10 Management Main Code Varchar 30 Code Original

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

untitled

untitled 2006 6 Geoframe Geoframe 4.0.3 Geoframe 1.2 1 Project Manager Project Management Create a new project Create a new project ( ) OK storage setting OK (Create charisma project extension) NO OK 2 Edit project

More information

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor

(Load Project) (Save Project) (OffLine Mode) (Help) Intel Hex Motor 1 4.1.1.1 (Load) 14 1.1 1 4.1.1.2 (Save) 14 1.1.1 1 4.1.2 (Buffer) 16 1.1.2 1 4.1.3 (Device) 16 1.1.3 1 4.1.3.1 (Select Device) 16 2 4.1.3.2 (Device Info) 16 2.1 2 4.1.3.3 (Adapter) 17 2.1.1 CD-ROM 2 4.1.4

More information

目 录

目 录 1 Quick51...1 1.1 SmartSOPC Quick51...1 1.2 Quick51...1 1.3 Quick51...2 2 Keil C51 Quick51...4 2.1 Keil C51...4 2.2 Keil C51...4 2.3 1 Keil C51...4 2.4 Flash Magic...9 2.5 ISP...9 2.6...10 2.7 Keil C51...12

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

ebook70-14

ebook70-14 Linux 1 4 1 5 1 6 1 7 1 8 1 9 S t a r O ff i c e 2 0 L i n u x 1 4 O p e n L i n u x O p e n L i n u x C D - R O M O p e n L i n u x C o r e l WordPerfect 8 for Linux S t a r D i v i s i o n S t a r O

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

Microsoft Word - SupplyIT manual 3_cn_david.doc

Microsoft Word - SupplyIT manual 3_cn_david.doc MR PRICE Supply IT Lynette Rajiah 1 3 2 4 3 5 4 7 4.1 8 4.2 8 4.3 8 5 9 6 10 6.1 16 6.2 17 6.3 18 7 21 7.1 24 7.2 25 7.3 26 7.4 27 7.5 28 7.6 29 7.7 30 7.8 31 7.9 32 7.10 32 7.11 33 7.12 34 1 7.13 35 7.14

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

mvc

mvc Build an application Tutor : Michael Pan Application Source codes - - Frameworks Xib files - - Resources - ( ) info.plist - UIKit Framework UIApplication Event status bar, icon... delegation [UIApplication

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

Microsoft Word - 11月電子報1130.doc

Microsoft Word - 11月電子報1130.doc 發 行 人 : 楊 進 成 出 刊 日 期 2008 年 12 月 1 日, 第 38 期 第 1 頁 / 共 16 頁 封 面 圖 話 來 來 來, 來 葳 格 ; 玩 玩 玩, 玩 數 學 在 11 月 17 到 21 日 這 5 天 裡 每 天 一 個 題 目, 孩 子 們 依 據 不 同 年 段, 尋 找 屬 於 自 己 的 解 答, 這 些 數 學 題 目 和 校 園 情 境 緊 緊 結

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

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

PowerPoint Presentation

PowerPoint Presentation TOEFL Practice Online User Guide Revised September 2009 In This Guide General Tips for Using TOEFL Practice Online Directions for New Users Directions for Returning Users 2 General Tips To use TOEFL Practice

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

自动化接口

自动化接口 基 于 文 件 的 数 据 交 换 的 注 意 事 项 1 SPI 2 COMOS Automation 操 作 手 册 通 用 Excel 导 入 3 通 过 OPC 客 户 端 的 过 程 可 视 化 4 SIMIT 5 GSD 6 05/2016 V 10.2 A5E37093378-AA 法 律 资 讯 警 告 提 示 系 统 为 了 您 的 人 身 安 全 以 及 避 免 财 产 损 失,

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

Microsoft Word - linux命令及建议.doc

Microsoft Word - linux命令及建议.doc Linux 操 作 系 统 命 令 集 1 基 本 命 令 查 看 系 统 信 息 : uname -a 修 改 密 码 : passwd 退 出 : logout(exit) 获 取 帮 助 : man commands 2 文 件 和 目 录 命 令 显 示 当 前 工 作 目 录 : pwd 改 变 所 在 目 录 : cd cd - 切 换 到 上 一 次 使 用 的 目 录 cd 切 换

More information

LSC操作说明

LSC操作说明 1 C H R I S T A L P H A 1-4 LSC 型 Part. No. 102041 A L P H A 2-4 LSC 型 Part. No. 10204 冷 冻 干 燥 机 操 作 说 明 新 研 制 的 LSC-8 控 制 器, 具 备 图 形 显 示 功 能, 能 以 数 据 表 形 式 显 示 参 数, 并 可 选 配 控 制 软 件 LSC-8 1/4 VGA 大 屏 幕

More information

Microsoft Word - HSK使用手册.doc

Microsoft Word - HSK使用手册.doc HSK / New HSK Online Mock Test/Practices Student User Manual Table of contents New User... 2 1.1 Register... 2 1.2 Login... 3 1.3 Homepage... 4 Free Test... 4 2.1 Start... 5 2.2 Results... 6 Mock Test...

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

Microsoft PowerPoint - Lecture7II.ppt

Microsoft PowerPoint - Lecture7II.ppt Lecture 8II SUDOKU PUZZLE SUDOKU New Play Check 軟體實作與計算實驗 1 4x4 Sudoku row column 3 2 } 4 } block 1 4 軟體實作與計算實驗 2 Sudoku Puzzle Numbers in the puzzle belong {1,2,3,4} Constraints Each column must contain

More information

Microsoft Word - CX VMCO 3 easy step v1.doc

Microsoft Word - CX VMCO 3 easy step v1.doc Abacus Fully Automated Process of VMCO on CX, KA, CPH & KAH 16 Nov 2009 To streamline the VMCO handling on CX, KA, CPH & KAH, Abacus is pleased to inform you that manual submission of VMCO to CX/KA/CPH/KAH

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

Learning Java

Learning Java Java Introduction to Java Programming (Third Edition) Prentice-Hall,Inc. Y.Daniel Liang 2001 Java 2002.2 Java2 2001.10 Java2 Philip Heller & Simon Roberts 1999.4 Java2 2001.3 Java2 21 2002.4 Java UML 2002.10

More information

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING

AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING AN INTRODUCTION TO PHYSICAL COMPUTING USING ARDUINO, GRASSHOPPER, AND FIREFLY (CHINESE EDITION ) INTERACTIVE PROTOTYPING 前言 - Andrew Payne 目录 1 2 Firefly Basics 3 COMPONENT TOOLBOX 目录 4 RESOURCES 致谢

More information

ARM JTAG实时仿真器安装使用指南

ARM JTAG实时仿真器安装使用指南 ARM JTAG Version 1.31 2003. 11. 12 ARM JTAG ARM JTAG.3 ARM 2.1.4 2.2.4 ARM JTAG 3.1 18 3.2 18 3.2.1 Multi-ICE Server.18 3.2.2 ADS..21 ARM JTAG 4.1 Multi-ICE Server 33 4.1.1 Multi-ICE Server..... 33 4.1.2

More information

Bus Hound 5

Bus Hound 5 Bus Hound 5.0 ( 1.0) 21IC 2007 7 BusHound perisoft PC hound Bus Hound 6.0 5.0 5.0 Bus Hound, IDE SCSI USB 1394 DVD Windows9X,WindowsMe,NT4.0,2000,2003,XP XP IRP Html ZIP SCSI sense USB Bus Hound 1 Bus

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

Microsoft Word - ChineseSATII .doc

Microsoft Word - ChineseSATII .doc 中 文 SAT II 冯 瑶 一 什 么 是 SAT II 中 文 (SAT Subject Test in Chinese with Listening)? SAT Subject Test 是 美 国 大 学 理 事 会 (College Board) 为 美 国 高 中 生 举 办 的 全 国 性 专 科 标 准 测 试 考 生 的 成 绩 是 美 国 大 学 录 取 新 生 的 重 要 依

More information

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc

Microsoft Word - (web)_F.1_Notes_&_Application_Form(Chi)(non-SPCCPS)_16-17.doc 聖 保 羅 男 女 中 學 學 年 中 一 入 學 申 請 申 請 須 知 申 請 程 序 : 請 將 下 列 文 件 交 回 本 校 ( 麥 當 勞 道 33 號 ( 請 以 A4 紙 張 雙 面 影 印, 並 用 魚 尾 夾 夾 起 : 填 妥 申 請 表 並 貼 上 近 照 小 學 五 年 級 上 下 學 期 成 績 表 影 印 本 課 外 活 動 表 現 及 服 務 的 證 明 文 件 及

More information

國立中山大學學位論文典藏.PDF

國立中山大學學位論文典藏.PDF 國 立 中 山 大 學 企 業 管 理 學 系 碩 士 論 文 以 系 統 動 力 學 建 構 美 食 餐 廳 異 國 麵 坊 之 管 理 飛 行 模 擬 器 研 究 生 : 簡 蓮 因 撰 指 導 教 授 : 楊 碩 英 博 士 中 華 民 國 九 十 七 年 七 月 致 謝 詞 寫 作 論 文 的 過 程 是 一 段 充 滿 艱 辛 與 淚 水 感 動 與 窩 心 的 歷 程, 感 謝 這 一

More information

Cygwin & vim

Cygwin & vim Cygwin & vim Yu Hsiang Zheng (Slighten) Outline Shell Cygwin vim 1/21 What is a computer 2/21 What is a computer 拿 地 球 來 做 比 喻 的 話 kernel: 地 心 shell: 地 殼 application: 房 子 各 種 建 築 物 shell = command interpreter

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

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

Microsoft Word - 3D手册2.doc

Microsoft Word - 3D手册2.doc 第 一 章 BLOCK 前 处 理 本 章 纲 要 : 1. BLOCK 前 处 理 1.1. 创 建 新 作 业 1.2. 设 定 模 拟 控 制 参 数 1.3. 输 入 对 象 数 据 1.4. 视 图 操 作 1.5. 选 择 点 1.6. 其 他 显 示 窗 口 图 标 钮 1.7. 保 存 作 业 1.8. 退 出 DEFORMTM3D 1 1. BLOCK 前 处 理 1.1. 创 建

More information

coverage2.ppt

coverage2.ppt Satellite Tool Kit STK/Coverage STK 82 0715 010-68745117 1 Coverage Definition Figure of Merit 2 STK Basic Grid Assets Interval Description 3 Grid Global Latitude Bounds Longitude Lines Custom Regions

More information

Microsoft Word - Front cover_white.doc

Microsoft Word - Front cover_white.doc Real Time Programme 行 情 报 价 程 序 Seamico Securities Public Company Limited WWW.SEAMICO.COM Table of Content 目 录 开 始 使 用 开 始 使 用 Z Net 程 序 程 序 1 股 票 观 察 者 4 每 日 股 票 按 时 间 的 交 易 查 询 10 多 股 同 列 13 股 票 行 情

More information

HLA-B27軟體

HLA-B27軟體 HLA-B27 HLA-B27 CaliBRITE Beads FACSComp HLA-B27 Calibration Beads HLA-B27 HLA-B27 1. HLA-B27 1.1 HLA-B27 HLA Major Histocompatibity Complex MHC HLA HLA-A -B -C HLA HLA-D/DR -DP -DQ B HLA HLA HLA HLA-B27

More information

Panaboard Overlayer help

Panaboard Overlayer help Panaboard Overlayer Image Capture Software for Electronic Whiteboard (Panaboard) ... 3... 5... 6... 13...14 Panaboard Overlayer 1. 2. 3. 4. 4-1. 4-2. [ / ] ( ) 4-3. 5. 6. 6-1. 6-2. [ / ] ( ) 7. Panaboard

More information

本文由筱驀釹贡献

本文由筱驀釹贡献 本 文 由 筱 驀 釹 贡 献 ppt 文 档 可 能 在 WAP 端 浏 览 体 验 不 佳 建 议 您 优 先 选 择 TXT, 或 下 载 源 文 件 到 本 机 查 看 Linux 操 作 系 统 Linux 操 作 系 统 第 一 部 分 介 绍 与 安 装 Linux 的 由 来 : Linux 的 由 来 : 的 由 来 Linus Torvalds 1.Linux 的 版 本 1.Linux

More information

ebook70-5

ebook70-5 5 / 5.1 L i n u x L i n u x X L i n u x 5.1.1 touch t o u c h t o u c h G N U t o u c h # touch newfile # ls -l newfile - r w - r - - r - - 1 bball users 0 Jan 5 12 : 40 n e w f i l e t o u c h 0 # > newfile2

More information

Epson

Epson WH / MS CMP0087-00 TC WH/MS EPSON EPSON EXCEED YOUR VISION EXCEED YOUR VISION Seiko Corporation Microsoft and Windows are registered trademarks of Microsoft Corporation. Mac and Mac OS are registered trademarks

More information

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

Microsoft PowerPoint - Eisenstein_ABET_Presentation_Beijing_Oct_2007-Chinese.ppt [兼容模式]

Microsoft PowerPoint - Eisenstein_ABET_Presentation_Beijing_Oct_2007-Chinese.ppt [兼容模式] Bruce Eisenstein 博 士 是 Drexel 大 学 电 气 和 计 算 机 工 程 系 的 Arthur J. Rowland 教 授, 同 时 是 电 气 和 计 算 机 工 程 系 的 前 任 系 主 任 (1980-1995) 他 是 一 个 受 尊 敬 的 IEEE 的 领 导 者, 在 2000 年 担 任 IEEE 的 主 席 在 担 任 主 席 以 前,Eisenstein

More information

Chn 116 Neh.d.01.nis

Chn 116 Neh.d.01.nis 31 尼 希 米 书 尼 希 米 的 祷 告 以 下 是 哈 迦 利 亚 的 儿 子 尼 希 米 所 1 说 的 话 亚 达 薛 西 王 朝 二 十 年 基 斯 流 月 *, 我 住 在 京 城 书 珊 城 里 2 我 的 兄 弟 哈 拿 尼 和 其 他 一 些 人 从 犹 大 来 到 书 珊 城 我 向 他 们 打 听 那 些 劫 后 幸 存 的 犹 太 人 家 族 和 耶 路 撒 冷 的 情 形

More information

untitled

untitled Sansa Fuze TM MP3 1-866-SANDISK (726-3475) www.sandisk.com/techsupport www.sandisk.com/sansa Fuze-8UM-CHS ... 3... 4 Sansa Fuze TM... 6... 6... 7... 7 Sansa Fuze... 7... 8... 9... 9... 10... 11... 11...

More information

Action Research of Transforming Life Experiences Into a Story --Take Pottery Education at Da-Yun Primary School as an Example 27 1995 1 2 3 4 5 6 7 8 9 Abstract Action Research of transforming life experiences

More information

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更

錄...1 說...2 說 說...5 六 率 POST PAY PREPAY DEPOSIT 更 AX5000 Version 1.0 2006 年 9 錄...1 說...2 說...3...4 說...5 六...6 6.1 率...7 6.2 POST PAY...8 6.3 PREPAY DEPOSIT...9 6.4...10 6.5...11 更...12...12 LCD IC LED Flash 更 兩 RJ11 ( ) DC ON OFF ON 狀 狀 更 OFF 復 狀 說

More information

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 题 目 : 农 村 电 工 岗 位 培 训 考 核 与 鉴 定 ( 理 论 部 分 ) 的 计 算 机 远 程 考 试 系 统 ( 服 务 器 端 ) 的 开 发 与 实 现 英 文 题 目 :The Realization of Authenticating Examination System With Computer & Web for

More information

Table of Contents Design Concept 03 Copyrights & TradeMark 04 Special Notice 05 Notice to concerned 05 Installation and Registration Introduction 07 s

Table of Contents Design Concept 03 Copyrights & TradeMark 04 Special Notice 05 Notice to concerned 05 Installation and Registration Introduction 07 s MapAsia MapKing TM User Guide Full Function Version (Pocket PC and PC) For Microsoft Pocket PC/ Pocket PC 2002/2003 Microsoft Windows XP/2000/Me/98 Edition 2004 ( : ) 2002-2004, MapAsia.com Limited Table

More information

JCR... 3 JCR... 3 ISI Web of Knowledge... 4 Cross Search... 5 Cross Search... 5 Cross Search ISI Web of Knowledge WOS... 8 Externa

JCR... 3 JCR... 3 ISI Web of Knowledge... 4 Cross Search... 5 Cross Search... 5 Cross Search ISI Web of Knowledge WOS... 8 Externa Journal Citation Reports On the Web JCR... 3 JCR... 3 ISI Web of Knowledge... 4 Cross Search... 5 Cross Search... 5 Cross Search... 5... 7 ISI Web of Knowledge... 7... 8 WOS... 8 External Collections...

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 ( 文 學 所 ) 碩 士 論 文 論 文 題 目 ( 陳 千 武 小 說 活 著 回 來 及 其 相 關 事 例 研 究 ) 論 文 題 目 (Chen Chien Wu Return Alive And Some Research About It) 研 究 生 : 朱 妍 淩 指 導 教 授 : 林 葉 連 中 華 民 國 一 0 一 年 6 月 8 日 陳 千 武 小 說

More information

CH01.indd

CH01.indd 3D ios Android Windows 10 App Apple icloud Google Wi-Fi 4G 1 ( 3D ) 2 3 4 5 CPU / / 2 6 App UNIX OS X Windows Linux (ios Android Windows 8/8.1/10 BlackBerry OS) 7 ( ZigBee UWB) (IEEE 802.11/a/b/g/n/ad/ac

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

SDS 1.3

SDS 1.3 Applied Biosystems 7300 Real-Time PCR System (With RQ Study) SDS 1.3 I. ~ I. 1. : Dell GX280 2.8GHz with Dell 17 Flat monitor 256 MB RAM 40 GB hard drive DVD-RW drive Microsoft Windows XP Operating System

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