Linux에서 dd 명령 사용에 대한 튜토리얼

黄舟
풀어 주다: 2017-05-28 11:42:33
원래의
2262명이 탐색했습니다.

dd 명령은 지정된 크기의 블록을 사용하여 파일을 복사하고 복사하는 동안 지정된 변환을 수행합니다. 다음 기사에서는 Linux에서 dd 명령 사용에 대한 관련 정보를 주로 소개합니다. 이는 모든 사람을 위한 특정 참조 및 학습 가치가 있습니다. 아래에서 살펴보세요.

이 기사는 주로 Linux에서 dd 명령 사용에 대한 관련 내용을 소개합니다. 자세한 소개를 살펴보겠습니다.

1. 지정된 크기의 블록을 사용하여 파일을 복사하고, 복사하는 동안 지정된 변환을 수행합니다.

사용법: dd [OPERAND]dd [OPERAND]

参数注释

 bs=BYTES  read and write BYTES bytes at a time (also see ibs=,obs=)
 cbs=BYTES  convert BYTES bytes at a time
 conv=CONVS  convert the file as per the comma separated symbol list
 count=N   copy only N input blocks
 ibs=BYTES  read BYTES bytes at a time (default: 512)
 if=FILE   read from FILE instead of stdin(默认为标准输入)
 iflag=FLAGS  read as per the comma separated symbol list
 obs=BYTES  write BYTES bytes at a time (default: 512)
 of=FILE   write to FILE instead of stdout(默认为标准输出)
 oflag=FLAGS  write as per the comma separated symbol list
 seek=BLOCKS  skip BLOCKS obs-sized blocks at start of output
 skip=BLOCKS  skip BLOCKS ibs-sized blocks at start of input
 status=WHICH WHICH info to suppress outputting to stderr;
     'noxfer' suppresses transfer stats, 'none' suppresses all
로그인 후 복사

CONVS的可选参数

 ascii  from EBCDIC to ASCII
 ebcdic from ASCII to EBCDIC
 ibm  from ASCII to alternate EBCDIC
 block  pad newline-terminated records with spaces to cbs-size
 unblock replace trailing spaces in cbs-size records with newline
 lcase  change upper case to lower case
 nocreat do not create the output file
 excl  fail if the output file already exists
 notrunc do not truncate the output file
 ucase  change lower case to upper case
 sparse try to seek rather than write the output for NUL input blocks
 swab  swap every pair of input bytes
 noerror continue after read errors
 sync  pad every input block with NULs to ibs-size; when used
   with block or unblock, pad with spaces rather than NULs
 fdatasync physically write output file data before finishing
 fsync  likewise, but also write metadata
로그인 후 복사

FLAGS的可选参数

 append append mode (makes sense only for output; conv=notrunc suggested)
 direct use direct I/O for data
 directory fail unless a directory
 dsync  use synchronized I/O for data
 sync  likewise, but also for metadata
 fullblock accumulate full blocks of input (iflag only)
 nonblock use non-blocking I/O
 noatime do not update access time
 noctty do not assign controlling terminal from file
 nofollow do not follow symlinks
 count_bytes treat 'count=N' as a byte count (iflag only)
로그인 후 복사

注意:指定数字的地方若以下列字符结尾,则乘以相应的数字:

c =1, w =2, b =512, kB =1000, K =1024, MB =1000*1000, M =1024*1024, xM =M

GB =1000*1000*1000, G =1024*1024*1024, and so on for T, P, E, Z, Y
로그인 후 복사

二、使用实例

1、将本地的/dev/hdb整盘备份到/dev/hdd

dd if=/dev/hdb of=/dev/hdd
로그인 후 복사

2、将/dev/hdb全盘数据备份到指定路径的image文件

dd if=/dev/hdb of=/root/image
로그인 후 복사

3、备份/dev/hdb全盘数据,并利用gzip工具进行压缩,保存到指定路径

dd if=/dev/hdb | gzip > /root/image.gz
로그인 후 복사

