备份硬盘引导记录的方法
程序员文章站
2022-03-22 09:57:40
为防止病毒对硬盘的侵袭或其它误操作,备份硬盘引导记录是一有效方法。若手头没有现成的工具软件(如srctools,一个很好用的工具,可在本站的“磁盘工具”中下载,其具体使用方...
为防止病毒对硬盘的侵袭或其它误操作,备份硬盘引导记录是一有效方法。若手头没有现成的工具软件(如srctools,一个很好用的工具,可在本站的“磁盘工具”中下载,其具体使用方法请见本站“dos文章”栏目中介绍它的文章),可用debug实现。现介绍备份及写硬盘主引导记录的方法。
备份主引导记录的方法是:
debug(回车)
-a 100
xxxx:0100 mov ax,201
xxxx:0103 mov bx,200
xxxx:0106 mov cx,1
xxxx:0109 mov dx,80
xxxx:010c int 13
xxxx:010e int 3
xxxx:010f
-g=100
-r cx
cx 0001:200
-n boot.zyd
-w 200
-q
备份dos分区引导记录的方法是:
debug(回车)
-l 100 201
-n boot.dos
-r cx
cx 0001:200
-w 100
-q
写硬盘主引导记录的方法是:
debug(回车)
-n boot.zyd
-l 200
-a 100
xxxx:0100 mov ax,301
xxxx:0103 mov bx,200
xxxx:0106 mov cx,1
xxxx:0109 mov dx,80
xxxx:010c int 13
xxxx:010e int 3
xxxx:010f
-g=100
-q
写dos分区引导记录的方法是:
debug(回车)
-n boot.dos
-l 100
-w 100 201
-q
此方法既能修复硬盘又不丢失文件,可见备份硬盘主引导记录与dos分区引导记录是非常方便和必要的。
备份主引导记录的方法是:
debug(回车)
-a 100
xxxx:0100 mov ax,201
xxxx:0103 mov bx,200
xxxx:0106 mov cx,1
xxxx:0109 mov dx,80
xxxx:010c int 13
xxxx:010e int 3
xxxx:010f
-g=100
-r cx
cx 0001:200
-n boot.zyd
-w 200
-q
备份dos分区引导记录的方法是:
debug(回车)
-l 100 201
-n boot.dos
-r cx
cx 0001:200
-w 100
-q
写硬盘主引导记录的方法是:
debug(回车)
-n boot.zyd
-l 200
-a 100
xxxx:0100 mov ax,301
xxxx:0103 mov bx,200
xxxx:0106 mov cx,1
xxxx:0109 mov dx,80
xxxx:010c int 13
xxxx:010e int 3
xxxx:010f
-g=100
-q
写dos分区引导记录的方法是:
debug(回车)
-n boot.dos
-l 100
-w 100 201
-q
此方法既能修复硬盘又不丢失文件,可见备份硬盘主引导记录与dos分区引导记录是非常方便和必要的。