Winter 2015 - January to Apil 2015 - Updated 2015-04-12 04:45 EDT
Do not print this assignment on paper!
- On paper, you will miss updates, corrections, and hints added to the online version.
- On paper, you cannot follow any of the hyperlink URLs that lead you to hints and course notes relevant to answering a question.
- On paper, scrolling text boxes will be cut off and not print properly.
23h59 (11:59pm) Friday April 17, 2015 (end of Week 14)
/home
to a
quota-enabled file system.Do not print this assignment on paper! On paper, you cannot follow any of the hyperlink URLs that lead you to hints and course notes relevant to answering a question.
rsyslog
logging mechanismRemember to READ ALL THE WORDS to work effectively and not waste time.
This is an overview of how you are expected to complete this assignment. Read all the words before you start working.
For full marks, follow these directions exactly.
You will create some minimal file system structure in your HOME directory on the CLS.
Most work will involve changes in your own Linux Virtual Machine running Centos 6.6. You can use the Checking Program to check your work as you go. You can check your work with the Checking Program as often as you like before you submit your final mark.
When you are finished, leave the files and directories in place on both the CLS and your own CentOS Virtual Machine as part of your deliverables. Do not delete any assignment work until after the term is over! Assignments may be re-marked at any time on the CLS; you must have your term work available on the CLS right until term end.
The previous term’s course notes are available on the Internet here: CST8207 GNU/Linux Operating Systems I. All the notes files are also searchable on the CLS. You can recall how to read and search these files using the command line on the CLS under the heading Copies of the CST8207 course notes near the bottom of the page Course Linux Server.
I recommend that once you have booted your CentOS VM, you connect to it
and work using a remote login session (e.g. ssh
or
PuTTY
) where copy-and-paste works and where you can have
multiple simultaneous connections into the VM. The VMware console is not
friendly.
If you can’t get an SSH (PuTTY or ssh
) connection working
into your Linux VM, see the Network
Diagnostics page.
Note that SSH sessions (and whatever you are doing inside them) do not survive across a VMware suspend. Make sure you save your editor files and exit your SSH session before you pause or suspend your virtual machine. (Editor sessions inside the VMware console do survive across suspend and resume.) (Editor sessions that run inside the VMware console do survive across suspend and resume, since they don’t depend on a network connection.)
Advanced users may look into the various virtual terminal programs such as
tmux
andscreen
that do allow you to suspend and resume your sessions even from a remote login.
root
files in non-root accountsFiles saved anywhere under your sysadmin HOME directory in CentOS should
be owned by you and in one of your groups, not owned by root
or
in the root
group. (The presence of root
files in
non-root accounts is often a sign that your machine has been cracked!)
Do not leave root-owner or root-group files in your account. You should
change the owner and group to you of anything you create as root
in your account. To find files not owned by you or not in your own group in
your account:
[abcd0001@abcd0001 ~]$ cd ; pwd ; echo "$USER" ; find . ! -user "$USER" -ls
/home/abcd0001 # your HOME directory not abcd0001
abcd0001 # your own userid not abcd0001
[... any non-abcd0001 owner files are listed here ...]
[abcd0001@abcd0001 ~]$ cd ; pwd ; echo "$USER" ; find . ! -group "$USER" -ls
/home/abcd0001 # your HOME directory not abcd0001
abcd0001 # your own userid not abcd0001
[... any non-abcd0001 group files are listed here ...]
Note that the above commands were run when logged in as
your sysadmin account, not when logged in as
root
– make sure the $USER
variable contains your
own userid not the root
userid. You want to find files not owned
by or in the group of your own userid.
If you find any files that are not owned by or in the group of your own sysadmin userid, you should change the owner and group of these files to be your own userid and group. (The command that does this has a recursive option that lets you change everything under a directory.)
Hints: You need to know which account has permissions to change the ownership and group of a file. You need to know how to make the change. See the examples in Users and Groups.
Advanced users can modify the above
find
to send pathnames intosudo
runningxargs
withchown
. See Find and Xargs.
Complete your CentOS Install and Configure.
Complete the previous assignment that included Migrate the /home directory to its own filesystem with quotas enabled.
Before you begin this assignment, create a snapshot of your CentOS Virtual Machine.
Do a Remote Login to the Course Linux Server (CLS) from any existing computer, using the host name appropriate for whether you are on-campus or off-campus.
Make the CLS directory ~/CST8177-15W/Assignments/assignment09
~/CST8177-15W/Assignments/assignment09
(the same hierarchy
as you have already made on the CLS).This CentOS assignment09
directory in your sysadmin
account is the Base
Directory for all pathnames in this assignment. Store your CentOS files
and answers below in this sysadmin Base
Directory.
Run the Fetch and Checking Program to verify your work so far.
You must have /home
mounted on its own file system with user
and group quotas enabled to do this section. You did that in a previous
assignment:
$ mount | grep /home
/dev/sdb1 on /home type ext4 (rw,usrquota,grpquota)
If you didn’t do that previous assignment, do it now, or skip this section.
For further information on quotas, refer to Red Hat Quotas
Install the quota
package.
Take your CentOS VM into single user mode. (See CST8207 Booting and GRUB. Remember that SSH sessions don’t work in single-user mode.)
In single-user mode, make sure your /home
file system is
mounted with quotas enabled. (You added quota options to the
fstab
in an earlier assignment.)
In single-user mode, use the quotacheck
command with
options appropriate to initialize the group quota file and user quota file
for the /home
filesystem.
In single-user mode, enable quotas (turn quotas on) for the
/home
filesystem.
Make sure you can log in to the User 100
account
(e.g. using su
).
quota
command as User 100
and ensure
you see no quotas.quota: Can't open quotafile /home/aquota.user: Permission denied
then you forgot to turn quotas on.Confirm (from the output of the quota
command) that the
User 100
account has only two files in it and is using only two
or three blocks. Clean out any extra files; there must be only one file.
User 100
counts as one “file”.User 100
should have a non-empty bash history file.For User 100
, set the following (unrealistic) test quota
values:
500
)700
)5
6
repquota.txt
/home
file system quota report for all
users and verify that User 100
has the correct limits:
User 100
has these exact numbers:
user100 1 500 700 1 5 6
used
column number for
User 100
is exactly 1 (one inode in use – the user’s HOME
directory).repquota.txt
in your sysadmin Base Directory. The
file will also be over 100 lines long.sudo
and
su
with the correct option to do a full login as
User 100
.
sudo
gain root privileges and you need
su
with the right option and userid to do the full login.sudo
to simulate
a login as a particular user name, without using su
.User 100
shell and check the quota of the
User 100
account:
User 100
is now using
two inodes (sometimes called “files”, but one is really a
directory).User 100
.
User 100
account? Why does quota show two
inodes in use and not just one?User 100
HOME directorybigfile1
user100_quota.txt
user100
in the user100
home directory:
Ensure that the User 100
quota shows only two files in
use. Remove any extra files from the account (and perhaps elsewhere in the
file system) if this is not true. The quota must show exactly two files in
use.
Exceed the soft block limit by creating a 600KB file with this command:
$ whoami ; pwd
user100
/home/user100
$ dd if=/dev/zero of=bigfile1 bs=1K count=600
sdb1: warning, user block quota exceeded.
600+0 records in
600+0 records out
$ ls -s
total 600
600 bigfile1
$ quota
Disk quotas for user user100 (uid 599):
Filesystem blocks quota limit grace files quota limit grace
/dev/sdb1 602* 500 700 6days 3 5 6
Creating this file may generate a quota exceeded message on your screen and on the system console, because you are now over the soft limit on the number of disk blocks you can use. If you are logged in via a terminal program, not on the VMware console, you may not see the quota exceeded warning message.
Even though you may see a quota exceeded
warning message, all
600KB were actually copied into the output file. You only exceeded the
soft quota, not the hard quota. The account should now have
three “files” in it.
bigfile1
is the third file inode.In the quota
output, note the number of blocks used and the
number of inodes (files
) in use. You should see that the number
of blocks used exceeds the soft quota but not the hard quota. The
grace
period column should say something like
6days
. The account should now have three “files” in it.
Run the same quota information command again and redirect the output
to a file named user100_quota.txt
in the user100
HOME directory. This is just the user100
quota information, so
it should be only three lines and 24 words:
$ whoami ; pwd
user100
/home/user100
$ wc user100_quota.txt
3 24 201 user100_quota.txt
You did read the words above about running all the commands in this
section as user100
, right? The account should now have four
“files” in it.
View the contents of the new user100_quota.txt
file:
files
) listed in the file
increased to four. Know why the number increased before the quota
command ran. (Review Redirection)Run ls
to display a long listing of all the pathnames in
the user100
HOME directory, including options to show the hidden
names and the sizes in blocks.
user100
should
be 4
– exactly the same as the number of files given in the
user100_quota.txt
file you created.User 100
should total to the same
number as given in the quota
command output.Run a summary Disk Usage of the current (HOME) directory.
exit
to revert from user100
back to your
sysadmin account.repquota_grace.txt
sudo
to generate another overall
/home
file system quota report for all users, redirecting the
output into the file repquota_grace.txt
in your sysadmin Base Directory.
sudo
and redirection, the file will be owned
by you, not by root
. (Review Sudo
Redirection)repquota_grace.txt
and verify that it is owned by you
and is consistent with the numbers in the user100_quota.txt
file.
6days
in the grace
column of the
Block limit
section for User 100
.bigfile2
smallfile
linkfile1
linkfile
User 100
again and do the following in the user’s
HOME directory:
Ensure that the User 100
quota shows only four inodes
(“files”) in use. Remove any extra files from the account (and perhaps
elsewhere in the file system) if this is not true. The quota must show
exactly four files in use and about 603 disk blocks in use.
Try to create a fifth file, as shown below. The command will give a
quota exceeded
message when the hard quota limit is reached:
$ whoami ; pwd
user100
/home/user100
$ dd if=/dev/zero of=bigfile2 bs=1K count=200
sdb1: write failed, user block limit reached.
dd: writing 'bigfile2': Disk quota exceeded
98+0 records in
97+0 records out
$ ls -s bigfile2
97 bigfile2
You will see a quota error message from the dd
command
part-way through the file creation. Note that this time the output file does
not contain the expected 200KB of data. (It should contain about
97K.) The file is truncated because the hard quota limit was reached. You are
not allowed to use any more disk blocks once you hit the hard quota.
Display the quota information for the account:
700
has been reached.5
(the soft
limit).Create an empty sixth file named smallfile
and note:
5
). The system let you create the sixth file, but warned
you that you are over your soft file limit quota.5
files (the soft limit) in it.Try (and fail) to create a seventh empty file (any name):
$ quota
Disk quotas for user user100 (uid 599):
Filesystem blocks quota limit grace files quota limit grace
/dev/sdb1 700* 500 700 6days 6* 5 6 6days
$ touch foo
sdb1: write failed, user file limit reached.
touch: cannot touch 'foo': Disk quota exceeded
You will find that you get error messages and can’t create any more files,
because you hit the hard limit on the number of files you can create (max
6
). Programs trying to create new files or directories will fail
and return error messages.
Create a hard link from bigfile1
to
linkfile1
Try (and fail) to create a symbolic link with target
smallfile
named linkfile
$ ln -s smallfile linkfile
ln: creating symbolic link 'linkfile': Disk quota exceeded
Display the quota information and verify that both the block and files quotas have hit their hard limits for this user.
exit
to revert back to your sysadmin self.repquota_hard.txt
repquota_hard.txt
in your sysadmin Base Directory.
sudo
) so
that the owner of the redirection output file is your sysadmin user, so that
the updated quota information includes this new file.diff
to put the difference between
repquota_{grace,hard}.txt
into repquota_diff.txt
and view the file to verify that the changes in usage look right (exactly
eight lines of output):
root
user. No changes.root
user, or no changes for
your own userid, you did not create the repquota_hard.txt
file
correctly using sudo
from your own sysadmin account. Delete the
file and review all the words on the previous step.user100_quota.txt
user100
file named user100_quota.txt
into your own sysadmin Base Directory. (Needs
privilege; you know what to do.)
-p
option to cp
, the
file copy will also be owned by User 100
and
User 100
will now be using one more block and one more file than
allowed by the hard quota limit.User 100
is no longer
above either of the hard limits. The user should be exactly at both the block
quota limit and file quota limit.Run the Fetch and Checking Program to verify your work so far.
Do the following tasks on the console (in the VMware window) of your VM.
Back up and then edit your inittab
file to configure your
system so that it boots by default into runlevel 2. (This changes one
character in the file.) The changed inittab
should have these
wc
and sum
numbers:
26 149 884
and 57793 1
26 149 884
and 57789 1
Reboot your system, and after it comes back up, log in and display the runlevel to verify that it is in runlevel 2.
pse_rc_2.txt
Take a listing of all the processes running on your system using ps -e
and redirect the output to pse_rc_2.txt
in your sysadmin Base
Directory (approximately 78 lines).
Take your system into single user mode (runlevel 1) using the
appropriate arguments to the shutdown
command.
pse_rc_1.txt
As root, take a listing of all the processes running on your system
using ps -e
and redirect the output to
pse_rc_1.txt
in your sysadmin Base Directory
(approximately 63 lines).
Return back to the default runlevel by exiting the single user mode shell.
pse_rc_diff.txt
Log in as your sysadmin user and put the text difference between the
two files pse_rc_{1,2}.txt
into a pse_rc_diff.txt
file.
Take note of some of the differences, especially lines that include
sshd
, ntpd
, and rsyslogd
. Find the
symbolic links for these service names in the runlevel 1 and 2 init
directories, namely /etc/rc1.d
and /etc/rc2.d
. The
first character of those link names will be consistent with what you see in
the process lists for those two runlevels.
Your system will continue to boot into runlevel 2 for the rest of this lab. Do not change the runlevel back to its previous value.
Fix the ownership of any root
-owned
files in your sysadmin account.
Run the Fetch and Checking Program to verify your work so far.
chkconfig
We’ll consider the
ntpd
service and runlevel 3. We’ll look at the contents of therc3.d
directory whilentpd
is seton
for runlevel 3. Then we’ll turnntpd
off
for runlevel 3, and look at the contents of therc3.d
directory again to see how it changed.
ntpd_chkconfig.txt
View the top of the script /etc/init.d/ntpd
and note the
comment lines used for chkconfig
control. Put the line that
indicates the chkconfig
default runlevels and start and stop
priority numbers into ntpd_chkconfig.txt
in your sysadmin Base Directory:
$ wc ntpd_chkconfig.txt
1 5 21 ntpd_chkconfig.txt
$ sum ntpd_chkconfig.txt
09004 1
ntpd_before.txt
Run the command to display the runlevels for which the
ntpd
service is on or off. Redirect the output of this command
into ntpd_before.txt
in your sysadmin Base Directory:
$ wc ntpd_before.txt
1 8 54 ntpd_before.txt
$ sum ntpd_before.txt
42633 1
rc3d_before.txt
ls
listing of /etc/rc.d/rc3.d/
and
put this listing into rc3d_before.txt
in your sysadmin Base Directory (about
26 lines, 277 words).Think about how you can search for ntpd
but NOT
ntpdate
. In this and the following tasks, your grep
for ntpd
should result in the line containing ntpd
,
but not the line containing ntpdate
.
rc3d_ntpd_before.txt
Run a grep
command for ntpd
in the
rc3d_before.txt
file, and put the output (one line) into
rc3d_ntpd_before.txt
in your sysadmin Base Directory.
(Should be one line – the pattern you use must not match the line with
ntpdate
.)
$ wc -lw rc3d_ntpd_before.txt
1 11 rc3d_ntpd_before.txt
Verify the priority number contained in the name of the symbolic link
for ntpd
in rc3d_ntpd_before.txt
against the start
priority number in the line in ntpd_chkconfig.txt
(and confirm
that they match).
Use chkconfig
to turn ntpd
off in runlevel
3.
ntpd_after.txt
Run the command to display the runlevels for which the
ntpd
service is on or off, and check to be sure it’s off in
runlevel 3, but the other runlevels are unchanged. Redirect the output of
this command into ntpd_after.txt
in your sysadmin Base Directory:
$ wc ntpd_after.txt
1 8 55 ntpd_after.txt
$ sum ntpd_after.txt
65203 1
rc3d_after.txt
chkconfig
to turn ntpd
off
in runlevel 3, take another long listing of /etc/rc.d/rc3.d
and
put the output into rc3d_after.txt
in your sysadmin Base Directory (also
26 lines, 277 words).rc3d_ntpd_after.txt
Run a grep
command for ntpd
in the
rc3d_after.txt
file, and put the output (one line) into
rc3d_ntpd_after.txt
in your sysadmin Base Directory.
(Should be one line – your grep
should not match the line with
ntpdate
).
$ wc -lw rc3d_ntpd_after.txt
1 11 rc3d_ntpd_after.txt
Verify the priority number contained in the name of the symbolic link for
ntpd
in rc3d_ntpd_after.txt
against the stop
priority number in the line in ntpd_chkconfig.txt
(and confirm
that they match).
Run the diff
command on rc3d_{before,after}.txt
to see what the chkconfig
command did. You should see that the
symbolic link to the ntpd
service has changed from a
start symlink at priority 58
to a
kill (stop) symlink at priority 74
.
Changing these symlinks is how chkconfig
turns on and off
services. You may need to make these same symlink changes manually if
chkconfig
is not available on your system.
Turn the ntpd
service on again in runlevel 3 (back to
normal).
Run the Fetch and Checking Program to verify your work so far.
We’ll look at the logging of
ssh
activity. Then, we’ll change the file thatssh
logging goes to, and change it back.
rsyslog_authpriv.txt
View the configuration file for rsyslog
, find the
RULES
section, and find the line dealing with the
authpriv
facility (the line that starts with the word
authpriv
). Put this line into rsyslog_authpriv.txt
in your sysadmin Base
Directory:
$ wc rsyslog_authpriv.txt
1 2 72 rsyslog_authpriv.txt
$ sum rsyslog_authpriv.txt
42327 1
sshd_logging.txt
View the configuration file for the SSH service daemon
sshd
named /etc/ssh/sshd_config
(note the
d
in sshd
) and find the Logging
section. Copy the one active Logging
configuration line (it
starts with the word SyslogFacility
) into the file
sshd_logging.txt
in your sysadmin Base Directory:
$ wc sshd_logging.txt
1 2 24 sshd_logging.txt
$ sum sshd_logging.txt
50989 1
Remember the name of this sshd
configuration file and the
location of this rsyslog
line. You will need to edit it,
below.
Notice the correspondence between the contents of
rsyslog_authpriv.txt
and sshd_logging.txt
and
determine the file that sshd
log entries are added to. They both
use the same logging keyword (though one is using it upper-case, which
doesn’t matter).
Start a separate window (console, or PuTTY
, or
ssh
) and use the tail -f
command with
sudo
to watch the file that sshd
log entries go
to.
-f
option keeps watch on the end of the file, waiting
for new lines to appear.sudo
command you just used.In another window, log in again to your CentOS VM with
ssh
or PuTTY
, and observe the output of your
tail -f
command in the other window.
sshd
log entries for your login
activity.Still in the same ssh
/ PuTTY
window from
the last step, use the sudo
command to run head
on
the /etc/shadow
file. The use of sudo
will cause
log entries for sudo
in the same file on which you’re running
the tail -f
command. (Now you know to which log facility, and
therefore in which log file, sudo
invocations get
logged!)
ssh_sudo_log.txt
tail -f
with ^C
and then put the
last 20 lines of that log file into ssh_sudo_log.txt
in your
sysadmin Base
Directory.
sshd
and
sudo
log entries you saw in the previous steps.tail -f
of the log file to ssh_sudo_log.txt
, and
repeat the ssh
and sudo
steps to be sure the
logging output goes into ssh_sudo_log.txt
ssh_sudo_log.txt
file must show logging lines from both
ssh
and from sudo
.sshd_new.txt
sshd
configuration file viewed
earlier.
AUTHPRIV
to the AUTH
logging facility by
uncommenting one line and commenting out another. (Both lines exist in the
file already.)wc
on the file should be the same. Run
a diff
between the old and new files to confirm your
change.sshd_new.txt
in your
sysadmin Base
Directory.sshd
service using the appropriate command.
Stopping sshd: [OK]
followed by
Starting sshd: [OK]
.rsyslog_auth.txt
Read the Hints below. View the rsyslog
config file and
put the line of the rule that controls the auth
facility into
rsyslog_auth.txt
in your sysadmin Base Directory:
$ wc rsyslog_auth.txt
1 2 74 rsyslog_auth.txt
$ sum rsyslog_auth.txt
06250 1
Hint: There is no line that explicitly matches the
auth
facility. Look for a “catch-all” or “log anything” rule
instead.
Similarly to how you monitored sshd
activity before, run
tail -f
on the log file corresponding to the auth
facility (a different log file now), which is now used for sshd
logging.
Similarly to before, generate some sshd
activity to appear in
the log by using ssh
or PuTTY
, and confirm that you
see a log entry in the correct log file that you’re monitoring due to the
previous step.
Change /etc/ssh/sshd_config
back to use the previous log
facility, and restart the sshd
service.
Run the Fetch and Checking Program to verify your work so far.
At Managing Quotas, Red Hat recommends a daily cron job to
touch /forcequotacheck
so thatquotacheck
will be run during the next reboot. We will follow Red Hat’s advice because it exercises many of the concepts we’ve been studying: booting and init scripts, quotas, shell scripting, regularly run sysadmin jobs, and logging.
force_grep.txt
quotacheck_grep.txt
/forcequotacheck
.
The sysVinit system initialization script is still used by CentOS 6,
even though CentOS 6 uses the upstartd
system. Find the
invocation of this system initialization script in the upstartd
configuration files by doing a grep
for sysinit
in
/etc/init/rcS.conf
, which should print one line showing the
absolute pathname of the system initialization script.
Now, grep
for forcequotacheck
in that script
pathname. You should see two lines mentioning the
forcequotacheck
file. Run the command again, redirecting the
output to force_grep.txt
in your sysadmin Base Directory:
$ wc force_grep.txt
2 20 147 force_grep.txt
Do a case-insensitive grep
for quotacheck
in
that same script:
grep
It will print out enough lines so that with your knowledge of
scripting, you can see the gist of what the script does with
quotacheck
.
Redirect the output of this case-insensitive grep
to file
quotacheck_grep.txt
in your sysadmin Base Directory:
$ wc quotacheck_grep.txt
7 41 334 force_grep.txt
The
logger
command writes into the system logs via thersyslog
service. You can use an option to set the priority to use any syslog facility and any level, so you can write a log message into any log file on the system that is written byrsyslog
.
messages_tail.txt
logger
command with no options and a simple
message: I made this default log entry
logger
(RTFM)?tail
on that system log file to see your message.tail
output (10 lines showing your message) as file
messages_tail.txt
in your sysadmin Base Directory.secure_tail.txt
logger
command again, but use options to set the
tag to testing
and the
priority to authpriv.info
and the message to
An authpriv message
sshd
tail
on that system log file to see your message.tail
output (10 lines showing your message) as file
secure_tail.txt
in your sysadmin Base Directory.forcequotacheck.sh
forcequotacheck.sh
(in your sysadmin Base Directory) that
takes no arguments and creates an empty /forcequotacheck
file
(note the full pathname), as follows:
Put our standard script header at the top.
Add argument checking. Print the standard error and usage messages and exit with a non-zero status if any arguments are supplied to the script.
grep
to
search all assignment directories and all scripts to find one that has the
code you need. You choose. (p.s. Choose lazy.)Write to the system log file using a logger
command as
follows:
user.info
as the facility.level
pair for
all logging messages in this script.Attempting to force quota check upon next reboot
Create the empty /forcequotacheck
file using an
if
statement with the following structure:
IF the creation of empty file /forcequotacheck is successful
log a message "Successfully forced quota check upon next reboot"
exit the script with a success return value
ELSE
log a message "Failed to force quota check upon next reboot"
exit the script with a failure return value
testing.txt
sudo
sudo
so that it succeeds.
testing.txt
enough lines from the system log
file to show the Attempting
messages followed by both the
success and failure messages (at least four log lines).cron
to run your script daily by copying
your script file into the /etc/cron.daily
directory.Run the Fetch and Checking Program to verify your work so far.
logrotate
configuration file to keep 5 weeks
worth of backlogs by default.
/etc
directory, as you would expect.wc
and sum
should be
35 110 662
and 56994 1
.logrotate
configuration file for the
yum
package to rotate the yum
logs monthy rather
than yearly.
logrotate
-related directory
under /etc
and inside that directory look for a yum
-specific file.wc
and sum
should be 6 10 88
and 42386 1
.Run the Fetch and Checking Program to verify your work so far.
logwatch
package.Note: Some documentation says that the
logwatch.conf
file is located in/etc/logwatch.conf
but this is not correct. Search for the file name under/etc
(use a command to do this, don’t do it the hard way) and use its actual location.
Change the user that receives logwatch
emails from
root
to your own sysadmin userid.
Change the detail of logwatch
summaries from
Low
to Med
(medium).
Use sudo -i
to simulate a root
login, and
run the script /etc/cron.daily/0logwatch
(cron
does
this daily, but you can do it too whenever you want).
email.txt
logwatch
emails, you should have an email
from logwatch
logwatch
mail message to file
email.txt
in your sysadmin Base Directory.email.txt
file contains the
logwatch
mail message text.Detail Level of Output
number that results from the Med
option in the config file.Run the Fetch and Checking Program to verify your work so far.
psacct
package, for monitoring process
activities.psacct_levels.txt
Use chkconfig
to find out for which runlevels the
psacct
service is on. Put the output from the command you used
into psacct_levels.txt
in your sysadmin Base Directory:
$ wc psacct_levels.txt
1 8 58 psacct_levels.txt
$ sum psacct_levels.txt
60721 1
Turn on psacct
for runlevels
2
,3
,4
,and 5
Check the status of the psacct
service, and start it if
it’s not enabled.
Use the last
command to view a listing of last logged in
users
user100
account unless you already have one created
from a previous assignment. Give it a simple password.user100
by using
ssh
to login a few times: ssh user100@localhost
user100
, type a few commands such as
date
or who
and then exit
to log out
again. Repeat once or twice.last_user100.txt
Use only the last
command to select and view the last
logins of only User 100
, then run the command again, redirecting
the output into last_user100.txt
in your sysadmin Base Directory:
$ tail -2 last_user100.txt | wc
2 7 38
Hint: Do not use grep
or any pipeline for
this. Use one command with one argument. RTFM.
Use the lastlog
to display a report of the most recent
logins of all users
lastlog_user100.txt
Use only the lastlog
command to select and view a
two-line report of the logins for User 100
and then run the
command again, redirecting the two lines into
lastlog_user100.txt
in your sysadmin Base Directory:
$ head -1 lastlog_user100.txt | wc
1 4 50
Do not use grep
or any pipeline to create this file. One
command. RTFM.
ac_individuals.txt
ac
command with the option to also print the
individual totals (time totals) of the hours your users have been logged in.
Run the command again, redirecting the output to
ac_individuals.txt
in your sysadmin Base Directory.lastcomm.txt
Run the lastcomm
command to see all of the commands that
have been run on your system since you enabled psacct
and run
the command again, redirecting the output to lastcomm.txt
in
your sysadmin Base
Directory.
Change the ownership and group to you of any remaining
root
owner or group files anywhere in your CentOS system admin
account. (If you’ve done your work carefully, there should be nothing owned
by root
.)
root
-owned files as an indication that someone has
broken into the system. Don’t leave root
-owned files in your own CentOS sysadmin
account.root
files in your CLS assignment directories. This is
intentional: don’t delete these files from the CLS!Run the Fetch and Checking Program to verify your work so far.
That is all the tasks you need to do.
Log in to the CLS and submit your mark from the CLS following the Checking Program instructions below.
Read your CLS Linux EMail and remove any messages that may be waiting. See Reading eMail for help.
Optional: Keeping your main configuration snapshots, remove any intermediate snapshots you no longer require, to free up disk space. - Be careful not to remove your current work!
See CentOS Remote Checking, Marking, and Submitting your Work.