Open main menu

CDOT Wiki β

Changes

OPS235 Lab 5 - Fedora17

9,664 bytes added, 19:48, 3 January 2014
no edit summary
=[[Category:OPS235 Lab 5 - Loopback Filesystems, Archives, Compiling from Source=]]
{{Admon/caution | Caution! Draft Lab| This lab has NOT been released for regular distribution. When the lab is under constructionready to be released, this caution banner will disappear.}} =Archiving Files, Compiling Software Packages from Source, Managing Services=[[Category:OPS235]][[Category:OPS235 Labs]]  ==Overview== * In this lab, you are going to help conserve disk space by learning how to compress and decompress files that are stored on your computer server. In addition, you will learn alternative methods of how to install programs (decompressing zipped tarball archives and then compiling source code). * In addition, you will learn about how certain processes (services) work, and how the system administrator can manage these services (i.e. turn "on" and "off").
==Objectives==
#To create and use loopback filesystems in read-write mode
#To create and use archive files (tar and tar.gz)
#Compiling software packages from source code#Customizing Install an application from software development repositories using the bit utility#Customising file-system startupstart-up  == Required Materials (Bring to All Labs) == * Fedora 17 LIVE CD* Fedora 17 x86_64 Installation DVD* SATA Hard Disk (in removable disk tray)* USB Memory Stick* Lab Logbook ==Prerequisites==
* Completion and Instructor "Sign-off" of Lab 4: [[OPS235 Lab 4]]
==References==
* ==Linux Command Online Reference==Each Link below displays online manpages for each command (via [http://linuxmanpages.com/ man pages] for mount, fstab, tar, gzip, make, chkconfig, dd, service* Resources on the web:** [http://wwwlinuxmanpages.mjmwired.net/resources/mjm-services-f12.html Services in Fedora 12com]** [http)://www.linuxquestions.org/questions/linux-newbie-8/learn-the-dd-command-362506/ How to use the <code>dd</code> command]
{|width="100%" cellpadding=Required Material="5"|'''Archiving Utilities:'''|'''Service Management Utilities:'''||- valign="top"|*[http://linuxmanpages.com/man1/tar.1.php tar]*[http://linuxmanpages.com/man1/gzip.1.php gzip]*[http://linuxmanpages.com/man1/gunzip.1.php gunzipzip]*[http://linuxmanpages.com/man1/make.1.php make]|*[http://www.linuxcertif.com/man/1/systemctl/ systemctl]
* SATA Hard Disk with Fedora 12 (the same one used for Lab 3 and 4)
* Lab log book
==Prerequisites==|}
==Resources on the web==Additional links to tutorials and HOWTOs:* Completion of Labs 1[http://www.centos.org/docs/2/rhl-4gsg-en-7.2/s1-zip-tar.html archiving with tar, gzip, gunzip]* [http://www.tuxfiles.org/linuxhelp/softinstall.html Compiling Software from Source Code]* [[init vs systemd]]
==IntroductionArchiving Files / Compiling Software from Source Code==
There are two techniques used to place multiple files within one file: the first is to create a filesystem within a file, and the second is to use an archive program to create an archive file. Archive files are often used to contain source code for software; in this lab you will also be compiling software from a source code archive. Finally, you will modify your system startup to eliminate unnecessary services and configure your system to automatically mount a partition.
==Investigation 1: How do {{Admon/note|Do not Shut-Down VMs Until Instructed|You will be running all 3 VMs eventually when performing this tutorial, Leave all VMs running until you create and use a filesystem in a regular file?==are instructed to shut them down at the end of this lab.|}}
===Investigation 1: How do you create an archive file?===
{{Admon/note|Use fedora3|Perform these steps in the '''fedora3''' virtual machine.}}
#Login using Boot up your '''fedora3''' VM.#Change your Learn IDworking directory to <code>/usr/share/doc/sudo*</code>#Create Use the tar (tape archiver) command to create an empty archive file that is exactly 3 MB in size:named <code>/tmp/archive1.tar</code>#*<code>dd if=tar cvf /tmp/archive1.tar .</code> {{Admon/devimportant | Warning! | Don't miss the '''.''' at the end of the <code>tar</zero code> commands below! It specifies what should go into the archive: the contents ofthe current directory.}} <ol> <li value="4">What do the options c, v, and f mean?</li> <li>Record the archive file size.</li> <li>Compress the file using <code>gzip</code>: <ul> <li><code>gzip /tmp/fstest bs=1k count=3072archive1.tar</code></li> </ul> </li> <li>Record the archive file size after compression.</li> <li>Make sure you're still in <code>/usr/share/doc/sudo*</code> and then create a compressed archive:<ul> <li><code>tar cvzf /tmp/archive2.tgz .</code></li>#How </ul> </li> <li>What does this command ensure that the file is 3 MB <code>z</code> option do?</li> <li>Compare the sizes of <code>/tmp/archive1.tar.gz</code> and <code>/tmp/archive2.tgz</code>. Why are they so close in size? What is </li></ol> '''Answer the Investigation 1 observations / questions in your lab log book.''' ===Investigation 2: How do you restore files from an archive?==={{Admon/note|Remain in your fedora3 VM|Perform these steps in the '''fedora3''' virtual machine.}}#Create the directory <code>/tmp/extract1</code>#Change to the <code>/tmp/extract1</code> directory.#Move the file at archive1.tar.gz to your current directory.#Unzip the first archive you created:#*<code>gunzip archive1.tar.gz</code>#Extract the files from the firstarchive:#*<code>tar xvf archive1.tar</code>#Are all the files there? #Compare <code>/tmp/extract1/README</code> and <code>/usr/share/doc/sudo*/README</code>. Are they exactly the same? Why?#Create an ext3 filesystem within the newly-created directory <code>/tmp/extract2</code>#Move the file archive2.tgz to the <code>/tmp/fstestextract2</code>directory.#Extract the files from the second archive:#*<code>tar xvzf /tmp/extract2/archive2. tgz</code>#Note that this time a separate <code>gunzip</code> command was not needed. Why?#Repeat the previous command, leaving out the option "z". Does it work? Why?#Compare the <code>README</code> file in this directory with the original file. Are they exactly the same? '''Answer the warning messageInvestigation 2 observations /question questions in your lab log book.'''  ===Investigation 3: How do you build software from source code?=== Now that appearsyou know how to create and decompress "zipped tarball archives", we will demonstrate how to install applications from websites containing these types of archives. Although this method is not as "user-friendly" as using the yum or rpm command, this method is useful if the application is NOT contained in regular software repositories...{{Admon/note|Use fedora2|Perform these steps in the '''fedora2''' virtual machine.}} In order to build software from source code, you must have the appropriate software development tools (such as make and gcc) and libraries (such as GTK) installed. The required tools will vary depending on the computer languages used in the software being built. #Mount Boot up your '''fedora2''' VM. <!-- corrected a couple typos Eric D.--># Issue the following command to install a basic set of development tools and libraries:<br /><code>yum groupinstall "Development Tools" "Development Libraries"</code> {{Admon/note|Installing Development Libraries|In the filesystem (future, remember the above procedure whenever installing software from source. Sometimes, you need to install additional tools or libraries in order to compile a particular software package}} <ol> <li value="3">Go to the directory <code>/tmp</code></li> <li>Use the <code>wget</code> command to download the "tar ball" that contains the source code for the NLED text editor. <code>wget</code> is a command-line tool to download files from the web using the http or ftp protocols. <ul> <li><code>wget http://cdot.senecac.on.ca/software/nled/nled_2_52_src.tgz</code></li> </ul> </li> <li>Extract the files. Change to use the loopback optionnewly-extracted directory (<code>/tmp/nled-2.52</code>)</li> <li>Check to see if there is a file named <code>configure</code>. If so, run it; refer if not, skip this step. (Most but not all source code archives contain this file)</li> <li>Check to Lab 1 see if requiredthere is a file named <code>Makefile</code> or <code>makefile</code>. If so, type the command: <ul> <li><code>make</code></li> </ul> <li>What does <code>make</code> do?</li> <li>Some software distributed as source code can automatically install itself. Try this command: <ul> <li><code>make install</code></li> </ul> </li> <li>Most but not all source code archives include the capability of installing themselves this way.</li> <li>If the command <code>make install</code> does not work (how can you tell?), copy the <code>nled</code> program manually: <ul> <li><code>cp nled /usr/local/bin</code></li> </ul> </li> <li>Test <code>nled</code> to make sure it works. </li></ol> '''Answer the Investigation 3 observations / questions in your lab log book.''' ==Managing Run-Levels and System Services== ===Investigation 4: How do we Manage Runlevels?=== {{Admon/note|Use fedora2|Perform these steps in the '''fedora2''' virtual machine.}} The runlevel command is now deprecated in Fedora, and has been replaced by '''systemctl'''. The newer system called '''systemd''' is a mountpoint newer method to help simplify controlling both runlevels (referred to as "targets" and system services (referred to as "services"). Refer to the tutorial [[init vs systemd]] for systemctl command usages and reference.<ol> <li>Issue the following Linux command: <ul> <li><code>systemctl list-units --type=target</code></li> </ul> </li> <li>Note the target labelled graphical. Now trace the chain of your choosinglinks starting at /etc/systemd/system/default.target - what's it ultimately pointing to?</li>#Copy <li>Issue the following commands to switch the files default mode (also known as target, formerly runlevel): <ul> <li><code>rm /etc/servicessystemd/system/default.target</code> and </li> <li><code>ln -s /lib/systemd/system/multi-user.target /etc/protocolssystemd/system/default.target</code> to </li> </ul> <li>Restart your fedora2 VM. What happens?</li> <li>Log into your regular user account.</li> <li>Issue the filesystem mounted in the previous stepfollowing Linux command: <ul> <li><code>startx</code></li> </ul> </li>#Unmount the filesystem <li>What happens?</li>#Test <li>Log-off your filesystem graphical system. You should return to be sure that your shell prompt.</li> <li>Issue the files following commands: <ul> <li><code>rm /etc/servicessystemd/system/default.target</code> and </li> <li><code>ln -s /lib/systemd/system/graphical.target /etc/protocolssystemd/system/default.target</code> were </li> </ul> </li> <li>Reboot your fedora2 VM. What Happens?</li></ol> '''Answer the Investigation 4 observations / questions in fact copied into your lab log book.''' === Investigation 5: How do we Manage System Services? === {{Admon/note|Remain in your fedora2 VM|Perform these steps in the '''fedora2''' virtual machine.}} We have seen that maintaining unneeded '''packages can be a security risk''' due to the unnecessary increase in the complexity of your system. Similarly, it is also unnecessarily hazardous, and even more so, to leave unneeded services running. In this investigation, we will learn how to '''control services, and turn off those services that we think are not necessary to help reduce security risks'''.}} <ol> <li>Issue the following Linux command: <ul> <li><code>systemctl list-units --type=service</code></li> </ul> </li> <li>Note the services that are currently running.</li> <li>Refer to the tutorial ([[init vs systemd]] ) to learn how to use the systemctl command to stop the service named '''iptables'''</li> <li>Issue the systemctl command to verify that this service has stopped.</li> <li>If you reboot now - the iptables service will be turned back on. We don't want it on though, it causes students headaches. To turn it off permanently we need to disable the service. Refer to the tutorial ([[init vs systemd]] ) to learn how to use the filesystem within systemctl command to disable the file service named '''iptables'''</li> <li>Reboot and confirm that it's no longer running.</li></ol> '''Answer the Investigation 5 observations / questions in your lab log book.''' ==Completing the Lab== Arrange evidence for each of these items on your screen, then ask your instructor to check each item: # Compressed files: <code>/tmp/fstestarchive1.tar.gz</code>and <code>/tmp/archive2.tgz</code>#<code>nled</code> application is installed#Lab5 notes how to use systemctl commands#VMs backed-up ==Preparing for Quizzes== #What is the advantage of disabling services such as bluetooth?#What is the difference between a .tgz file and a .tar. gz file? What do these stand for?#What is the purpose of a repository?#What is source code?#How much space do you build software from source code?#Which is left in that filesystempreferred: installing from an RPM file, or installing from source code? Why? (Hint: #How do you use <code>df -hsystemctl</code>).to:#*list runlevel#*list services#*stop a service#*start a service#*Why is it important to learn how to manage services?#*Why is it important to stop certain services? 
Make sure that {{Admon/important | Backup your lab notes answer the Investigation 1 questionwork |Backup your disk images for fedora2 and fedora3 Virtual Machines.}}
13,420
edits