partition table entries are not in disk order
(2010-07-26 20:40:02)
标签:
forofhelporderit |
分类: Linux |
使用fdisk -l 命令
提示:partition
转载:http://linux.chinaunix.net/bbs/thread-979302-1-1.html
不會有問題, 只是分割區的位置順序位置沒依照順序而已,
這常發生於你刪除前面的分割區後又再次劃分新的分割區所以引起該問題...
]# fdisk /dev/hda
The number of cylinders for this disk is set to 9729.
There is nothing wrong with that, but this is larger than
1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of
LILO)
2) booting and partitioning software from other OSs
Command (m for help): p
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
/dev/hda1
/dev/hda2
/dev/hda5
/dev/hda6
/dev/hda7
/dev/hda8
/dev/hda9
/dev/hda10
Command (m for help): d
Partition number (1-10): 9
Command (m for help): p
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
/dev/hda1
/dev/hda2
/dev/hda5
/dev/hda6
/dev/hda7
/dev/hda8
/dev/hda9
Command (m for help): n
Command action
l
First cylinder (753-9729, default 753):
Using default value 753
Last cylinder or +size or +sizeM or +sizeK (753-899, default
899):
Using default value 899
Command (m for help): p
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
/dev/hda1
/dev/hda2
/dev/hda5
/dev/hda6
/dev/hda7
/dev/hda8
/dev/hda9
/dev/hda10
Partition table entries are not in disk order
要修正很簡單...
Command (m for help): x
Expert command (m for help): m
Command action
Expert command (m for help): f
Done.
Expert command (m for help): r
Command (m for help): p
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
/dev/hda1
/dev/hda2
/dev/hda5
/dev/hda6
/dev/hda7
/dev/hda8
/dev/hda9
/dev/hda10
不過注意你有改過分割表配置, 確認 /etc/fstab 甚至 /boot/grub/menu.lst 內配置要對應好,
以免發生開機失敗的問題.

加载中…