Fdisk (简体中文)

From ArchWiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
翻译状态:本文是 Fdisk翻译。上次翻译日期:2018-08-31。如果英文版本有所更改,则您可以帮助同步翻译。

Tango-preferences-desktop-locale.png本文或本节需要翻译。要贡献翻译,请访问简体中文翻译团队Tango-preferences-desktop-locale.png

附注: Half of the page is not translated(在 Talk:Fdisk (简体中文)# 中讨论)

util-linux fdisk 是基于命令行界面的分区表创建和编辑工具。一个硬盘需要分为一个或多个分区,这个信息在分区表里面记录。

本文介绍 fdisk(8)sfdisk(8) 工具的使用。

提示: cfdisk(8) 工具提供了基本的功能和文本界面。

安装

要使用 fdisk 及相关工具,请使用 util-linux 软件包,这个软件包已经位于 base 软件包组。

显示分区

要列出设备上的分区表和分区,可以运行以下命令,假设设备的名称为 /dev/sda:

# fdisk -l /dev/sda
注意: 如果未指定设备,“fdisk”将列出 /proc/partitions中的所有分区.

备份和恢复分区

在对硬盘做出更改之前,您可能需要备份驱动器的分区表和分区方案。您还可以使用备份将同一分区布局复制到多个驱动器上。

使用 dd

Dd#Backup and restore MBR.

使用 sfdisk

对于GPT和MBR,您可以使用“sfdisk”将设备的分区布局保存到具有-d/--dump 选项的文件中. 对设备 /dev/sda运行以下命令:

# sfdisk -d /dev/sda > sda.dump

对于大小为1 GiB的单个ext4分区,该文件应如下所示:

sda.dump
label: gpt
label-id: AAAAAAAA-BBBB-CCCC-DDDD-EEEEEEEEEEEE
device: /dev/sda
unit: sectors
first-lba: 34
last-lba: 1048576

/dev/sda1 : start=2048, size=1048576, type=0FC63DAF-8483-4772-8E79-3D69D8477DE4, uuid=BBF1CD36-9262-463E-A4FB-81E32C12BDE7

要稍后恢复此布局,可以运行:

# sfdisk /dev/sda < sda.dump

创建分区表和分区

磁盘 partitioning 的第一步是创建分区表. 然后, 根据所需的 partition scheme 创建实际分区.参见 partition table 一文来帮助你选择使用 MBR 或是 GPT.

在开始之前,您可能希望 backup 您当前的分区表和方案.

Recent versions of fdisk have abandoned the deprecated system of using cylinders as the default display unit, as well as MS-DOS compatibility by default. fdisk automatically aligns all partitions to 2048 sectors, or 1 MiB, which should work for all EBS sizes that are known to be used by SSD manufacturers. This means that the default settings will give you proper alignment.

以root用户身份启动“fdisk”。在本例中我们使用 /dev/sda:

# fdisk /dev/sda

这将启动“fdisk”程序,您可以在其中键入命令。

Create new table

警告: 如果在存有数据的磁盘上创建新分区表,它将擦除磁盘上的所有数据。请务必确保这是你想要做的

输入 o 来新建一个 MBR 分区表并清除磁盘上的所有数据;输入 g 来新建一个GUID分区表 (GPT)。 如果已创建所需的分区表,请跳过此步骤。

Create partitions

Tango-view-fullscreen.pngThis article or section needs expansion.Tango-view-fullscreen.png

Reason: Place each step into a subsection. (Discuss in Talk:Fdisk (简体中文))

Create a new partition with the n command. You enter a partition type, partition number, starting sector, and an ending sector.

When prompted, specify the partition type, type p to create a primary partition or e to create an extended one. There may be up to four primary partitions.

The first sector must be specified in absolute terms using sector numbers. The last sector can be specified using the absolute position in sectors or using the + symbol to specify a position relative to the start sector measured in sectors, kibibytes (K), mebibytes (M), gibibytes (G), tebibytes (T), or pebibytes (P); for instance, setting +2G as the last sector will specify a point 2GiB after the start sector. Pressing the Enter key with no input specifies the default value, which is the start of the largest available block for the start sector and the end of the same block for the end sector.

Tango-view-fullscreen.pngThis article or section needs expansion.Tango-view-fullscreen.png

Reason: Suggest using Discoverable Partitions. (Discuss in Talk:Fdisk (简体中文))

Select the partition's type id. The default, Linux filesystem, should be fine for most use. Press l to show the codes list. You can make the partition bootable by typing a.

提示:
  • 在分区时,遵循第一个和最后一个分区扇区的默认值是一个好主意。此外,使用“+<size>{M,G,…}”来指定分区大小。此类分区始终根据设备属性对齐。
  • 在MBR分区的磁盘上,如果需要,在磁盘末端留出至少16.5 KiB的可用空间以简便地 converting between MBR and GPT
  • EFI system partition 需要系统为 EFI System.
  • 在将GRUB安装到磁盘时 GRUB 需要一个 BIOS boot 类型的 BIOS boot partition.
  • 建议在任何的 swap 分区使用 Linux swap , 因为 systemd 将会自动挂载它.
  有关这些分区的大小和位置的注意事项,请参见相应的文章。

重复此过程,直到获得所需的分区。

将改动写入磁盘

使用 w 退出程序并将分区写入磁盘中.

提示和技巧

分区排序

这适用于在两个分区之间的空间中创建新分区或删除分区的情况。本例中使用了/dev/sda .

# sfdisk -r /dev/sda

After sorting the partitions if you are not using Persistent block device naming, it might be required to adjust the /etc/fstab and/or the /etc/crypttab configuration files.

注意: The kernel must read the new partition table for the partitions (e.g. /dev/sda1) to be usable. Reboot the system or tell the kernel to reread the partition table.

另见