I've just installed Ubuntu on a new SSD along with a HDD for data.
Strangely, when I divided partitions at install, 1MB of non-removable free space was reserved at the beginning of each disk. I ignored them however, because I thought they wouldn't be a problem.
But after install, when I sudo fdisk -l
, I get the following warnings:
WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sda: 128.0 GB, 128035676160 bytes
255 heads, 63 sectors/track, 15566 cylinders, total 250069680 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 1 250069679 125034839+ ee GPT
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sdb: 4000.8 GB, 4000787030016 bytes
255 heads, 63 sectors/track, 486401 cylinders, total 7814037168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 1 4294967295 2147483647+ ee GPT
Partition 1 does not start on physical sector boundary.
I have little knowledge on GPT/GUIDs, but I'm guessing that the warnings were caused because of the 1MBs at the installation stage.
So here are my questions:
- Can the warning be a potential problem, issue or difficulty in the future?
- Is there a smart & safe way to fix the warning?
fdisk
about/dev/sdb
says:Partition 1 does not start on physical sector boundary.
, so maybe reformatting that disk according to the 4096B physical size and I/O size would be suggested. – kos Jul 24 '15 at 06:24fdisk
says about GPT drives; it does not support them and hence it does not understand them properly. That isn't an actual partition it's seeing, because it cannot actually see the partitions on a GPT drive. For actual information about partitions, use parted instead (or gparted, or whatever). – thomasrutter Jul 24 '15 at 06:32fdisk
would have complained about the first disk as well), and 1MiB is divisible by 4096, so it would be starting on the sector boundary even if the sector size would have actually been 4096B. – kos Jul 24 '15 at 06:42parted
rather thanfdisk
. Thanks for the clear explanation! – e9t Jul 24 '15 at 07:51parted
, GParted, the Ubuntu installer, etc.), something in the GPT fdisk project (gdisk
,sgdisk
, orcgdisk
), or a recent version offdisk
. Ubuntu 14.04 doesn't ship with such a recentfdisk
, but 15.04 does. I don't recall if 14.10 does. As to alignment, anything modern uses 2048-sector alignment by default, but very old GPT-aware tools (libparted or GPT fdisk) did not. Many tools enable you to switch to another alignment policy. – Rod Smith Jul 25 '15 at 01:24