Besonderhede van voorbeeld: 6454178459750420860

Metadata

Author: WikiMatrix

Data

English[en]
To duplicate the first two sectors of a floppy drive: dd if=/dev/fd0 of=MBRboot.img bs=512 count=2 To create an image of the entire x86 master boot record (including a MS-DOS partition table and MBR magic bytes): dd if=/dev/sda of=MBR.img bs=512 count=1 To create an image of only the boot code of the master boot record (without the partition table and without the magic bytes required for booting): dd if=/dev/sda of=MBR_boot.img bs=446 count=1 dd can modify data in place.
Korean[ko]
플로피 드라이브의 처음 두 개의 섹터를 복제: dd if=/dev/fd0 of=MBRboot.img bs=512 count=2 완전한 x86 마스터 부트 레코드의 이미지 만들기 (MS-DOS 파티션, MBR 매직 바이트 포함): dd if=/dev/sda of=MBR.img bs=512 count=1 마스터 부트 레코드의 부트 코드만의 이미지 만들기 (파티션 테이블 없이, 또 부팅 시 필요한 매직 바이트 없이): dd if=/dev/sda of=MBR_boot.img bs=446 count=1 dd는 특정 자리의 데이터를 수정할 수 있다.

History

Your action: