RHCSA考题8:自动挂载NFS目录

在mars.lab.example.com上执行

以按照如下所述 自动挂载 远程用户的主目录:

  • classroom.example.com (172.25.254.254) NFS 目录 /rhome 自动挂载到用户lily预配置的主目录。
  • lily的主目录是classroom.example.com:/rhome/lily
  • lily的主目录应自动挂载到本地 /rhome 下的 /rhome/lily 。
  • 主目录必须可供其用户写入。
  • lily的密码是redhat

Answer:
yum -y install autofs
echo "/rhome /etc/auto.nfs" > /etc/auto.master.d/lily.autofs
echo "lily -fstype=nfs,rw,sync classroom.example.com:/rhome/lily" > /etc/auto.nfs
systemctl restart autofs
systemctl enable autofs
验证:
ssh lily@mars "df -hT"

file