- GSI, AIX >= 5.1, new:
/etc/auto_master
for example looks like
/u /etc/auto.u # $user -rw,vers=3,proto=tcp biops5z:/userfs/userb01/$user (distributed by IT)
/s /etc/auto.s # bio -rw,vers=3,proto=tcp biops6b:/scratch/bio
/d /etc/auto.d # bio -rw,vers=3,proto=tcp biops6a:/data/data014
/nfs/clri6c /etc/auto.nfs # (for GSI /usr/local etc)
/nfs/bio /etc/auto.bio # local.AIX -ro,vers=3,proto=tcp biops5z:/applfs/applb00/AIX
/- /etc/auto.lxg0110 #
/- /etc/auto.lxg0113 # /datalxg0113 -rw,bg,soft,intr,retry=10 lxg0113:/data.local1
If maps have changed, stop the automounter and restart:
stopsrc -s automountd; /usr/sbin/automount -m -v -f /etc/auto_master
-
GSI, AIX <= 4.3, old:
/etc/auto_master
for example looks like:
/u /etc/auto.u # $user -rw,vers=3,proto=tcp biops5z:/userfs/userb01/$user (distributed by IT)
/s /etc/auto.s # bio -rw,vers=3,proto=tcp biops6b:/scratch/bio
/d /etc/auto.d # bio -rw,vers=3,proto=tcp biops6a:/data/data014
/nfs/clri6c /etc/auto.nfs # (for GSI /usr/local etc)
/bioapps /etc/auto.bioapps # (for WP 6, applix)
/apps /etc/auto.apps # (for WP 8, applix 4.42)
/- /etc/auto.lxg0012 # /data.local -rw,vers=3,proto=tcp lxg0012:/data.local
To enable Biophysics commercial apps (WordPerfect, applixware, etc.) /etc/auto.bioapps
must have entries like
APPLIX -ro,vers=3,proto=tcp biori6y:/bioapps/APPLIX
As of October 2005, /d/bio
and /s/bio
file systems reside on bio servers,
thus ensure that /etc/auto.d
and /etc/auto.s
contain the lines
bio -rw,vers=3,proto=tcp biops6a:/data/data014
bio -rw,vers=3,proto=tcp biops6b:/scratch/bio
- else, and on AIX == 4.3:
/etc/auto_master
for example looks like:
/nfs /etc/auto.nfs # local -ro rs6kf:/applfs/applb01/AIX/POWER
# install -rw rs6kf:/applfs/applb01/AIX/POWER
/s /etc/auto.s # bio -rw rs6kf:/scratch/bio
/d /etc/auto.d # bio -rw rs6kf:/datafs/bio
/- /etc/auto.u # /u -rw rs6kf:/userfs/AIX/POWER/
If this file exists, the automount daemon will be started on boot automatically via
/etc/rc.nfs
.
- else, and on AIX <= 4.2:
/etc/auto.master
for example looks like:
/nfs /etc/auto.nfs # local -ro,soft,bg,intr,retry=10 rs6kf:/applfs/applb01/AIX/POWER
# install -rw,soft,bg,intr,retry=10 rs6kf:/applfs/applb01/AIX/POWER
# common -rw,soft,bgintr,retry=10 rs6kf:/applfs/applb01/COMMON
/s /etc/auto.s #
/d /etc/auto.d #
/- /etc/auto.u #
Note that it might be necessary to explicitly fall back to an ancient
NFS version by specifying vers=2
as mount option.
The automount daemon has to be started e.g. in /etc/rc.local
:
/usr/sbin/automount -f /etc/auto.master
Alternatively, it may be placed in /etc/inittab
:
automount:2:once:/usr/etc/automount -T -v >/dev/null 2>&1
Note that the automount daemon should not be terminated
by kill -9
, rather use kill -15
in order to allow cleanup.
Note further, that the NFS daemons (/etc/rc.nfs
)
have to be active
in order for the automounter to work.