什么是“grub”命令/程序?它是否也调整 GRUB2 或仅调整 GRUB 遗留版本

什么是“grub”命令/程序?它是否也调整 GRUB2 或仅调整 GRUB 遗留版本

从我的终端:

heer@heer-Latitude-D620:~$ grub --help
The program 'grub' is currently not installed.  You can install it by typing:
sudo apt-get install grub
heer@heer-Latitude-D620:~$ 

答案1

GRUB(包裹名字:grub,也称为GRand Unified Bootloader(旧版本)GRUB2(软件包名称grub-pc:),也称为GRand Unified Bootloader,版本 2(PC/BIOS 版本)。因此,grub它不会对 GRUB2 进行任何调整,而是替换 GRUB2:

$ sudo apt-get install grub
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Suggested packages:
  grub-legacy-doc mdadm
The following packages will be REMOVED:
  grub-gfxpayload-lists grub-pc grub2-common
The following NEW packages will be installed:
  grub
0 upgraded, 1 newly installed, 3 to remove and 0 not upgraded.

从 Ubuntu 9.10 版本开始,它使用 GRUB 2 作为全新安装的默认引导加载程序(在此之前是 GRUB)。

看看这里有哪些区别:

答案2

  • GRUB 是引导加载程序(和 Ubuntu 加载程序),它将 Ubuntu 从磁盘加载到内存中运行。所以,是的,这样的程序对于 Ubuntu 来说是必不可少的,默认情况下它是 Grub。但也有其他引导加载程序,例如 LILO(LInux LOader)和最近的 BURG。

  • 要学习 Grub 命令,您可以使用 Grub 手册这里

  • Grub Customizer 是一个图形界面来配置GRUB2/BURG设置和菜单条目。

    sudo add-apt-repository ppa:danielrichter2007/grub-customizer
    sudo apt-get update
    sudo apt-get install grub-customizer
    

相关内容