Parted

設置可引導分區命令行

  • January 15, 2019

如何在 parted 中使用命令行設置可引導分區?

理想情況下,我想要一個編號列表,以便我可以輕鬆選擇從哪個分區啟動。

我使用 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

用於修改磁碟表並使所需的分區可引導。

希望有幫助

引用自:https://unix.stackexchange.com/questions/343429