是否可以在 /etc/fstab 中挂载特定主机名的 nfs 共享

是否可以在 /etc/fstab 中挂载特定主机名的 nfs 共享

我想在 /etc/fstab 中挂载特定主机名的 nfs 文件系统。

10.0.0.1:/testmy/<hostname> /nfs_for_host

是否有任何变量可以做到这一点?

答案1

尝试将以下内容添加到您的 /etc/fstab :

10.0.0.1:/testmy/<hostname>  /nfs_for_host nfs _netdev,defaults,user,auto,noatime,intr   0 0

选项解释(来自 man 8 mount 和 man 5 nfs):

  • _netdev:文件系统驻留在需要网络访问的设备上。
  • 默认值:使用默认选项:rw、suid、dev、exec、auto、nouser、async 和 relatime。
  • 用户:允许普通用户挂载文件系统。
  • 汽车:可以使用 -a 选项进行挂载。
  • 诺亚泰:读取文件时,访问时间戳不会更新。
  • :允许信号中断此挂载点上的文件操作。

答案2

我认为您无法在 fstab 中执行此操作,但您可以使用 NIS 和 automount 来完成相同的操作。

看看这个: http://www.timgalyean.com/2010/03/automounting-home-directories-with-nis-and-nfs/

相关内容