红联Linux门户
Linux帮助

Ubuntu下提示Failed to get canonical path of /cow的解决

发布时间:2017-06-07 09:09:54来源:linux网站作者:君的名字
问题描述:
提示错误: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
 
参考:
Ubuntu下提示Failed to get canonical path of /cow的解决
 
本文永久更新地址:http://www.linuxdiyf.com/linux/31299.html