포맷하는 데 사용하는 USB 드라이브가 있습니다.
sudo mkfs.vfat -I /dev/sdb1
그런 다음 USB 드라이브의 크기를 확인했을 때 df -h
실제로는 8GB여야 할 크기가 64MB로 보고되었습니다. 내가 뭘 잘못했나요?
fdisk -l /dev/sdb1
주어진
Disk /dev/sdb1: 67 MB, 67108864 bytes
241 heads, 62 sectors/track, 8 cylinders, total 131072 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
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
답변1
그것은해야한다 mkfs.vfat -I /dev/sdb
. sdb1
여러 개의 파티션이 있을 수 있으며 첫 번째 파티션(64MiB)을 포맷하고 있음을 나타냅니다.