나는 fdisk 와 mkfs 에 대해 약간 혼란스러워한다 .
일반적인 USB 플래시 드라이브 파티션 및 포맷은 다음과 같습니다.
umount /dev/sdb
fdisk fdisk /dev/sdb
Command (m for help): d
Selected partition 1
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-960, default 1): ↵
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-960, default 960): ↵
Using default value 960
Command (m for help): t
Selected partition 1
Hex code (type L to list codes): 6
Changed system type of partition 1 to 6 (FAT16)
Command (m for help): a
Partition number (1-4): 1
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
WARNING: If you have created or modified any DOS 6.x
partitions, please see the fdisk manual page for additional
information.
mkfs -t vfat /dev/sdb1
내 질문은 :
fdisk 단계 를 수행하는 동안 t 옵션을 사용하여 파티션 유형을 지정 해야하는 이유는 무엇 입니까? 모든 것에 어떤 영향을 미칩니 까? USB 드라이브에 vfat 파티션 만 있어야한다는 표시를합니까? 아니면 t 단계를 완전히 건너 뛰는 것이 안전 합니까? AFAIK-파티셔닝은 디스크를 여러 영역으로 만 나눕니다. 그렇지 않습니까?
왜 그것이 작동하는 방식인지 이해하려고 노력 중입니다.)