부록: 이미지가 콘텐츠보다 얼마나 큰지 계산하는 방법
알려진 크기의 파일을 저장하기 위해 FAT 형식의 디스크 이미지를 만드는 중입니다. 이 경우 1GiB 파일입니다. 예를 들어: # Create a file that's 1 GiB in size. dd if=/dev/zero iflag=count_bytes of=./large-file bs=1M count=1G # Measure file size in KiB. LARGE_FILE_SIZE_KIB="$(du --summarize --block-size=1024 large-file | cut --field...