dd 명령어는 디스크 자체를 덤프 받는 명령어로
디스크를 다른 디스크 또는 이미지로 사용이 가능하다.
[root@localhost Fri]# for i in etc boot root home |
1) 일반적인 파일 복사
[root@localhost test]# dd if=/bin/ls of=ls2 |
2) 1바이트 파일 생성
[root@localhost test]# dd if=/dev/zero of=zero2 bs=1 count=1 |
2) 10바이트 파일 생성
[root@localhost test]# dd if=/dev/zero of=zero2 bs=10 count=1 |
3) 파티션 이미지 생성
[root@localhost test]# dd if=/dev/sda1 of=boot.img bs=1024 |
4) 파티션 이미지 마운트
[root@localhost test]# mount -o loop boot.img /bootdir |
[일반 마운트와 다르게 -o loop 옵션을 붙여줘야 한다=>일반파일의 마운트 가능]
'System > Linux' 카테고리의 다른 글
glusterfs3.5 설치 (0) | 2015.05.27 |
---|---|
zlib install(1.2.8) (0) | 2015.05.27 |
브릿지 방화벽 구축 (0) | 2013.02.09 |
arpspoof 과 해결책 (0) | 2013.02.09 |
Centos 4.x 계열의 yum 실행 오류시 해결책 (0) | 2013.02.09 |