问题描述:
提示错误:Failed to get canonical path of /cow
解决办法:
对于ubuntu 14.04来说:
mount /dev/sda1 /mnt
chroot /mnt
update-grub2
对于Ubuntu 16.04来说:
mount /dev/sda1 /mnt
for dir in /dev /dev/pts /proc /sys /run; do
mount --bind $dir /mnt$dir
done
chroot /mnt
update-grub2
参考: