Answers:
我使用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
用于修改磁盘表并使所需分区可引导。
希望有帮助
parted1
,即使我再也无法手动设置它了,我也可以看到它。可能选择正确的分区类型就足够了。
使用该print
命令生成分区号(第一列)。我们说它是1。要使其可启动:
(parted) set 1 boot on
set
标记时不能有编号列表,但始终可以打印设备布局(即编号列表)并在进行检查之前进行检查设置任何标志。