# 触发式挂载
1、 主配置文件
/misc /etc/auto.misc
2、 辅配置文件
[root@www ~]# vim /etc/auto.master
# Sample auto.master file
# This is an automounter map and it has the following format
# key [ -mount-options-separated-by-comma ] location
# For details of the format look at autofs(5).
#
/misc /etc/auto.misc
3、 添加Fu助配置文件的名称和目录
/auto /etc/sda5.auto
[root@www ~]# vim /etc/sda5.auto
4、 名称的文件类型 默认为ext3
sda5 -fstype=auto :/dev/sda5
5、 建立文件夹
[root@www ~]# mkdir /auto
6、 重启autofs服务
[root@www ~]# /etc/init.d/autofs restart
Stopping automount: [ OK ]
Starting automount: [ OK ]
7、 重启后进入auto目录,查看不到任何东西,直接cd进入sda5后,触发挂载
[root@localhost ~]# cd /auto/
[root@localhost auto]# ls
[root@localhost auto]# cd sda5
[root@localhost sda5]# ls
bb
[root@localhost sda5]# cd ..
[root@localhost auto]# ls
sda5
[root@localhost auto]#
# 自动挂载光盘镜像
1、修改/etc/iso.auto配置文件:(其它同上)
iso -fstype=iso9660,loop :/root/rhel5.iso