4、把一个文件拆分为3个文件

#文件大小为2.3k
[Oracle@rhel6 ~]$ ll db1_db_links.sql 
-rw-r--r-- 1 oracle oinstall 2344 Nov 21 10:39 db1_db_links.sql
#把这个文件拆成每个文件1k,bs=1k,count=1,使用skip参数指定在输入文件中跳过多少个bs支读取
[oracle@rhel6 ~]$ dd if=db1_db_links.sql of=dd01.sql bs=1k count=1
1+0 records in
1+0 records out
1024 bytes (1.0 kB) copied, 4.5536e-05 s, 22.5 MB/s
[oracle@rhel6 ~]$ dd if=db1_db_links.sql of=dd02.sql bs=1k count=1 skip=1
1+0 records in
1+0 records out
1024 bytes (1.0 kB) copied, 0.000146387 s, 7.0 MB/s
[oracle@rhel6 ~]$ dd if=db1_db_links.sql of=dd03.sql bs=1k count=1 skip=2
0+1 records in
0+1 records out
296 bytes (296 B) copied, 0.000204216 s, 1.4 MB/s
#拆分出的文件
[oracle@rhel6 ~]$ ll dd*sql
-rw-r--r-- 1 oracle oinstall 1024 May 20 14:58 dd01.sql
-rw-r--r-- 1 oracle oinstall 1024 May 20 14:58 dd02.sql
-rw-r--r-- 1 oracle oinstall 296 May 20 14:58 dd03.sql
로그인 후 복사

5、把拆分出的文件合并为1个

#合并操作,此时用到seek参数,用于指定在输入文件中跳过的bs数
[oracle@rhel6 ~]$ dd of=1.sql if=dd01.sql 
2+0 records in
2+0 records out
1024 bytes (1.0 kB) copied, 0.000176 s, 5.8 MB/s
[oracle@rhel6 ~]$ dd of=1.sql if=dd02.sql bs=1k seek=1
1+0 records in
1+0 records out
1024 bytes (1.0 kB) copied, 0.000124038 s, 8.3 MB/s
[oracle@rhel6 ~]$ dd of=1.sql if=dd03.sql bs=1k seek=2
0+1 records in
0+1 records out
296 bytes (296 B) copied, 0.00203881 s, 145 kB/s
#与拆分前的文件进行校验
[oracle@rhel6 ~]$ diff 1.sql db1_db_links.sql
[oracle@rhel6 ~]$
로그인 후 복사

6、在输出文件中指定的位置插入数据,而不截断输出文件

需要使用conv=notrunc

매개변수댓글 :

CONVS🎜🎜rrreee🎜🎜옵션 매개변수 FLAGS🎜🎜rrreee🎜🎜참고: 🎜🎜다음 문자를 사용하여 숫자를 지정하는 경우 마지막에 해당 숫자를 곱합니다: 🎜rrreee🎜🎜🎜2. 사용 예🎜🎜🎜🎜🎜1. 전체 로컬 /dev/hdb 디스크를 /dev/hdd🎜🎜rrreee🎜🎜로 백업합니다. /hdb의 전체 디스크 데이터를 지정된 경로🎜🎜rrreee🎜🎜의 이미지 파일에 백업합니다. 3. /dev/hdb의 전체 디스크 데이터를 백업하고 gzip🎜 도구를 사용하여 압축하여 지정된 경로🎜🎜rrreee🎜🎜4. 파일을 3개의 파일로 분할🎜🎜rrreee🎜🎜5. 분할된 파일을 병합합니다. 1🎜 🎜rrreee🎜🎜6. 출력 파일 의 지정된 위치에 데이터🎜를 자르지 않고 삽입합니다. 출력 파일🎜 🎜🎜conv=notrunc 매개변수를 사용해야 합니다🎜rrreee🎜🎜🎜요약🎜🎜🎜

위 내용은 Linux에서 dd 명령 사용에 대한 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!