运行grub-mkconfig命令,需要到 /usr/sbin 目录运行,因为这个目录没有包含到 PATH 变量中。
执行命令,并输出内容
jack@PC:/usr/sbin$ sudo ./grub-mkconfig -o /boot/grub/grub.cfg Generating grub configuration file ... Found background image: /usr/share/images/desktop-base/desktop-grub.png Found linux image: /boot/vmlinuz-6.1.0-21-amd64 Found initrd image: /boot/initrd.img-6.1.0-21-amd64 Found linux image: /boot/vmlinuz-6.1.0-18-amd64 Found initrd image: /boot/initrd.img-6.1.0-18-amd64 Warning: os-prober will be executed to detect other bootable partitions. Its output will be used to detect bootable binaries on them and create new boot entries. Found Windows Boot Manager on /dev/nvme0n1p1@/EFI/Microsoft/Boot/bootmgfw.efi Adding boot menu entry for UEFI Firmware Settings ... done
对命令及输出的解释
上述命令及输出信息展示了使用 `grub-mkconfig` 工具更新GRUB配置文件的过程。具体解释如下: 1. **命令执行**: ``` jack@PC:/usr/sbin$ sudo ./grub-mkconfig -o /boot/grub/grub.cfg ``` - `sudo`: 这个命令让接下来的操作以超级用户权限执行,因为修改GRUB配置文件通常需要管理员权限。 - `./grub-mkconfig`: 执行位于 `/usr/sbin/` 目录下的 `grub-mkconfig` 程序,这个程序负责根据系统当前状态生成GRUB配置文件。 - `-o /boot/grub/grub.cfg`: `-o` 参数指定输出文件的位置,这里是把生成的GRUB配置文件输出到 `/boot/grub/grub.cfg`,这是GRUB通常查找其配置文件的位置。 2. **输出信息**: - **生成GRUB配置文件**: "Generating grub configuration file ..." 表示开始生成GRUB的配置文件。 - **背景图片**: "Found background image: /usr/share/images/desktop-base/desktop-grub.png" 表示找到了用于GRUB菜单的背景图片位置。 - **找到Linux内核和initrd镜像**: 接下来的几行分别表示检测到了不同版本的Linux内核(`vmlinuz`)及其对应的初始化RAM磁盘(`initrd.img`),这些都是系统启动所需的关键组件。 - **os-prober警告**: "Warning: os-prober will be executed to detect other bootable partitions." 提醒用户 `os-prober` 工具即将被执行,以探测其他可引导分区。这意味着GRUB配置还会包括其他可能的操作系统引导入口。 - **发现Windows Boot Manager**: "Found Windows Boot Manager on /dev/nvme0n1p1@/EFI/Microsoft/Boot/bootmgfw.efi" 表明检测到了安装在 `/dev/nvme0n1p1` 分区上的Windows Boot Manager,路径指向EFI系统分区中的启动文件。 - **添加UEFI固件设置菜单项**: "Adding boot menu entry for UEFI Firmware Settings ..." 表示正在为访问UEFI固件设置添加一个启动菜单项,这通常允许用户进入BIOS或UEFI设置界面。 - **完成**: "done" 表示整个过程已经成功完成,GRUB配置文件已根据当前系统状况被正确生成并写入指定位置。 这个命令执行的结果是自动检测系统中可用的启动选项(包括不同的Linux内核、Windows Boot Manager等),并据此更新GRUB的配置文件,确保下次启动时能提供一个包含所有可选操作系统的启动菜单。
标签:grub,GRUB,Boot,boot,生成,Found,配置文件 From: https://www.cnblogs.com/litifeng/p/18189004