设置可启动分区命令行


12

如何使用parted中的命令行设置可启动分区?

理想情况下,我需要一个编号列表,以便可以轻松选择要启动的分区。


2
手册中对如何设置分区标志进行了说明,这应该是一项琐碎的任务... set标记时不能有编号列表,但始终可以打印设备布局(即编号列表)并在进行检查之前进行检查设置任何标志。
don_crissti

Answers:


13

我使用fdisk。在应用此功能之前,我建议使用实时CD或USB并备份数据。

首先检查是否存在任何可引导分区,例如在我的系统中,“ / dev / sda1”是可引导分区:

fdisk -l /dev/sda                                                      

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 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: 0x00003256

   Device Boot      Start         End      Blocks   Id  System
/dev/sda1    *       2048   959991807   479994880   83  Linux
/dev/sda2       959993854   976766975     8386561    5  Extended
/dev/sda5       959993856   976766975     8386560   82  Linux swap / Solaris

如果没有任何引导分区,请使用root登录执行以下操作:

fdisk  /dev/sda
Command (m for help): m

Command action
   a   toggle a bootable flag
   b   edit bsd disklabel
   c   toggle the dos compatibility flag
   d   delete a partition
   l   list known partition types
   m   print this menu
   n   add a new partition
   o   create a new empty DOS partition table
   p   print the partition table
   q   quit without saving changes
   s   create a new empty Sun disklabel
   t   change a partition's system id
   u   change display/entry units
   v   verify the partition table
   w   write table to disk and exit
   x   extra functionality (experts only)

Command (m for help): a
Partition number (1-5): 

如果要使分区1可启动,则必须输入1;如果要使第二分区可启动,则必须输入2。

并像这样用“ w”修改

Command (m for help): w

用于修改磁盘表并使所需分区可引导。

希望有帮助


3
fdisk似乎不再具有可启动标志选项...在20190712上的archlinux安装尝试上
Scott Stensland

使用fdisk,我创建了System EFI分区,它自动具有GPT的可启动标志parted1,即使我再也无法手动设置它了,我也可以看到它。可能选择正确的分区类型就足够了。
mateuszb

9

使用该print命令生成分区号(第一列)。我们说它是1。要使其可启动:

(parted) set 1 boot on

值得一提的是,您可以在GUI中轻松完成此操作;右键单击所需的分区,标记,单击启动。
Owen Versteeg

1
@robert,谢谢您对问题的正确回答!
Ashfaq

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.