没有区别。 Ubuntu 9.10及更高版本已安装GRUB2,但sudo update-grub仍然以标准命令为准。 sudo update-grub和sudo update-grub2是等同的,所以运行哪一个并不重要。/usr/sbin/update-grub2仅仅是一个符号链接到/usr/sbin/update-grub。 ls -l `which update-grub update-grub2`#output -rwxr-xr-x1 root root...
update-grub2链接到了update-grub。 打开update-grub文件,看到如下源码: #!/bin/shset-eexecgrub-mkconfig -o /boot/grub/grub.cfg"$@" 我们可以看到原来update-grub是grub-mkconfig -o /boot/grub/grub.cfg的封装。
update-grub2其实只是一个链接符号,链接到update-grub。 4,内容比较 guoyanzhang@bogon:~$ sudocat/usr/sbin/update-grub #!/bin/sh set-e exec grub-mkconfig-o/boot/grub/grub.cfg"$@" guoyanzhang@bogon:~$ sudocat/usr/sbin/update-grub2 #!/bin/sh set-e exec grub-mkconfig-o/boot/grub/grub....
针对你提出的“update-grub2命令找不到”的问题,以下是我的分析和解答: 1. 确认用户的环境和上下文 首先,我们需要确认你正在使用的操作系统类型以及是否已安装GRUB2。update-grub2 命令通常与基于Debian的系统(如Ubuntu)相关,但在某些发行版中,这个命令可能不存在,或者可能是一个指向 update-grub 的符号链接。 2....
CentOS的update-grub2命令 这个和Ubuntu还是有些区别,在CentOS修改成如下: grub2-mkconfig -o /boot/grub2/grub.cfg
CentOS的update-grub2命令 这个和Ubuntu还是有些区别,在CentOS修改成如下: 代码解读 grub2-mkconfig -o /boot/grub2/grub.cfg 1.
I need to update the /etc/default/grub file in marinerOS but it seems it is missing. There is an open issue regarding that as well #2237 I also tried update-grub and grub-mkconfig commands but they are also not found. sudo: update-grub: ...
When I run update-grub2 on my Debian Buster server, instead of creating a grub.cfg it creates a grub.cfg.new, even though grub.cfg does not exist. And because of this my machine boots into a broken grub, because it cannot find grub.cfg. Is there a way to tell update-grub2 to ...
When I run update-grub or I try to reinstall it, I get a "syntax error". The output is somewhat like this: error: syntax error. error: Incorrect command. error: syntax error. error: line no: 262 Syntax errors are detected in generated GRUB config file. Ensure that there ...