RHEL 7 在启动时没有从 /etc/fstab 挂载驱动器?

RHEL 7 在启动时没有从 /etc/fstab 挂载驱动器?

我有一台 RHEL 7 服务器,其中有以下一行/etc/fstab

\\10.0.0.1\backup /mnt/backup cifs user,uid=500,rw,suid,username=admin,password=password 0 0

这和我在其他 CentOS 6 和 RHEL 6 服务器上使用的完全相同,但在这个单个 RHEL 7 盒子上,似乎mount -a每次重启后我都需要连接并运行?

有什么方法可以自动解决这个问题吗?

答案1

使用_netdevautomount 选项来确保挂载在启动时发生,并且在网络启动并运行之前不会尝试挂载。

man mount

_netdev

The filesystem resides on a device that requires network access (used to prevent the
system from attempting to mount these filesystems until the network has been enabled 
on the system).  
  ....

auto

Can be mounted with the -a option.

相关内容