aix dd命令

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

dd命令功能很强大的,对于一些比较底层的问题,使用dd命令往往可以得到出人意料的效果。用的比较多的还是用dd来备份裸设备。但是不推荐,如果需要备份oracle裸设备,可以使用rman备份,或使用第三方软件备份,使用dd的话,管理起来不太方便。

建议在有需要的时候使用dd 对物理磁盘操作,如果是文件系统的话还是使用tar backup cpio等其他命令更加方便。

另外,使用dd对磁盘操作时,最好使用块设备文件。

Description

The dd command reads the InFile parameter or standard input, does the

specified conversions, then copies the converted data to the OutFile

parameter or standard output. The input and output block size can be

specified to take advantage of raw physical I/O. Note: The term Block

refers to the quantity of data read or written by the dd command in one

operation and is not necessarily the same size as a disk block.

if=file 输入文件名标准输入确省

of=file 输出文件名,标准输出确省

ibs=n 输入块大小,n字节(默认512)

obs=n 输出块大小,n字节(默认512)

bs=n 同时设置输入输出块大小

cbs=n 转换缓冲区大小

files=n 在中断之前拷贝和转换n个输入文件

skip=n 拷贝之前越过n个输入块

oseek=n 拷贝之前从输出文件开始查找n个块

iseek 拷贝之前从输入文件开始查找n个块

seek=n 等同于oseek

cono=ascic 将EBCDIC码转换为ASCII

ebcdic ASCII->;EBCDIC

ibm ASCII转换为EBCDIC码时轻微不同的映象

blolk 将新栈中断的ASCII码记录转换为固定长度

unblock 将固定长度的ASCII码记录转换为新行中断记录

lcase 变换字将至低等情况

ucase 变换字将至高等情况

swab 交换每对字节

noerrir 出错时不停止处理

sync 将每个块填充到ibs

输入设备:infile参数指定或标准输入

实施指定的转换,然后复制转换数据到outfile 参数指定或标准输出。

输入块和输出块大小可以自己指定,但必须是磁盘物理块大小的倍数。

1 Usually, you need only write access to the output file. However,

when the output file is not on a direct-access device and you use

the seek flag, you also need read access to the file.

2 The dd command inserts new-line characters only when converting

with the conv=ascii or conv=unblock flags set; it pads only when

converting with the conv=ebcdic, conv=ibm, or conv=block flags

set.

3 Use the backup, tar, or cpio command instead of the dd command

whenever possible to copy files to tape. These commands are

designed for use with tape devices. For more information on using tape devices, see the rmt special file.

4 The block size values specified with the bs, ibs and obs flags

must always be a multiple of the physical block size for the media

being used.

参数说明:

bs=BlockSize

Specifies both the input and output block size, superseding the

ibs and obs flags. The block size values specified with the bs

flag must always be a multiple of the physical block size for the

media being used.

同时指定输入输出块大小,代替ibs和obs参数,块大小必须是物理块的倍数。

cbs=BlockSize

Specifies the conversion block size for variable-length to fixed-

length and fixed-length to variable-length conversions, such as

conv=block.

用于转换缓冲区大小

count=InputBlocks

Copies only the number of input blocks specified by the

InputBlocks variable.

只复制由count参数指定数量的输入块

conv= Conversion,....

相关文档
最新文档