个人工具

UbuntuHelp:Autofs/zh

来自Ubuntu中文

Makemile讨论 | 贡献2009年3月6日 (五) 23:03的版本 引言

跳转至: 导航, 搜索

引言

Automount是当前流行的将目录挂载到网络上的方式。这是迄今为止最容易管理和节省带宽的解决方案。 通过这个指南,文件的安装和配置将自动完成。It is not used a lot anymore, but AutofsLDAP is very usefull and based on this one. In small business environement, this howto can be usefull.

Installation

Install the following packages: autofs (see InstallingSoftware)

Configuration

For configuring autofs, you have to edit /etc/default/auto.master file. Here is the sample file provided by Ubuntu:

#
# $Id: auto.master,v 1.4 2005/01/04 14:36:54 raven Exp $
#
# 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 --timeout=60
#/smb   /etc/auto.smb
#/misc  /etc/auto.misc
#/net    /etc/auto.net

As you see, by default, all is commented out. Each mount point is associated with another configuration file. Most of them are now useless (now modern desktop have automount feature with hal & co). This would be usefull for light desktop. /net and /smb are still usefull. In Unix world, /net enable automounting distant file system exported by NFS. For example, if you have a server named fileserver with a NFS export directory called /export (see NFSServerHowTo for how to setup a such server), you can mount it by typing in a shell command line cd /net/fileserver/export. In an environment with NFS file servers, such automount can be usefull. For /smb mount point, function the same way but is for SMB file systems (if you need to authenticate for acceding the SMB share, the automatic way will not function). Uncomenting /net and /smb is a good solution. You can add your own mount point with your own options in /etc/auto.master to suit your needs. After entering your changes, run the following command to have them taken into account:

sudo /etc/init.d/autofs reload