etc/skel/.signature: use https and proper "Grml" spelling
[grml-etc.git] / etc / exports.grml
1 # /etc/exports: the access control list for filesystems which may be exported
2 #               to NFS clients.  See exports(5).
3 #
4 # main options:
5 # =============
6 # rw              => Allows read and write access to the share
7 # ro              => Only allows read access, writing is blocked
8 # all_squash      => Forces all connecting users to "nobody" account and permissions
9 # no_root_squash  => Allows root account on client to access export share on server as the root account
10 # anonuid         => Forces all anonymous connections to predefined UID on server
11 # anongid         => Forces all anonymous connections to predefined GID on server
12 # => more information in 'man exports'
13 #
14 # usage example:
15 # ==============
16 # /etc/init.d/portmap start
17 # /etc/init.d/nfs-common start
18 # /etc/init.d/nfs-kernel-server start
19 # mount -t nfs 192.168.1.101:/ /mnt/test
20 #
21 # Notice: starting nfs-server fails if there is no entry in /etc/exports :-/
22 #
23 # example:
24 # ========
25 # /home/grml/nfs 192.168.1.101(ro,sync)
26 # /              192.168.1.101(rw,no_root_squash,no_subtree_check,sync)