Linux

GRUB 錯誤:grub-install:錯誤:無法獲取 `/cow’ 的規範路徑

  • May 3, 2021

下載 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'.

如果你不想冒險解除安裝 /cow,我發現了一個巧妙的小技巧,它可以讓 grub-probe 誤以為 /cow 上有一個空文件系統,然後忽略它。

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

這對我在 grub-mkconfig 不起作用的實時 USB 上執行很有用。

引用自:https://unix.stackexchange.com/questions/511252