img
다음 명령을 통해 파일을 만들었습니다 .
dd if=/dev/zero bs=2M count=200 > binary.img
0이있는 파일 일뿐이지만 파일을 fdisk
사용하여 파티션 테이블을 만들 수 있습니다 .
# fdisk binary.img
Device does not contain a recognized partition table.
Created a new DOS disklabel with disk identifier 0x51707f21.
Command (m for help): p
Disk binary.img: 400 MiB, 419430400 bytes, 819200 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x51707f21
그리고 하나의 파티션으로 가정 해 봅시다.
Command (m for help): n
Partition type
p primary (0 primary, 0 extended, 4 free)
e extended (container for logical partitions)
Select (default p): p
Partition number (1-4, default 1):
First sector (2048-819199, default 2048):
Last sector, +sectors or +size{K,M,G,T,P} (2048-819199, default 819199):
Created a new partition 1 of type 'Linux' and of size 399 MiB.
Command (m for help): w
The partition table has been altered.
Syncing disks.
파티션 테이블을 확인하면 다음과 같은 결과가 나타납니다.
Command (m for help): p
Disk binary.img: 400 MiB, 419430400 bytes, 819200 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x7f3a8a6a
Device Boot Start End Sectors Size Id Type
binary.img1 2048 819199 817152 399M 83 Linux
따라서 파티션이 존재합니다. gparted를 통해이 파티션을 포맷하려고하면 다음 오류가 발생합니다.
왜 그것을 찾는 지 모르겠으며 binary.img1
, 명령 라이브에서 파티션을 포맷하는 방법을 모릅니다.
누구나 ext4 파일 시스템을 사용하여 형식을 지정하는 방법을 알고 있습니까?
Couldn't find valid filesystem superblock.
입니다. 사진은 다음과 같습니다. i.imgur.com/dl7XAC4.png . 이것이 일종의 버그입니까?