BSD 원시 디스크
BSD에는 일반적으로 2 개의 디스크 장치 유형이 있습니다 : bufferend 및 unbuffered (raw). 로부터 hdutil(1)
매뉴얼 페이지
DEVICE SPECIAL FILES
Since any /dev entry can be treated as a raw disk image, it is worth
noting which devices can be accessed when and how. /dev/rdisk nodes
are character-special devices, but are "raw" in the BSD sense and
force block-aligned I/O. They are closer to the physical disk than
the buffer cache. /dev/disk nodes, on the other hand, are buffered
block-special devices and are used primarily by the kernel's
filesystem code.
It is not possible to read from a /dev/disk node while a filesystem
is mounted from it, ...
두 번째 단락으로 인해 "원시 모드"에서 디스크 를 사용할 수 있도록 디스크를 마운트 해제 해야합니다 dd
.
dd 블록 크기
에서 dd(1)
매뉴얼 페이지
Where sizes are specified, a decimal, octal, or hexadecimal number of bytes
is expected. If the number ends with a ``b'', ``k'', ``m'', ``g'', or ``w'',
the number is multiplied by 512, 1024 (1K), 1048576 (1M), 1073741824 (1G) or
the number of bytes in an integer, respectively. Two or more numbers may be
separated by an ``x'' to indicate a product.
기본 블록 크기는 512 바이트입니다.
bs
매개 변수 없이 느리게 갈 것으로 기대합니다 .dd
리눅스 에서 설정을 위한 별칭이alias
있습니까 (프롬프트에 입력 )?