The Funtoo Linux project has transitioned to "Hobby Mode" and this wiki is now read-only.
Difference between revisions of "Install/MBR Partitioning/ru"
(Created page with "Теперь рекомендуется удалить все существующие таблицы разделов MBR или GPT на диске, которые могл...") |
(Created page with "{{Warning|Это позволит сделать любые существующие разделы недоступными! Вас '''строго''' предупрежда...") |
||
Line 27: | Line 27: | ||
Теперь рекомендуется удалить все существующие таблицы разделов MBR или GPT на диске, которые могли бы запутать системный BIOS во время загрузки. Этого можно достичь, с помощью {{c|sgdisk}}: | Теперь рекомендуется удалить все существующие таблицы разделов MBR или GPT на диске, которые могли бы запутать системный BIOS во время загрузки. Этого можно достичь, с помощью {{c|sgdisk}}: | ||
{{Warning| | {{Warning|Это позволит сделать любые существующие разделы недоступными! Вас '''строго''' предупреждают и рекомендуют резервировать любые критические данные, прежде чем продолжить.}} | ||
{{console|body= | {{console|body= |
Revision as of 20:51, September 15, 2018
Руководство по установке: Создание разделов MBR
Install Guide, Chapter 3 | < Prev | Next > |
Классический (BIOS/MBR) метод
Используйте этот метод, если вы загружаетесь с помощью BIOS, и если ваш Rescue CD Системы меню начальной загрузки было светло-голубым. Если вы собираетесь использовать формат диска UEFI / GPT, перейдите к следующему разделу.
Первым делом, неплохо бы убедиться, что мы используем для разбивки нужный жесткий диск. Попробуйте запустить эту команду и проверьте, что Вы собрались переразбивать именно диск /dev/sda
:
root # fdisk -l /dev/sda Disk /dev/sda: 640.1 GB, 640135028736 bytes, 1250263728 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 label type: gpt root # Start End Size Type Name 1 2048 1250263694 596.2G Linux filesyste Linux filesystem
Теперь рекомендуется удалить все существующие таблицы разделов MBR или GPT на диске, которые могли бы запутать системный BIOS во время загрузки. Этого можно достичь, с помощью sgdisk
:
Это позволит сделать любые существующие разделы недоступными! Вас строго предупреждают и рекомендуют резервировать любые критические данные, прежде чем продолжить.
root # sgdisk --zap-all /dev/sda Creating new GPT entries. GPT data structures destroyed! You may now partition the disk using fdisk or other utilities.
This output is also nothing to worry about, as the command still succeeded:
*************************************************************** Found invalid GPT and valid MBR; converting MBR to GPT format in memory. ***************************************************************
Now we will use fdisk
to create the MBR partition table and partitions:
root # fdisk /dev/sda
Within fdisk
, follow these steps:
Empty the partition table:
Command (m for help): o ↵
Create Partition 1 (boot):
Command (m for help): n ↵ Partition type (default p): ↵ Partition number (1-4, default 1): ↵ First sector: ↵ Last sector: +128M ↵
Create Partition 2 (swap):
Command (m for help): n ↵ Partition type (default p): ↵ Partition number (2-4, default 2): ↵ First sector: ↵ Last sector: +2G ↵ Command (m for help): t ↵ Partition number (1,2, default 2): ↵ Hex code (type L to list all codes): 82 ↵
Create the root partition:
Command (m for help): n ↵ Partition type (default p): ↵ Partition number (3,4, default 3): ↵ First sector: ↵ Last sector: ↵
Verify the partition table:
Command (m for help): p
Disk /dev/sda: 298.1 GiB, 320072933376 bytes, 625142448 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
Disklabel type: dos
Disk identifier: 0x82abc9a6
Device Boot Start End Blocks Id System
/dev/sda1 2048 264191 131072 83 Linux
/dev/sda2 264192 4458495 2097152 82 Linux swap / Solaris
/dev/sda3 4458496 625142447 310341976 83 Linux
Write the partition table to disk:
Command (m for help): w
Your new MBR partition table will now be written to your system disk.
You're done with partitioning! Now, jump over to Creating filesystems.