Information
|
TETware
Knowledge Base
40.
How to run TETware from an NFS server
The information in this article is not applicable to Win32 systems.
You can run TETware from a server over NFS.
Here are some instructions which describe how to set up one of the
configurations that we support when we run the
TETware training course:
-
Create a user called
tet
in group
tet
on the server.
-
Install TETware on the server in a directory owned by
the user
tet ;
for example, in /home/tet.
In the instructions that follow, assume that the server is
called
tetserver .
-
Have each workstation mount
tetserver:/home/tet .
For example:
mkdir -p /nfs/tetserver/home/tet
mount -r tetserver:/home/tet /nfs/tetserver/home/tet
-
Create a
tet root
directory on each workstation in some private area.
For example, for user
fred :
mkdir /home/fred/tet3
chgrp tet /home/fred/tet3
chmod g+ws /home/fred/tet3
TET_ROOT=/home/fred/tet3
export TET_ROOT
It is best to put these last two lines in each user's
.profile .
-
Create symbolic links in each private
tet root
directory to the server's
tet root
directory.
For example:
cd /home/fred/tet3
ln -s /nfs/tetserver/home/tet/bin .
ln -s /nfs/tetserver/home/tet/inc .
ln -s /nfs/tetserver/home/tet/lib .
-
Add the group
tet
to each user's supplementary group list.
-
Have each user work with a umask of 2.
-
In Distributed TETware,
run
in.tccd
with the
-m2
option.
See also
-
The
tccd
manual page in the TETware User Guide.
|