问题
Ubuntu系统有点问题。
引导时,无法挂载分区,发生的错误如下:
dmesg | tail
[ 470.027891] EXT4-fs (sda2): Unrecognized mount option"x-gvfs-show" or missing value
对应的/etc/fstab
条目为:
/dev/disk/by-uuid/d0e8607e-9067-49c9-929e-83ec7f70cea1 /mnt/d0e8607e-9067-49c9-929e-83ec7f70cea1 auto nosuid,nodev,nofail,x-gvfs-show 0 0
在GUI中:
答案1
短版本:
你没有使用正确的参数,使用comment=x-gvfs-show
而不是x-gvfs-show
。
长版本:
不要使用GUI,转到终端,并键入:
sudo nano /etc/fstab
找到显示x-gvfs-show
的出错行,并在它前面键入comment=
重新加载fstab
中的所有条目:
mount -a
相关文章