GRUB 错误:grub-install:错误:无法获取“/cow”的规范路径

GRUB 错误:grub-install:错误:无法获取“/cow”的规范路径

下载 grub 时出现此错误。

ubuntu@ubuntu:/boot/grub$ sudo grub-install /dev/sda
Installing for i386-pc platform.
grub-install: error: failed to get canonical path of `/cow'.

答案1

如果您不想冒险卸载 /cow,我发现了一个巧妙的小技巧,可以欺骗 grub-probe 认为 /cow 上有一个空文件系统,然后忽略它。

dd if=/dev/zero bs=1M count=1 of=cowfile
mkfs -t vfat cowfile
mv cowfile /cow

这对我在 grub-mkconfig 不起作用的实时 USB 上运行很有用。

相关内容