我在虚拟机上安装了 Ubuntu,并从基础机器上安装了共享文件夹。因此在启动过程中,它挂起“停止安装网络文件系统”
我想保留该 fstab 条目,因为一旦系统启动,“mount -a”就会起作用,即 fstab 条目起作用!那么我如何在启动时挂载?
我的 /etc/fstab 条目:
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=30603d6c-2cc1-4d8e-84cd-14121c031758 / ext4 errors=remount-ro 0 1
# swap was on /dev/sda5 during installation
#UUID=c0e7dbcb-95b6-4dae-853e-b1c80548c7ca none swap sw 0 0
/dev/mapper/cryptswap1 none swap sw 0 0
Downloads-Base /mnt/share vboxsf defaults 0 1
答案1
编辑并从网络文件系统的条目中/etc/fstab
删除该词。这将中断(记录为挂载所有条目),并且您必须手动访问网络文件系统()auto
mount -a
auto
mount
mount /mountpoint
答案2
我添加了“noauto”,它对我有用!
新的“/etc/fstab”条目:
Downloads-Base /mnt/share vboxsf defaults,noauto 0 1