Difference between revisions of "OPS235 Lab 5 - CentOS7 - HD2"

From CDOT Wiki
Jump to: navigation, search
(Remove redundant, inconsistent instructions.)
(Redirected page to OPS235 Lab 5 - CentOS7 - SSD2)
 
Line 1: Line 1:
[[Category:OPS235]]
+
#REDIRECT [[OPS235_Lab_5_-_CentOS7_-_SSD2]]
 
 
=LAB PREPARATION=
 
{| width="40%" align="right" cellpadding="10"
 
|- valign="top"
 
|
 
[[Image:software.png|thumb|right|200px|Monitoring Disk Space can fix problems <u>'''before'''</u> they become a crisis (like running low on hard disk space). We will use LVM to easily resize Linux file-systems.]]
 
|
 
[[Image:crontab.png|thumb|right|175px|Linux system administrators need to schedule Linux shell scripts and commands (via '''crontab''') to automatically run in order to be more productive.]]
 
|}
 
 
 
 
 
 
 
===Purpose / Objectives of Lab 5===
 
 
 
The purpose of this lab is to demonstrate how a Linux system administrator can monitor hard disk space availability, and to manage file system size via the Logical Volume Manager (LVM) application. This lab will also demonstrate how to manually mount (i.e. connect) and unmount (disconnect) partitions to file system directories, and demonstrate how to have partitions automatically mounted to directories upon Linux system startup.
 
 
 
 
 
<u>Main Objectives</u>
 
 
 
:* Monitoring Disk Space with utilities such as '''ssm list''', '''df -h''', and '''du -ah'''.
 
:* Use the '''crontab''' utility to automatically schedule the execution of a shell script to "flag" low disk space.
 
:* Use '''LVM''' to '''resize partitions via command-line utilities'''.
 
:* Create, partition and format '''virtual hard disks''' to increase the size of file systems.
 
:* Manually connect and disconnect directories (mount points) to existing partitions ('''mount''', '''umount''').
 
:* Edit the '''/etc/fstab''' file to automatically mount partitions upon Linux server boot-up, and test the configuration prior to Linux server boot-up.
 
 
 
 
 
