Partition 1 does not end on cylinder boundary Warnung unter fdisk
Aus Wiki Thomas-Krenn.AG
Das Programm fdisk unter Linux zeigt im DOS-Kompatibilitätsmodus eine Warnung bei Partitionen die mit einem korrekten Partition Alignment etwa für SSDs eingerichtet wurden.
Die Warnung Partition 1 does not end on cylinder boundary ist nur für DOS-Umgebungen relevant, die aber praktisch nicht mehr anzutreffen sind. Die Warnung kann daher ignoriert werden. Der Aufruf von fdisk mit dem Parameter -c unterbindet die Warnung (damit wird der DOS-Kompatibilitätsmodus deaktiviert).
Bei Partitionen mit einem korrekten Partition Alignment zeigt fdisk -lu eine Warnmeldung, bei fdisk -lcu kommt keine Warnung.
Warnung bei fdisk -l
user@ubuntu-10-10:~$ sudo fdisk -l /dev/sda Disk /dev/sda: 160.0 GB, 160041885696 bytes 255 heads, 63 sectors/track, 19457 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x9349dd6c Device Boot Start End Blocks Id System /dev/sda1 * 1 153 1227776 7 HPFS/NTFS Partition 1 does not end on cylinder boundary. /dev/sda2 153 3801 29296875 7 HPFS/NTFS Partition 2 does not end on cylinder boundary. /dev/sda3 3801 5017 9764864 83 Linux Partition 3 does not end on cylinder boundary. /dev/sda4 5017 19458 115998720 83 Linux Partition 4 does not end on cylinder boundary.
Warnung bei fdisk -l -u
user@ubuntu-10-10:~$ sudo fdisk -l -u /dev/sda Disk /dev/sda: 160.0 GB, 160041885696 bytes 255 heads, 63 sectors/track, 19457 cylinders, total 312581808 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: 0x9349dd6c Device Boot Start End Blocks Id System /dev/sda1 * 2048 2457599 1227776 7 HPFS/NTFS Partition 1 does not end on cylinder boundary. /dev/sda2 2457600 61051349 29296875 7 HPFS/NTFS Partition 2 does not end on cylinder boundary. /dev/sda3 61052928 80582655 9764864 83 Linux Partition 3 does not end on cylinder boundary. /dev/sda4 80582656 312580095 115998720 83 Linux Partition 4 does not end on cylinder boundary.
keine Warnung bei fdisk -l -c -u
user@ubuntu-10-10:~$ sudo fdisk -l -c -u /dev/sda Disk /dev/sda: 160.0 GB, 160041885696 bytes 255 heads, 63 sectors/track, 19457 cylinders, total 312581808 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: 0x9349dd6c Device Boot Start End Blocks Id System /dev/sda1 * 2048 2457599 1227776 7 HPFS/NTFS /dev/sda2 2457600 61051349 29296875 7 HPFS/NTFS /dev/sda3 61052928 80582655 9764864 83 Linux /dev/sda4 80582656 312580095 115998720 83 Linux user@ubuntu-10-10:~$
