Difference between revisions of "OPS235 Lab 5 - Fedora17"
Chris Tyler (talk | contribs) (→Investigation 6: How do we automatically mount a new partition in Fedora?) |
|||
Line 1: | Line 1: | ||
− | =OPS235 Lab 5 - | + | [[Category:OPS235]]{{Draft}} |
+ | =OPS235 Lab 5 - Archiving Files, Compiling Software Packages from Source= | ||
[[Category:OPS235]][[Category:OPS235 Labs]] | [[Category:OPS235]][[Category:OPS235 Labs]] | ||
==Objectives== | ==Objectives== | ||
− | |||
#To create and use archive files (tar and tar.gz) | #To create and use archive files (tar and tar.gz) | ||
− | #Compiling software from source code | + | #Compiling software packages from source code |
− | # | + | #Customising file-system start-up |
Line 32: | Line 32: | ||
==Instructions== | ==Instructions== | ||
− | ===Investigation 1 | + | ===Investigation 1: How do you create an archive file?=== |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
{{Admon/note|Use fedora3|Perform these steps in the '''fedora3''' virtual machine.}} | {{Admon/note|Use fedora3|Perform these steps in the '''fedora3''' virtual machine.}} | ||
{{Admon/important | Warning! | Don't miss the '''.''' at the end of the <code>tar</code> commands below! It specifies what should go into the archive: the contents of the current directory.}} | {{Admon/important | Warning! | Don't miss the '''.''' at the end of the <code>tar</code> commands below! It specifies what should go into the archive: the contents of the current directory.}} | ||
Line 65: | Line 48: | ||
#Compare the sizes of <code>/tmp/archive1.tar.gz</code> and <code>/tmp/archive2.tgz</code>. Why are they so close in size? | #Compare the sizes of <code>/tmp/archive1.tar.gz</code> and <code>/tmp/archive2.tgz</code>. Why are they so close in size? | ||
− | |||
− | ===Investigation | + | |
+ | ===Investigation 2: How do you restore files from an archive?=== | ||
{{Admon/note|Use fedora3|Perform these steps in the '''fedora3''' virtual machine.}} | {{Admon/note|Use fedora3|Perform these steps in the '''fedora3''' virtual machine.}} | ||
#Create the directory <code>/tmp/extract1</code> and make it your current working directory (change into that directory). | #Create the directory <code>/tmp/extract1</code> and make it your current working directory (change into that directory). | ||
Line 85: | Line 68: | ||
#Compare the <code>README</code> file in this directory with the original file. Are they exactly the same? | #Compare the <code>README</code> file in this directory with the original file. Are they exactly the same? | ||
− | |||
− | ===Investigation | + | ===Investigation 3: How do you build software from source code?=== |
{{Admon/note|Use fedora2|Perform these steps in the '''fedora2''' virtual machine.}} | {{Admon/note|Use fedora2|Perform these steps in the '''fedora2''' virtual machine.}} | ||
Line 108: | Line 90: | ||
#Test <code>nled</code> to make sure it works. | #Test <code>nled</code> to make sure it works. | ||
− | |||
− | ===Investigation | + | ===Investigation 4: How do we turn system services on and off?=== |
{{Admon/note|Use fedora2|Perform these steps in the '''fedora2''' virtual machine.}} | {{Admon/note|Use fedora2|Perform these steps in the '''fedora2''' virtual machine.}} | ||
Line 146: | Line 127: | ||
}} | }} | ||
− | |||
− | ===Investigation | + | ===Investigation 5: How do we automatically mount a new partition in Fedora?=== |
{{Admon/note|Use your Fedora host |Perform these steps on the '''Fedora Host''' (f13host).}} | {{Admon/note|Use your Fedora host |Perform these steps on the '''Fedora Host''' (f13host).}} | ||
Line 160: | Line 140: | ||
#Confirm that the partition mounted and copy some files to it. | #Confirm that the partition mounted and copy some files to it. | ||
− | + | ||
==Completing the Lab== | ==Completing the Lab== |
Revision as of 11:00, 30 January 2012
Contents
- 1 OPS235 Lab 5 - Archiving Files, Compiling Software Packages from Source
- 1.1 Objectives
- 1.2 References
- 1.3 Required Material
- 1.4 Prerequisites
- 1.5 Introduction
- 1.6 Instructions
- 1.6.1 Investigation 1: How do you create an archive file?
- 1.6.2 Investigation 2: How do you restore files from an archive?
- 1.6.3 Investigation 3: How do you build software from source code?
- 1.6.4 Investigation 4: How do we turn system services on and off?
- 1.6.5 Investigation 5: How do we automatically mount a new partition in Fedora?
- 1.7 Completing the Lab
- 1.8 Preparing for the Quizzes
OPS235 Lab 5 - Archiving Files, Compiling Software Packages from Source
Objectives
- To create and use archive files (tar and tar.gz)
- Compiling software packages from source code
- Customising file-system start-up
References
- manpages for mount, fstab, tar, gzip, make, chkconfig, dd, service
- Resources on the web:
Required Material
- SATA Hard Disk with Fedora 13 (the same one used for Lab 3 and 4)
- Lab log book
Prerequisites
- Completion of Labs 1-4
Introduction
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.
Instructions
Investigation 1: How do you create an archive file?
- Change your working directory to
/usr/share/doc/sudo*
- Use the tar (tape archiver) command to create an archive file named
/tmp/archive1.tar
tar cvf /tmp/archive1.tar .
- What do the options c, v, and f mean?
- Record the archive file size.
- Compress the file using
gzip
:gzip /tmp/archive1.tar
- Record the archive file size after compression.
- Make sure you're still in
/usr/share/doc/sudo*
and then create a compressed archive:tar cvzf /tmp/archive2.tgz .
- What does the
z
option do? - Compare the sizes of
/tmp/archive1.tar.gz
and/tmp/archive2.tgz
. Why are they so close in size?
Investigation 2: How do you restore files from an archive?
- Create the directory
/tmp/extract1
and make it your current working directory (change into that directory). - Move the file archive1.tar.gz to your current directory.
- Unzip the first archive you created:
gunzip archive1.tar.gz
- Extract the files from the first archive:
tar xvf archive1.tar
- Are all the files there?
- Compare
/tmp/extract1/README
and/usr/share/doc/sudo*/README
. Are they exactly the same? Why? - Create the directory
/tmp/extract2
and make it your current working directory. - Move the file archive2.tgz to your current directory.
- Extract the files from the second archive:
tar xvzf archive2.tgz
- Note that this time a separate
gunzip
command was not needed. Why? - Repeat the previous command, leaving out the option "z". Does it work? Why?
- Compare the
README
file in this directory with the original file. Are they exactly the same?
Investigation 3: How do you build software from source code?
- Go to the directory
/tmp
- Use the
wget
command to download the "tar ball" that contains the source code for the NLED text editor.wget
is a command-line tool to download files from the web using the http or ftp protocols. - Extract the files. Change to the newly-extracted directory (
/tmp/nled-2.52
) - Check to see if there is a file named
configure
. If so, run it; if not, skip this step. (Most but not all source code archives contain this file) - Check to see if there is a file named
Makefile
ormakefile
. If so, type the command:make
- What does
make
do? - Some software distributed as source code can automatically install itself. Try this command:
make install
- Most but not all source code archives include the capability of installing themselves this way.
- If the command
make install
does not work (how can you tell?), copy thenled
program manually:cp nled /usr/local/bin
- Test
nled
to make sure it works.
Investigation 4: How do we turn system services on and off?
- Determine your current runlevel using the
runlevel
command. - Change to the appropriate startup directory in a terminal window. For example, if your runlevel is 4, change to
/etc/rc.d/rc4.d
- Observe the names of the symbolic links in that directory. What is the target (destination) of the links to?
- If you are not using the graphical user interface (GUI), use the startx command to start it.
- Run the menu option
System>Administration>Services
. You will then see the Service Configuration screen. - Find the
bluetooth
service and select customize from the tool bar. and deselect the checkbox for your runlevel from step 1. Quit the app. - Return to the terminal window you used in Step 2. Get a listing of the symbolic links in the startup directory. Is it any different from what you observed previously?
- Using the Service Configuration screen, re-enable the
bluetooth
service. - Check the symbolic links again. What has changed this time?
- Run this command:
chkconfig bluetooth off
- Now what has changed in the directory?
- Run this command:
chkconfig bluetooth on
- Now what has changed?
- Run the command:
chkconfig --list
- What does the output show?
- What is the relationship between the Service Configuration tool, the symbolic links in the startup directory, and the
chkconfig
command? - You can also use
chkconfig
to set services to be on or off for certain runlevels. For example, to turn httpd on for runlevel 4, we issue the command:chkconfig --level 4 httpd on
- To turn it off, we type:
chkconfig --level 4 httpd off
- To increase your computer's security, make sure these services are disabled:
- btseed, bttrack, cups, irda, mdmonitor, netfs, nfs, nfslock, pcscd, rpcgssd, rpcidmapd, rpcsvcgssd, sendmail, ypbind.
Investigation 5: How do we automatically mount a new partition in Fedora?
- Create the empty directory /lab5
- Verify that the
/dev/sda5
partition is not in use, then reformat/dev/sda5
as ext3 - Check the man page for
/etc/fstab
by entering the commandman fstab
- Edit your
/etc/fstab
file to mount the partition/dev/sda5
to/lab5
- Issue this command:
mount -a
- What does that command do?
- Confirm that the partition mounted and copy some files to it.
Completing the Lab
Arrange evidence for each of these items on your screen, then ask your instructor to check each item:
- [ ]
/tmp/fstest
filesystem counted with files copied to it. - [ ]
nled
is installed - [ ] Correct services are disabled
- [ ]
/lab5
has an entry in/etc/fstab
Preparing for the 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?
- How do you ensure that a filesystem is mounted every time the system is started?
- How is creating and using a filesystem in a file different from creating and using a filesystem in a block device (such as a partition)?
- What is source code?
- How do you build software from source code?
- Which is preferred: installing from an RPM file, or installing from source code? Why?
- How do you use
chkconfig
? - The startup directory for each runlevel contains symbolic links. Where are the targets of the symbolic links?
- When you use the menu option System>Administration>Services, what program is run?