我有一个在线根服务器,自上次更新以来它只给出内核恐慌。
现在我想更改 grub 设置以在救援模式下启动。我chroot
从救援控制台进入系统:
M=/mnt/root
mkdir -p $M
mount /dev/md127 $M
mount -t proc none $M/proc
mount -o bind /dev $M/dev
mount -t sysfs sys $M/sys
mount --bind /dev/pts $M/dev/pts
chroot $M/ /bin/bash
我认为正确的方法是编辑 grub 配置
/etc/default/grub
并启用它
update-grub
但我如何知道GRUB_DEFAULT
我必须选择哪个?
的输出update-grub
是:
Found linux image: /boot/vmlinuz-3.2.0-4-686-pae
Found initrd image: /boot/initrd.img-3.2.0-4-686-pae
Found linux image: /boot/vmlinuz-2.6.32-5-686-bigmem
Found initrd image: /boot/initrd.img-2.6.32-5-686-bigmem
答案1
update-grub 的输出已经显示了从零开始的 grub 选项的顺序。
所以在这种情况下默认2将启动2.6内核