I recently bought a 1TB Crucial X6 USB portable SSD. I wonder if it is safe to delete the reserved partition of of 128MB (MiB, binary MB). I'm worried that it is reserved as spare sectors/blocks to replace any bad blocks that develop over time, and therefore that deleting the partition and reusing the space will screw up the drive. Would be great of anyone knows exactly what is the purpose of this partition. I have searched extensively for answers already.
Background: I would like to install the Ventoy iso-booting system, which requires free space below 1024kB, and hence conflicts with the reserved partition, as can be seen from the partition table:
gdisk -l /dev/ssd; shows
Model: Micron CT1000X6SSD9 (scsi)
Disk /dev/sdd: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags:
Device Start End Sectors Size Type
/dev/sdd1 34 262177 262144 128M Microsoft reserved
/dev/sdd2 264192 1953523711 1953259520 931.4G Microsoft basic data
parted /dev/sdd p; shows
Disk /dev/sdd: 931.53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk model: CT1000X6SSD9
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 4096 bytes / 33553920 bytes
Disklabel type: gpt
Disk identifier: 7810458B-386A-4170-9CF0-07C53C41FB26
Number Start End Size File system Name Flags
1 17.4kB 134MB 134MB Microsoft reserved partition msftres
2 135MB 1000GB 1000GB Basic data partition msftdata
By the way, I used od -a /dev/sdd1 | more; and od -a -j 127M /dev/sdd1 | tail -100; to confirm that the data in sdd1 is just endless repetitions of ASCII values 0-127. No real data there on a new drive, at least.
