如何在parted中使用命令行设置可启动分区?
理想情况下,我想要一个编号列表,以便我可以轻松选择要从哪个分区启动。
答案1
我用的是fdisk。在应用此方法之前,我建议使用 Live 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
用于修改磁盘的表并使所需的分区可引导。
希望有帮助
答案2
使用该print
命令您可以获得分区号(第一列)。假设它是 1. 使其可启动:
(parted) set 1 boot on
答案3
操作系统https://qwiek.wordpress.com/然后使用“fdisk”flag 1
使第一个分区可引导。