{|width="85%" cellspacing="0"
 
 
 
|- valign="top"
 
 
 
|colspan="3" style="font-size:16px;font-weight:bold;border-bottom: thin solid black;border-spacing:0px;"|Minimum Required Materials<br>
 
 
 
|colspan="3" style="font-size:16px;font-weight:bold;border-bottom: thin solid black;border-spacing:0px;padding-left:20px;"|Linux Command Reference<br>
 
 
 
|- valign="top"
 
 
 
| |[[Image:harddrive.png|thumb|left|75px|<b>Removable SATA Hard Disk</b>]]
 
 
 
|style="padding-left:20px;" |[[Image:ubs-key.png|thumb|left|85px|<b>USB key</b><br>(for backups)]]
 
 
 
|style="padding-left:20px;" |[[Image:log-book.png|thumb|left|70px|<b>Lab5 Log Book</b>]]
 
 
 
|style="padding-left:20px;" |LVM Information
 
[http://man7.org/linux/man-pages/man8/vgs.8.html vgs]<br>
 
[http://man7.org/linux/man-pages/man8/pvs.8.html pvs]<br>
 
[http://man7.org/linux/man-pages/man8/lvs.8.html lvs]<br>
 
[http://man7.org/linux/man-pages/man8/vgdisplay.8.html vgdisplay]<br>
 
[http://man7.org/linux/man-pages/man8/pvdisplay.8.html pvdisplay]<br>
 
[http://man7.org/linux/man-pages/man8/lvdisplay.8.html lvdisplay]<br>
 
|style="padding-left:20px;" |LVM Management
 
[http://manpages.ubuntu.com/manpages/trusty/man8/ssm.8.html ssm]<br>
 
[http://man7.org/linux/man-pages/man8/lvextend.8.html lvextend]<br>
 
[http://man7.org/linux/man-pages/man8/lvcreate.8.html lvcreate]<br>
 
[http://man7.org/linux/man-pages/man8/lvreduce.8.html lvreduce]<br>
 
[http://man7.org/linux/man-pages/man8/pvcreate.8.html pvcreate]<br>
 
[http://man7.org/linux/man-pages/man8/vgextend.8.html vgextend]<br>
 
|style="padding-left:20px;" |Miscellaneous
 
[http://man7.org/linux/man-pages/man8/mount.8.html mount]<br>
 
[http://man7.org/linux/man-pages/man8/umount.8.html umount]<br>
 
[http://man7.org/linux/man-pages/man1/df.1.html df]<br>
 
[http://man7.org/linux/man-pages/man1/du.1.html du]<br>
 
[http://man7.org/linux/man-pages/man1/awk.1p.html awk]<br>
 
[http://tldp.org/HOWTO/Partition/fdisk_partitioning.html fdisk]<br>
 
[http://www.cyberciti.biz/faq/howto-format-create-linux-filesystem/ mkfs]<br>
 
[http://man7.org/linux/man-pages/man5/fstab.5.html /etc/fstab]<br>
 
[http://code.tutsplus.com/tutorials/scheduling-tasks-with-cron-jobs--net-8800 Using crontab]
 
|}
 
 
 
 
 
= INVESTIGATION 1: MONITORING HARD DISK SPACE =
 
 
 
 
 
[[Image:disk_usage.png|thumb|500px|right|The '''df''' and '''du''' commands are useful tools for Linux system administrators to flag disk space issues and investigate their causes.]]
 
=== Part 1: Hard Disk Space Utilities===
 
 
 
Another essential duty of a Linux system administrator is to anticipate problems and take preventative measures to avoid computer system problems <u>before</u> they occur. An example would be to periodically monitor hard disk space in order to make adjustments before it impacts on system performance.
 
 
 
Therefore, we are going to learn in this section how to monitor disk space activity to help take corrective action.
 
 
 
:'''Perform the following steps:'''
 
 
 
# Launch your '''c7host''' and and launch your '''centos2''' VM.
 
# Switch to your '''centos2''' machine.
 
# Open a terminal, and login as '''root'''.
 
# Issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">df -h</span></code></b>
 
# Note the disk space usage for the '''/''' and '''/home''' partitions.
 
# If a partition is running out of available space, the Linux System Administrator can reallocate space among partitions or add another disk and grow the file system. The administrator can also investigate the cause of low disk space. Two examples immediately come to mind: excessive use of space from users, and potential penetration from hackers.
 
# To investigate excessive disk usage by regular users, you can obtain a total amount of disk usage for that user by issuing the command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">du -ha . | more</span></code></b>
 
# If there is a recurring space usage problem with regular users, the Linux system administrator can impose quotas (caps on disk usage). This method is not taught in this course.
 
# The methods to monitor potential penetration to a Linux system are too numerous, and are taught in other courses (for example: SEC520). One method of monitoring potential penetration is use the command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">find -P / -size +100000k</span></code></b>
 
# The next section will apply some of these tools we have discussed into a shell script and crontab entry to periodically monitor and contact the system administrator of potential disk space issues (before they become a serious problem).
 
 
 
 
 
{|width="40%" align="right" cellpadding="10"
 
|- valign="top"
 
|{{Admon/tip|Bash Shell Scripting Tips:|<br>'''<u>Using awk to Manipulate Text</u>'''<br><br><ul><li>Very useful command for report generation, text file repair, or text and floating-point decimal manipulation. The command mimics a C program, with braces '''{  }''' that surround the action to perform based on records from a database file matching either test conditions, regular expressions, etc. Fields appear as numbers with $.<br><br></li><li>Examples:<br><br>''awk '{print}' data-file.txt''<br>''awk -F";" '{print $5,$3}' data-file.txt''<br>''awk -F"," '$4 &gt;&#61; 10000 {print $1, $2}' salary.txt''<br><br></li></ul>'''<u>Crontab (Chronograph Tables)</u>'''<br><br><ul><li>Used to automatically run (as opposed to manually run) scripts, programs, or commands. There are many tables (files), but the main one is: '''/etc/cron'''. The '''crontab''' command can be used to ''list'', ''create'', ''modify'' or ''remove'' scheduled jobs in the file.<br><br></li><li>Examples:<br><br>''crontab -e -u user'' # create/modify<br>''crontab -r -u user-name'' # remove specific user's crontab<br>''crontab -l -u username'' #List current schedules</li></ul>}}
 
|}
 
===Part 2: Using crontab to Automatically Alert System Administrator of Low Hard Disk Space===
 
 
 
This section focuses on how to automatically run shell scripts without the Linux system administrator being there to issue that shell script. It would be highly unlikely to expect a system administrator to stay up late (eg. 2 a.m.) to manually run a shell script to terminate processes or to re-boot Linux servers. Database files (tables) are used to provide instructions on how frequent shell scripts or commands can be run.
 
 
 
The '''cron''' daemon is used to refer to these shell scripts (or other commands or programs) and to run them on a pre-determined basis. The term '''cron''' comes from the old word '''chronograph''' meaning a special type of watch (actually a ''stop-watch'') to help monitor and schedule routine tasks.
 
 
 
:'''Perform the following steps:'''
 
 
 
#Perform this section in your '''c7host''' machine
 
#Make certain you are logged in as '''root'''.
 
#Change to the '''/root/bin''' directory.
 
#Download the following shell script by issuing the following command: <br><b><code><span style=" pointer-events:none;cursor:default;color:#3366CC;font-size:1.2em;">wget https://scs.senecac.on.ca/~murray.saul/monitor-disk-space.bash</span></code></b>
 
#Try to understand what this Bash Shell script does (refer to man pages for the '''awk''' command), and then run the script as root.
 
#Give execute permissions and run this shell script. This script is supposed to notify the root user by email if there are any potential partition size issues.
 
#Issue the follow command: <b><code><span style="color:#3366CC;font-size:1.2em;">mail</span></code></b> (if you get an error, install email by issuing the command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">yum install mailx</span></code></b><br>Check to see if there are any mail messages. If there are mail messages, they do not relate to this shell script execution. Remove all mail messages by typing d immediately followed by a mail message number range (eg. to remove all messages. For example, if there are 5 messages, type '''d1-5''' and then press '''ENTER''' and enter '''q''' to exit the mail application).
 
#Edit the '''monitor-disk-space.bash''' shell script, and set the <b><code><span style="color:#3366CC;font-size:1.2em;">ALERT=90</span></code></b> value to <b><code><span style="color:#3366CC;font-size:1.2em;">ALERT=10</span></code></b>. Then save your editing session, and re-run this shell script.
 
#Run the '''mail''' command. Do you have a mail message? Enter the mail message number to view the message. If there is a message, what is the purpose of this message?
 
# Exit from the mail command.
 
 
 
 
 
In order to automatically run the above-mentioned script periodically, you use the scheduler in Linux called '''crontab'''. The term crontab stands for '''Chronograph Tables''', where a chronograph is the old term for a timepiece (the forerunner of the modern stop-watch). You can run the crontab command to schedule commands and shell script to be run in a number of different ways.
 
<br><br>
 
<ol>
 
  <li value="11">Quickly view the tutorial about the <b>[http://code.tutsplus.com/tutorials/scheduling-tasks-with-cron-jobs--net-8800 Using crontab]</b> file to understand the purpose of this
 
  file and how to basically set up a schedule to run a shell script.</li>
 
  <li>Issue the following command to setup a crontab entry for root:<br><b><code><span style=" pointer-events:none;cursor:default;color:#3366CC;font-size:1.2em;">crontab -e</span></code></b></li><li>Enter the following line in order to run at 6:00 on the first day of every month:<br><b><code><span style=" pointer-events:none;cursor:default;color:#3366CC;font-size:1.2em;">0 6 1 * * /root/bin/monitor-disk-space.bash #Runs first day of each month (6:00 am)</span></code></b></li><li>'''Save''' the crontab entry.</li><li>Confirm that the entry was properly saved by issuing the following command:<br><b><code><span style=" pointer-events:none;cursor:default;color:#3366CC;font-size:1.2em;">crontab -l</span></code></b></li></ol>
 
 
 
 
 
'''Answer INVESTIGATION 1 observations / questions in your lab log book.'''
 
 
 
 
 
=INVESTIGATION 2: MANAGING HARD DISK SPACE USING LVM=
 
 
 
An application called '''LVM''' is a very useful tool for Linux system administrators to easily manage file systems, in some cases, even when the computer system is running!
 
 
 
'''LVM''' ('''Logical Volume Management''') is used to manage hard disk drives / partitions for Linux and Unix systems. LVM provides more flexibility than just partitioning hard disks. '''Volume Groups''' are areas used to define '''Physical Volumes''' (i.e. hard disks, disk partitions, or other forms of storage devices). '''Logical Volumes''' are then used to relate directories (mount points) to a specific physical volume or for a "range" or "span" of physical volumes.
 
 
 
LVM allows more flexibility and growth potential for Linux systems (for example, having Logical volumes span multiple hard disks). CentOS uses LVM by default upon installation. Other Linux distributions may provide the capacity to install LVM,
 
 
 
 
 
[[Image:ssm.png|thumb|600px|right|Graphical programs like '''system-config-lvm''' are <u>'''deprecated'''</u>, and no longer come bundled with Centos. There are other graphical LVM programs, but are for the KDE desktop environment as opposed to Gnome. Command-line tools such as '''ssm''' (System Storage Manager), '''fdisk''', '''mkfs''', '''pvcreate''', '''lvextend''', and '''lvreduce''' are sufficient to resize file systems when using LVM.]]
 
=== Part 1: Managing File System Size with Existing Hard Drive ===
 
 
 
We will now use LVM in order to grow and reduce our file system, using extra unallocated space on our existing (default) virtual hard disk for our centos2 VM.
 
 
 
:'''Perform the following steps:'''
 
 
 
# Remain in your '''centos2''' VM for this section.
 
# Make certain that you are logged in as '''root'''.
 
#Issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">ls /dev/vd*</span></code></b><br><br>'''NOTE:''' If nothing displays, issue the command: '''ls /dev/sd*''' and use that device pathname '''/dev/sda''' instead, and notify your instructor when about to run your lab5-check.bash shell script at the end of this lab.<br><br>
 
# Issue the following command to install the '''ssm''' command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">yum install system-storage-manager</span></code></b>
 
# Issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">ssm list</span></code></b>. Take a few moments to note the volume group, physical volume and logical volume sections of the command output.
 
# Compare this output from the ssm command with these other lvm commands: <b><code><span style="color:#3366CC;font-size:1.2em;">lvs</span></code></b>, <b><code><span style="color:#3366CC;font-size:1.2em;">pvs</span></code></b>, and <b><code><span style="color:#3366CC;font-size:1.2em;">vgs</span></code></b>. Which method do you prefer to use?
 
# Check to see if there is any remaining space on your existing hard disk. Can you see any?
 
# You can create a partition by using the fdisk command. Issue the following command: <br><b><code><span style="color:#3366CC;font-size:1.2em;">fdisk /dev/vda</span></code></b> (or fdisk /dev/sda if there is no /dev/vda).
 
#At the '''fdisk''' prompt, issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">p</span></code></b>. What does this do?
 
#Now issue the commands <b><code><span style="color:#3366CC;font-size:1.2em;">n</span></code></b> (new partition), <b><code><span style="color:#3366CC;font-size:1.2em;">p</span></code></b> (primary partition), <b><code><span style="color:#3366CC;font-size:1.2em;">3</span></code></b> (i.e. next available partition number). When prompted for initial block, press '''enter''' to accept the default beginning block size, and type: <b><code><span style="color:#3366CC;font-size:1.2em;">+3G</span></code></b> at ending block (create 2GB for partition) and press '''enter'''.
 
#At the fdisk prompt, issue the command <b><code><span style="color:#3366CC;font-size:1.2em;">p</span></code></b> to review the partition information.
 
#Enter the command <b><code><span style="color:#3366CC;font-size:1.2em;">w</span></code></b> to save partition table and exit (ignore WARNING message).
 
 
 
{{Admon/important|You MUST reboot your centos2 VM|You MUST now reboot your centos2 VM before proceeding!}}
 
 
 
<ol><li value="13">You <u>'''must'''</u> '''restart''' your centos2 VM to allow changes to take effect.</li>
 
<li>Verify that you created this partition by issuing the following command: <b><code><span style="color:#3366CC;font-size:1.2em;">fdisk -l /dev/vda</span></code></b></li>
 
<li>Re-issue the '''ssm''' command. Do you see a new /dev/vda3 partition under Physical Volumes?</li>
 
<li>To add the newly created partition, you need to add it into LVM to be used. Issue the following command to add the partition into LVM: <br><b><code><span style="color:#3366CC;font-size:1.2em;">pvcreate /dev/vda3</span></code></b> (or ''pvcreate /dev/sda3'' ) (enter '''y''' to proceed - ignore warning)</li>
 
</ol>
 
{{Admon/important|Check your VG name|Run <b>vgs</b> to determine your Volume Group name. If it is just <b>centos</b>, replace <b>centos_centos2</b> with <b>centos</b> for the rest of the following commands in this lab.}}
 
<ol>
 
<li value="17">Issue the following command to add your new-created and formatted partition called /dev/vda3 to your volume group:<br><b><code><span style="color:#3366CC;font-size:1.2em;">vgextend centos_centos2 /dev/vda3</span></code></b><br><br>'''NOTE:''' If you experience an error message, issue the '''ssm list''' command, and check the '''volume group name''' under the '''"pool"''' section.<br>If the volume group name is different than '''centos_centos2''', then use that volume group name for all remaining commands that use "centos_centos2"<br><br></li>
 
<li>Create a new logical volume by issuing the following command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">lvcreate -L 2G -n archive centos_centos2</span></code></b></li>
 
<li>Format your newly-created partition by issuing the command: <b><code><span style="color:#3366CC;font-size:1.2em;">mkfs -t ext4 /dev/centos_centos2/archive</span></code></b></li>
 
<li>Issue the '''ssm list''' command to view the new physical volume and logical volume information.</li>
 
</ol>
 
{{Admon/important|Pay attention to syntax|Note that the prefixed "+" or "-" in lvextend and lvreduce will add or subtract from the current size. Omitting these prefixes will <b>set</b> the LV size to what you specified.}}
 
<ol>
 
<li value="21">Reduce the file-size by issuing the command: <b><code><span style="color:#3366CC;font-size:1.2em;">lvreduce -r -L -0.5G centos_centos2/archive</span></code></b></li>
 
<li>Issue the '''ssm list''' command to verify.</li>
 
<li>Increase the file-size by issuing the command: <b><code><span style="color:#3366CC;font-size:1.2em;">lvextend -L +1G centos_centos2/archive</span></code></b></li>
 
<li>Issue the '''ssm list''' command to verify.</li>
 
</ol>
 
 
 
 
 
{| width="40%" align="right" cellpadding="10"
 
|- valign="top"
 
|
 
[[Image:Add_virtual_disk.png|thumb|right|400px|You can add virtual hard disks for a VM by changing to the Details section for the VM (as opposed to console), click Add Hardware, fill information in the Add New Virtual Hardware dialog box and clicking Finish.]]
 
|}
 
 
 
===Part 2: Adding Additional Virtual Hard Drives===
 
 
 
What if your have noted while monitoring disk space, that you starting to run-out of space on your '''home''' file-system, although you '''do NOT have any available space on your current hard disk?''' You could obtain an additional hard-drive.
 
We can '''add a new <u>virtual</u> hard-drive''' (which will serve as a physical volume to the volume group), and extend the '''home''' logical volume to make use of the new available space. Creating virtual hard drives is not only inexpensive, but a great way for students to learn now to simulate growing the size of the file system!
 
 
 
:'''Perform the following steps:'''
 
 
 
# Remain in your '''centos2''' VM for this section.
 
# Run the following commands and make note of the output of the commands:<br><b><code><span style="color:#3366CC;font-size:1.2em;">ls /dev/vd*</span></code></b>,<br><b><code><span style="color:#3366CC;font-size:1.2em;">ssm list</span></code></b>, and <b><code><span style="color:#3366CC;font-size:1.2em;">df -h</span></code></b>
 
<ol>
 
<li value="3">Record the size of the volume group and the amount of free space</li>
 
<li>At the top of your KVM window for '''centos2''', click the '''view''' menu and change view from '''Console''' to  <u>'''Details'''</u>''' .</li>
 
<li>At the bottom left-hand corner, click '''Add Hardware''' and add a new storage device of '''2GBs''', make sure the '''Bus type''' is selected as: '''VirtIO''' disk.</li>
 
<li>Click the '''VM''' menu again, and return to the '''console''' view to access your centos2 VM display.</li>
 
<li>Issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">ls /dev/vd*</span></code></b>, what has changed?</li>
 
<li>Use '''fdisk''' (''refer to how to use in Part 1'') to create a new single '''primary''' partition for '''/dev/vdb''' that fills the ''entire'' disk, save partition table (accepting defaults prompts would work), restart your '''centos2''' VM and then '''format''' that partition for file type: '''ext4'''.</li>
 
<li>Now we'll make the new device a '''physical volume''', add it to the '''volume group'''by issuing the following commands:<br><b><code><span style="color:#3366CC;font-size:1.2em;">pvcreate /dev/vdb1</span></code></b> (enter '''y''' to proceed - ignore warning)<br><b><code><span style="color:#3366CC;font-size:1.2em;">vgextend centos_centos2  /dev/vdb1</span></code></b></li>
 
<li>Re-issue the '''ssm list''' command to see if there is any change.</li>
 
<li>Issue the following command to extend the logical volume for the home file-system: <b><code><span style="color:#3366CC;font-size:1.2em;">lvextend centos_centos2/home --size +2G</span></code></b></li>
 
<li>Record the size of the volume group and the amount of free space. What has changed and what caused those changes?</li>
 
<li>Issue the '''ssm list''' command. Note that your home file-system is now 2GB bigger, and you have not even rebooted your machine since you used fdisk to create a partition!</li>
 
<li>'''Reboot''' your centos2 VM</li>
 
<li>Record the LVM Management commands in your lab log-book.</li>
 
</ol>
 
 
 
 
 
[[Image:mount.png|thumb|700px|right|Using the '''mount''' command with no arguments displays file-systems that are already mounted. The Linux system administrator can use the '''mount''' and '''umount''' commands to connect and disconnect different partitions from the file-system to perform maintenance.]]
 
 
 
=== Part 3: Manually &amp; Automatically Mount Partitions ===
 
 
 
We take for granted that a file-system must be mounted (for example, the root partition) in order for a Linux system to be usable upon system start-up. We need to learn how to do this manually by editing or adding an entry in the file system table ('''/etc/fstab'''). This file contains entries to mount various file systems automatically upon start-up of the Linux system.
 
 
 
The Linux system administrator also has the ability to manually '''mount''' (connect) and '''un-mount''' (disconnect) partitions in order to perform maintenance on the file system (for example, un-mounting the '''/home''' partition to install software and prevent users from logging in during that process).
 
 
 
:'''Perform the following steps:'''
 
 
 
# Perform this part in your '''centos2''' VM.
 
# Issue the following command to create a mount-point (directory to connect /dev/dva3 partition to):<br><b><code><span style="color:#3366CC;font-size:1.2em;">mkdir /archive</span></code></b>
 
# Issue the following command to mount the partition:<br><b><code><span style="color:#3366CC;font-size:1.2em;">mount -t ext4 /dev/centos_centos2/archive /archive</span></code></b>
 
# Use the '''ls''' command to view the contents of the /archive directory. What do you see?
 
# Issue the '''mount''' command (without arguments) to confirm it has been mounted.
 
# Unmount the '''/archive''' directory by issuing the following commmand: <b><code><span style="color:#3366CC;font-size:1.2em;">umount /archive</span></code></b>
 
# Issue the '''mount''' command (without arguments) to confirm it has been mounted.
 
 
 
 
 
:We will now edit the /etc/fstab file in order to have the /dev/vda3 partition automatically mounted to the /archive directory upon system boot-up
 
 
 
 
 
<ol><li value="8">View the contents of the file-system table '''/etc/fstab''' by issuing the following command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">cat /etc/fstab</span></code></b></li>
 
 
 
<li>Issue the following command to add an entry to automatically mount the /archive directory upon bootup:<br><b><code><span style="color:#3366CC;font-size:1.2em;">echo "/dev/centos_centos2/archive    /archive  ext4  defaults 1 2" >> /etc/fstab</span></code></b></li>
 
<li>'''Reboot''' your centos2 VM so see if the /archive directory is automatically mounted.<br><br>'''Note:''' You could have also issued the command: '''mount -a''' to <u>automatically</u> mount the file-systems contained in the '''/etc/fstab''' file without booting the VM (good for testing before trying a reboot).<br><br></li>
 
</ol>
 
 
 
 
 
'''Answer the INVESTIGATION 2 observations / questions in your lab log book.'''
 
 
 
= LAB 5 SIGN-OFF (SHOW INSTRUCTOR) =
 
{{Admon/important|Time for a new backup!|If you have successfully completed this lab, make a new backup of your virtual machines as well as your host machine.}}
 
 
 
:'''Perform the Following Steps:'''
 
 
 
# Make certain that your '''c7host''' and '''centos2''' VMs are running.
 
# Switch to your '''c7host''' machine.
 
# Open a shell terminal, '''su -''' into root, and change to the '''/root/bin''' directory., open a shell terminal
 
# Issue the Linux command: <b><code><span style="color:#3366CC;font-size:1.2em;">wget http://matrix.senecac.on.ca/~murray.saul/ops235/lab5-check.bash</span></code></b>
 
# Give the '''lab5-check.bash''' file execute permissions (for the file owner).
 
# Run the shell script and if any warnings, make fixes and re-run shell script until you receive "congratulations" message.
 
#Arrange proof of the following on the screen:<br><blockquote><span style="color:green;font-size:1.5em;">&#x2713;</span> '''centos2''' VM:<blockquote><ul><li>Output from '''ssm list''' command.</li><li>Proof that '''/archive''' has been mounted</li></ul></blockquote><span style="color:green;font-size:1.5em;">&#x2713;</span> '''c7host''' Machine:<blockquote><ul><li>Proof of creation of the shell script: '''monitor-disk-space.bash'''</li><li>Crontab entry for '''root''' account</li><li>Run the '''lab5-check.bash''' script in front of your instructor (must have all <b><code><span style="color:#66cc00;border:thin solid black;font-size:1.2em;">&nbsp;OK&nbsp;</span></code></b> messages)</li></ul></blockquote><span style="color:green;font-size:1.5em;">&#x2713;</span> '''Lab5''' log-book filled out.
 
 
 
 
 
= Practice For Quizzes, Tests, Midterm &amp; Final Exam =
 
 
 
# What is a VG? PV? LV?
 
# What is the total size of the "main" VG on your system?
 
# How do you create an LV?
 
# How do resize an LV?
 
# How would you add the disk partition '''/dev/sdb7''' to your volume group "main"?
 
# How would you increase the size of the root filesystem by 50 MB?
 
# How can you determine if a partition has been mounted onto a system?
 
# How can you unmount an existing partition from the file-system?
 
# How can you temporarily mount a partition on a file-system?
 
# How can you permanently mount a partition on a file-system upon boot-up?
 
# What are the separate elements (fields) of the '''/etc/fstab''' file?
 
# Describe the tools that a Linux system administrator have to monitor disk space usage.
 
 
 
[[Category:OPS235]]
 
[[Category:OPS235 Labs]]
 

Latest revision as of 07:32, 26 April 2018