ฉันเล็ก ๆ น้อย ๆ สับสนเกี่ยวกับ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
คำถามของฉันคือ:
เหตุใดเราจึงต้องใช้ตัวเลือกtเพื่อระบุประเภทพาร์ติชันขณะทำขั้นตอนfdisk มันส่งผลกระทบต่อทุกสิ่งอย่างไร มันสร้างเครื่องหมายบนไดรฟ์ usb ซึ่งหมายความว่าควรจะเป็นพาร์ติชัน vfat เท่านั้นหรือไม่ หรือมันมีความปลอดภัยที่จะข้ามเสื้อขั้นตอนทั้งหมด? AFAIK - การแบ่งพาร์ติชันเป็นเพียงการแยกดิสก์ออกเป็นส่วน ๆ - ไม่ใช่หรือ?
แค่พยายามที่จะเข้าใจว่าทำไมมันถึงทำงานได้ดี :)