LNEXT
ONELCLEAN
UTERMINAL
TERMINAL
NEXT
$V1$
HILINE
PAUSE
q to quit, <CR> to continue
ACCTDIR
/usr/adm
|
|
acct
|
--------------------------
| | |
| | |
nite sum fiscal
GO
Although the accounting software is delivered with your UNIX
system, the system administrator/superuser needs to set it up
(like the UUCP system) prior to its being functional!
The 1st step in this process is to set up the user account adm
for the accounting system administrator, whose uid must be 4, and
whose HOME directory must be /usr/adm!
You will need to make sure that the /usr/adm directory exists and
also that the following line is added to your /etc/passwd file:
adm:np:4:4:Administrator:/usr/adm:
In addition you will need to create the following directories:
/usr/adm
/usr/adm/acct
/usr/adm/acct/nite
/usr/adm/acct/sum
/usr/adm/acct/fiscal
In the process of creating the
directory /usr/adm/acct/fiscal,
which command would you use if your
current directory is root (assuming
that the directory /usr/adm/acct
already existed)?
$PROMPT$
That is correct!
You've got it on the 2nd try.
Good, you understand the concept.
Please type
mkdir /usr/adm/acct/fiscal
Please type
mkdir /usr/adm/acct/fiscal
You will be helped this time!
$PROMPT$
FORGET1
mkdir /usr/adm/fiscal
Please observe the result.
$PROMPT$
fiscal
In addition, you would need to set up the proper file ownerships,
file protections, and correct group associations; the cookbook
procedure would involve entering the following commands:
chmod 755 /usr/adm /usr/adm/acct
chown adm /usr/adm /usr/adm/acct /usr/adm/acct/*
chgrp 4 /usr/adm /usr/adm/acct /usr/adm/acct/*
If all the files in the directory
/usr/adm/acct were to have all
permissions for the OWNER, and READ
and EXECUTE for the GROUP and OTHERS,
the command to accomplish this would
be:
$PROMPT$
That is correct!
You've got it on the 2nd try.
Good, you understand the concept.
Please type
chmod 0755 /usr/adm/acct/*
Please type
chmod 0755 /usr/adm/acct/*
You will be helped this time!
$PROMPT$
FORGET2
chmod 0755 /usr/adm/acct/*
$PROMPT$