ae2510nt报警监视定时器(TF转塔)是什么意思? 阿玛达ae2510冲床指令
AMADA数控冲床的EM2510NT中,2510分别代表什么?
AMADA 2510 : 2/5/10分三个部分, 2代表吨位20吨, 5代表X轴的加工范围50X25.4㎜(1英寸)=1270㎜, 10代表Y轴的加工范围 100X25.4(1英寸)=2540㎜. 以上是不移动夹钳的加工范围
AMADA 255 : 2/5/5分三个部分, 2代表吨位20吨, 5代表X轴的加工范围50X2.54(1英寸)=1270㎜, 50X2.54(1英寸)=1270㎜. 以上是不移动夹钳的加工范围
3510等其它冲床意思类推,以上信息个人猜测,但是很有道理,不喜勿喷,希望能给你带来帮助。
这个提示框是什么意思?求详细解答。
这是个DOS命令程序运行的窗口.
现在的窗口是:
ntsd使用手册
ntsd(microsoft windows nt symbolic/systems debugger)是windows 2000默认安装的一
个调试器。这其实是一个命令行版本的windbg,功能上稍微缩了一点水,但是对一般的调试
来说是足够用了。这个东西好就好在凡是windows 2000都有,
而且只要开个终端服务或者vnc 就可以远程用。最近看溢出的东西,觉得这个有时候确实比
softice方便,特别是在别人机器上调的时候:-)。我翻译了ntsd的大部分帮助,有些不知道
该怎么翻译,有些是懒,就没翻了。ntsd还支持一些帮助中没提到的命令,也在后面列出来
了。
usage: ntsd [-v] [-2] [-d] [-o] [-g] [-g] [-w] [-lines]
[-adllname] [-s] [-r breakerrorlevel] [-t printerrorlevel]
[-hd] [-x | -xd [except#] | -xe [except#]] [-e] [-z]
[-- | -p pid | command-line]
where: -? displays this help text
-adllname sets the default extension dll
-c executes the following debugger command
指定要执行的调试命令,多个命令之间用“;”分隔
-d sends all debugger output to kernel debugger via dbgprint
-g ignores initial breakpoint in debuggee
-g ignores final breakpoint at process termination
-hd disables heap manager validity checking
-i ignores av generated by loader fixups on pre3.51 systems
-lines requests that line number information be used if present
-netsyms:{yes|no} allow or disallow loading symbols from a network path
-o debugs all processes launched by debuggee
-r specifies the (0-3) error level to break on (seeseterrorlevel)
-s disables lazy symbol loading
-t specifies the (0-3) error level to display (seeseterrorlevel)
-v enables verbose output from debugger
-n enables verbose output from symbol handler
-w specifies to debug 16 bit applications in a separate vdm
-x disables break on av exceptions
-xd disables stopping on specified exception
-xe enables stopping on specified exception
-z reserved for os/2 debugging
-2 creates a separate console window for debuggee
对于控制台程序,将输出定向到另一个窗口而不在ntsd窗口显示
-- is the same as -g -g -o -p -1
-p pid specifies the decimal process id to attach to
指定要调试的进程号,用于调试已经运行的程序
command-line is the command to run under the debugger
environment variables:
_nt_symbol_path=[drive:][path]
specify symbol image path. (default = %systemroot%)
_nt_alt_symbol_path=[drive:][path]
specify an alternate symbol image path.
_nt_debug_extensions=dllname(s)
if specified, it is a semi-colon separated list of debugger extension dll names
this specifies the search order when resolving debugger extension commands
a [] - assemble
在指定地址输入汇编语句
bc[] - clear breakpoint(s)
清除断点
bd[] - disable breakpoint(s)
禁用断点
be[] - enable breakpoint(s)
启用断点
bl[] - list breakpoint(s)
列出断点
bp[#] - set breakpoint
设断点
c - compare
比较地址
d[type][] - dump memory
显示指定内存范围
e[type] [] - enter
在指定地址输入数据
f - fill
在指定内存段填充数据
g [= [...]] - go
运行到某个地址
j [']cmd1['];[']cmd2['] - conditional execution
条件执行
k[b] - stacktrace
堆栈回溯
kb = - stacktrace from specific state
l{+|-}[lost*] - control source options
ln - list near
参数为地址或者函数,显示距离参数中指定地址或者函数最近的函数
ls[.] [][,] - list source file lines
lsa [,][,] - list source file lines at addr
lsc - show current source file and line
lsf[-] - load or unload a source file for browsing
m - move
n [] - set / show radix
p[r] [=] [] - program step
单步执行
q - quit
#r - multiprocessor register dump
多处理器环境下显示寄存器
r[f][l][m ] [[ [= ]]] - reg/flag
显示寄存器
rm[?] [] - control prompt register output mask
s - search
在指定地址范围内搜寻字符串
0:000> s 77df0000 77e4c000 ff e4 //从user32的空间中找jmp esp
77e22c29
0:000> s 77df0000 77e4c000 'w' 'i' 'n' 'n' 't' //搜索字符串“winnt”
ss - set symbol suffix
sx [e|d [|*|]] - exception
t[r] [=] [] - trace
u [] - unassemble
显示反汇编语句,同softice的u命令
x [<*|module>!]<*|symbol> - view symbols
显示符号,支持通配符,类似于softice的exp命令
0:000> x user32!* //显示user32的所有符号
…………
0:000> x user32!ws* //显示user32的所有以ws开头的符号
77dffa68 user32!wsprintfw
77e0014a user32!wsprintfa
.logopen [] - open new log file
指定日志文件,开启屏幕记录非常有用的功能
.logappend [] - append to log file
添加到已存在的日志文件
.logclose - close log file
停止记录
~ - list threads status
显示线程状态
~#s - set default thread
设置默认线程
~[.|#|*|ddd]f - freeze thread
~[.|#|ddd]k[expr] - backtrace stack
堆栈追踪
| - list processes status
显示进程状态
|#s - set default process
设置默认进程
|# - default process override
? - display expression
显示地址或者符号信息
0:000> ? wsprintfa
evaluate expression: 2011169098 = 77e0014a
0:000> ? eip
evaluate expression: 2012813324 = 77f9180c
# [address] - search for a string in the dissasembly
反汇编指定地址,但是只输出一行语句
$< - take input from a command file
从文件取得要输入的命令
ops: + - * / not by wo dw poi mod(%) and(&) xor(^) or(|) hi low
operands: number in current radix, public symbol,
: b (byte), w (word), d[s] (doubleword [with symbols]),
a (ascii), c (dword and char), u (unicode), l (list)
f (float), d (double), s|s (ascii/unicode string)
q (quadword)
: [(nt | )!] ( can include ? and *)
: ct, et, ld, av, cc
: 8, 10, 16
: $u0-$u9, $ea, $exp, $ra, $p
: %<32-bit address>
:
: l
: [ ...]
user-mode options:
i386 options:
ba[#] <1|2|4> - addr bp
: [e]ax, [e]bx, [e]cx, [e]dx, [e]si, [e]di, [e]bp, [e]sp, [e]ip, [e]fl,
al, ah, bl, bh, cl, ch, dl, dh, cs, ds, es, fs, gs, ss
fpcw, fpsw, fptw, st0-st7, mm0-mm7
: iopl, of, df, if, tf, sf, zf, af, pf, cf
: #<16-bit protect-mode [seg:]address>,
&
ntsd还支持一些很有用的命令,但是不知为什么帮助中却没有提,这里也列出来:
kd [] - stack trace with raw data
raw模式堆栈回溯
sq - set quiet mode
设置安静模式,运行一次打开,再运行则关闭
ld [] - refresh module information
重新载入
lm list modules
列出进程加载的所有模块信息
dl[b] - dump linked list
ntsd支持的表达式和windbg差不多是一样的,masm的语法。
系统自带的ntsd也支持部分扩展命令,如:
!peb
!teb
ntsd.exe进程信息
进程文件:ntsd.exe
进程名称:ntsd
描述:ntsd.exe是windows结束进程的工具。
出品者: microsoft
属于:windows
系统进程: 否
后台程序: 否
使用网络: 否
硬件相关: 否
常见错误: 是
内存使用: 是
安全等级 (0-5): 0
间谍软件: 否
广告软件: 否
病毒: 否
木马: 否