Difference between revisions of "/etc/autofs/"
From GhostBSD Wiki
(→Introduction) |
|||
(One intermediate revision by the same user not shown) | |||
Line 3: | Line 3: | ||
==Introduction== | ==Introduction== | ||
− | The [https://www.freebsd.org/cgi/man.cgi?query=auto_master&sektion=5 | + | The automounter configuration consists of the [https://www.freebsd.org/cgi/man.cgi?query=auto_master&sektion=5 auto_master] configuration file, which assigns filesystem paths to map names, and maps, which contain actual mount information. The auto_master configuration file is used by the [https://www.freebsd.org/cgi/man.cgi?query=automount&sektion=8&apropos=0&manpath=FreeBSD+12.1-RELEASE+and+Ports automount(8)] command. Map files are read by the [https://www.freebsd.org/cgi/man.cgi?query=automountd&sektion=8&apropos=0&manpath=FreeBSD+12.1-RELEASE+and+Ports automountd(8)] daemon. It is possible to add custom special maps by adding them, as executable maps named special_foo, to the '''/etc/autofs/''' directory. |
Those are the components underneath the autofs(5), but how does it fit together? Let's start with the actual map. In FreeBSD, special maps (the ones with names starting with "-") are just executables in /etc/autofs/: | Those are the components underneath the autofs(5), but how does it fit together? Let's start with the actual map. In FreeBSD, special maps (the ones with names starting with "-") are just executables in /etc/autofs/: | ||
Line 40: | Line 40: | ||
|See: [http://freebsdfoundation.blogspot.com/2015/03/ The "-media" Map] | |See: [http://freebsdfoundation.blogspot.com/2015/03/ The "-media" Map] | ||
|- | |- | ||
− | !colspan="2"|'''Back to ''' [[image:Icon Disti GhostBSD.png|50px|link=/etc/ | + | !colspan="2"|'''Back to ''' [[image:Icon Disti GhostBSD.png|50px|link=/etc/]]'''/etc/''' |
|} | |} | ||
Latest revision as of 14:10, 8 April 2020
Welcome to /etc/autofs/. |
Introduction[edit]
The automounter configuration consists of the auto_master configuration file, which assigns filesystem paths to map names, and maps, which contain actual mount information. The auto_master configuration file is used by the automount(8) command. Map files are read by the automountd(8) daemon. It is possible to add custom special maps by adding them, as executable maps named special_foo, to the /etc/autofs/ directory.
Those are the components underneath the autofs(5), but how does it fit together? Let's start with the actual map. In FreeBSD, special maps (the ones with names starting with "-") are just executables in /etc/autofs/:
Content[edit]
Files | Description |
---|---|
include_ldap | The https://www.freebsd.org/doc/handbook/network-ldap.html Lightweight Directory Access Protocol] (LDAP) is an application layer protocol used to access, modify, and authenticate objects using a distributed directory information service. See on GitHub |
include_nis | Network Information System (NIS) is designed to centralize administration of UNIX®-like systems such as Solaris™, HP-UX, AIX®, Linux, NetBSD, OpenBSD, and FreeBSD. man NIS was originally known as Yellow Pages but the name was changed due to trademark issues. This is the reason why NIS commands begin with yp. See on GitHub |
include_nis_nullfs | See on GitHub |
special_hosts | See on GitHub |
special_media | See: on GitHub |
special_noauto | See: on GitHub |
special_null | See: on GitHub |
special_simple-mtpfs | See: The "-media" Map |
Back to /etc/ |