如何在 GRUB2 中添加 systemd.setenv

如何在 GRUB2 中添加 systemd.setenv

我想systemd.setenv=NSS_HASH_ALG_SUPPORT=+MD5在 grub2 中为 centos7 添加参数?

我不知道我必须修改哪些文件,以及我必须在哪些行插入此参数。

谢谢你的帮助。

答案1

/etc/sysconfig/grub在CentOS 7 系统上可以找到 grub 配置。

您将在其中找到可以编辑的默认内核命令行参数。

GRUB_CMDLINE_LINUX="rd.lvm.lv=centos/swap vconsole.font=latarcyrheb-sun16 rd.lvm.lv=centos/root crashkernel=auto  vconsole.keymap=us rhgb quiet"

编辑文件后,运行grub2-mkconfig重新生成grub配置。

grub2-mkconfig > /boot/grub2/grub.cfg

相关内容