While it’s possible that misaligned partition boundaries can cause some grief, it’s usually of more concern if it happens to be your / (root) partition.
In this case, partition 3 (/dev/sda3) is your swap space, which has no filesystem, and loss of data from that partition is of no real concern.
You could simply ignore it; the caveat being that (if left unattended) the misalignment might potentially affect swap performance; though, I imagine this would be of greater concern if your machine was under continuous load; such as a server system, for example.
You can also remove the allocated swap space and recreate it using mkswap. When completed, you should ensure that /etc/fstab references the UUID of the newly created swap space.
No, but you can. If you want to, switch swap off, reboot, delete the partition and make a new properly aligned partition. Then you can switch swap on, again (That’s what I would do).
Thanks to everyone, full disclosure I recently had a stroke and now I have Aphasia.
Meaning I now have difficulties with comprehension but my Neurologist has told me to continue with linux as it may help in my recovery.
sudo gdisk -l /dev/sda
Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 250069680 sectors, 119.2 GiB
Model: TOSHIBA THNSNK12
Sector size (logical/physical): 512/4096 bytes
Disk identifier (GUID): 26F37EEC-7E95-4B4A-BC8A-3D4E315B0E1E
Partition table holds up to 128 entries
Main partition table begins at sector 2 and ends at sector 33
First usable sector is 2048, last usable sector is 250069646
Partitions will be aligned on 4-sector boundaries
Total free space is 3905 sectors (1.9 MiB)
Number Start (sector) End (sector) Size Code Name
1 4096 618495 300.0 MiB EF00
2 618496 231612851 110.1 GiB 8300 root
3 231612852 250067789 8.8 GiB 8200
This information suggests I need to increase /dev/sda3 end sector 250069646 - 250067789 by 1857.
If this correct, how do I do it?
I am sure the answer is here A gdisk Walkthrough
but all I’ve got is a migraine.