Linux基础教程学习笔记之Autofs自动挂载
Autofs自动挂载:
yum -y install autofs
vim /etc/auto.master 在文件中添加下面行
/home/guests /etc/auto.tianyun
vim /etc/auto.tianyun 子挂载点监控
ldapuser0 -rw,sync classroom:/home/guests/ldapuser0
systemctl enable autofs.service
systemctl restart autofs.service
ls /home/guests 自动创建父挂载点
ls /home/guests/abc 被监控,目标文件不存在
测试 ssh ldapuser0@localhost, 要是再使用ldapuser1呢,则家目录又没有挂载了,那怎么办呢?
autofs自动挂载用户家目录:
vim /etc/auto.tianyun, 添加 * -rw,sync classroom:/home/guests/&
systemctl restart autofs.service
vim /etc/sysconfig/autofs TIMEOUT=300