I somehow messed up my partitions when I was trying to clean reinstall Linux Mint. Now whenever I type sudo fdisk -l, it would always give me warnings:
$ sudo fdisk -l
[sudo] password for sneknotsnake:
Disk /dev/sda: 465,78 GiB, 500107862016 bytes, 976773168 sectors
Disk model: ST500DM009-2DM14
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0xdb92a920
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 104447 102400 50M 7 HPFS/NTFS/exFAT
/dev/sda2 104448 72919039 72814592 34,7G 7 HPFS/NTFS/exFAT
/dev/sda3 72921086 598581903 525660818 250,7G f W95 Ext'd (LBA)
/dev/sda4 598581904 976773119 378191216 180,3G 7 HPFS/NTFS/exFAT
/dev/sda5 72921088 219478015 146556928 69,9G 83 Linux
/dev/sda6 219480032 598581903 379101872 180,8G 7 HPFS/NTFS/exFAT
Partition 3 does not start on physical sector boundary.
Partition table entries are not in disk order.
AFAIK of my problem, it's because I'm using the "newer" HDD format that uses 4096 instead of the old 512 and my 3rd partition is not perfectly aligned. I'm not really sure, but I think it's because 72921086 % 8 equal 6 instead of 0 like the other partitions (72921086 is from /dev/sda3)
If that really is the case, then how do I realign my 3rd partition? Note that it's a container partition (IDK what it's called) for my 5th and 6th partitions. If I'm not mistaken, I only need to move the start sector by 6 so that it's perfectly aligned.