我搞砸了 ubuntu 中的 grub.cfg 文件,现在我无法启动到该分区。我需要在文件中放入什么才能从该分区启动?
答案1
如果您正在使用 grub2,您只需运行一个sudo update-grub
来找到正确的操作系统并生成新的 cfg。
从实时 CD,你必须挂载你的分区:
sudo mkdir /mnt/root
sudo mount -t ext3 <your ubuntu partition, example /dev/sda4> /mnt/root
sudo mount -t proc none /mnt/root/proc
sudo mount -o bind /dev /mnt/root/dev
sudo mount -o bind /sys /mnt/root/sys
sudo chroot /mnt/root /bin/bash
sudo update-grub