/dev/sda1 * 1 9964 80035798+ 7 HPFS/NTFS
Что за плюс? Как убирай плюс?
Пользователь решил продолжить мысль 05 Декабря 2011, 03:49:42:
Перевод: Что это плюс?
Эти блоки имеют размер 1024 байт каждый, так что вы увидите, что +, когда раздел содержит нечетное число 512-байтных секторов. Другими словами, + после размеры блоков предупреждает, что эти разделы содержат нечетное число секторов: Linux обычно выделяет файловое пространство в 1 килобайт блоков, так что дополнительный сектор в раздел 1 тратится впустую. Это обычное дело, так что не волнуйтесь об этом.
Пользователь решил продолжить мысль 05 Декабря 2011, 04:13:24:
Consider the following example, where a hard drive has been partitioned into four primary partitions of 1, 2, 4, and 8 cylinders.
disk /dev/sda: 16 heads, 63 sectors, 23361 cylinders
Units = cylinders of 1008 * 512 bytes
Device Boot Start End Blocks Id System
/dev/sda1 1 2 976+ 83 Linux
/dev/sda2 3 5 1512 83 Linux
/dev/sda3 6 10 2520 83 Linux
/dev/sda4 11 19 4536 83 Linux
fdisk provides the configuration information I need in the head of the output. The unit size is 516096 ( 16 heads * 63 sectors/cyl * 512 bytes/sector ). The block size is 504 ( 516096 / 1024 ). The number of needed cylinders for the second partition is therefore 3 ( 1512 blocks / 504 ). The partition table shows that this is indeed the case: the first cylinder is 3, the second 4, and the last is 5, for a total of three cylinders. The number of needed cylinders for the third partition is calculated similarly: 2520 blocks / 504 = 5, which corresponds to blocks 6,7,8,9,10 . Notice that this calculation does not work for the first partition because the block count is wrong ( 976 instead of 1008 ). The plus sign indicates that not all the blocks are included in the fdisk value. When you try the calculation ( 976 / 504 ) you get 1.937. Knowing that the number of cylinders must be an integer, you can simply round up.
Пользователь решил продолжить мысль 05 Декабря 2011, 04:25:53:
Надо проверяй диск блок секторы.
Run e2fsck on it to verify that you can read the new partition.
Как надо NTFS?
Пользователь решил продолжить мысль 05 Декабря 2011, 04:37:29:
Попробуй гпартед
sudo gparted /dev/sda
строк диск выбери, мышь права меню "Проверить на ошибки" и провери упдате-груб.
Пользователь решил продолжить мысль 05 Декабря 2011, 05:01:07: