RHEL5使用自动挂载工具Autofs挂载文件的方法
RHEL5使用自动挂载工具Autofs挂载文件的方法
1.在/etc/auto.master中配置挂载点
在/etc/auto.master中配置挂载点,格式为:
挂载点 配置文件路径
例如:
/mnt /etc/auto.mnt
表示将在/mnt目录下挂载配置文件/etc/auto.mnt中指定的目录。
2.在配置文件中指定挂载目录
在配置文件中指定挂载目录,格式为:
目录 -fstype=文件系统类型 服务器地址:目录
例如:
/mnt/cdrom -fstype=iso9660,ro,nosuid,nodev server:/mnt/cdrom
表示将以只读方式挂载服务器上的/mnt/cdrom目录。
3.启动autofs服务
启动autofs服务,使配置生效。
service autofs start
4.使用自动挂载
使用自动挂载,格式为:
mount -t autofs 挂载点
例如:
mount -t autofs /mnt
表示将在/mnt目录下挂载配置文件/etc/auto.mnt中指定的目录。
相关文章