Difference between revisions of "OPS235 Lab 3 - Fedora17"

From CDOT Wiki
Jump to: navigation, search
(Installing from Live CD)
(Installing from Live CD)
Line 77: Line 77:
 
# Start the graphical tool by selecting the menu option Applications>System Tools>Virtual Machine Manager or by typing the command <code>virt-manager</code>
 
# Start the graphical tool by selecting the menu option Applications>System Tools>Virtual Machine Manager or by typing the command <code>virt-manager</code>
  
=== Installing from Live CD ===
+
=== Installing from a Live Disc ===
  
 
These are the details for the first virtual machine:
 
These are the details for the first virtual machine:
Line 90: Line 90:
 
Perform these steps:
 
Perform these steps:
  
# In the Virtual Machine Manger, click on the icon to ''Create a Virtual Machine'' in the upper-left corner: [[Image:Virt-manager1.png]]
+
# In the Virtual Machine Manger, click on the icon to ''Create a Virtual Machine'' in the upper-left corner: <br />[[Image:Virt-manager1.png]]
 
# A window will appear with the title ''New VM''. There are five steps to be completed; click Forward after each step:
 
# A window will appear with the title ''New VM''. There are five steps to be completed; click Forward after each step:
## Enter the virtual machine name and select ''Local install media''.[[Image:Virt-manager2.png]]
+
## Enter the virtual machine name and select ''Local install media''.<br />[[Image:Virt-manager2.png]]
## Insert the CDROM or DVD containing the Fedora Live Disc image. Wait a moment for the disc to be recognized, then select it as the install media. Set the ''OS type'' to Linux and the ''Version'' to Fedora 12.{{Admon/tip|Using an ISO image|Instead of using a physical CD or DVD, you can use an ISO image of a CD or DVD. The virtualization software will make this ISO image appear like an actual CD within the virtual machine. Because hard disks are faster then optical discs, this will work faster than an actual CD/DVD.}}{{Admon/note|Choosing the operating system type and version|The purpose of the ''OS type'' and ''Version'' fields is to fine-tune some of the virtual machine settings for best performance. The VM will work even if these are set incorrectly.}}
+
## Insert the CDROM or DVD containing the Fedora Live Disc image. Wait a moment for the disc to be recognized, then select it as the install media. Set the ''OS type'' to Linux and the ''Version'' to Fedora 12.<br />[[Image:Virt-manager3.png]]
 +
<!-- {{Admon/tip|Using an ISO image|Instead of using a physical CD or DVD, you can use an ISO image of a CD or DVD. The virtualization software will make this ISO image appear like an actual CD within the virtual machine. Because hard disks are faster then optical discs, this will work faster than an actual CD/DVD.}}{{Admon/note|Choosing the operating system type and version|The purpose of the ''OS type'' and ''Version'' fields is to fine-tune some of the virtual machine settings for best performance. The VM will work even if these are set incorrectly.}} -->
 +
## Set the memory to 512 MB and the number of CPUs to 1.<br />[[Image:Virt-manager4.png]]
 +
## This next step creates a disk file that will be used to simulate the virtual machine's disk drive. Select a size of 10 GB and checkmark the box labeled ''Allocate entire disk now''.<br />[[Image:Virt-manager5.png]]
 +
## Review the options that you have selected. If anything needs to be changed, use the ''Back'' button to go back and edit it; otherwise, click ''Finish''.<br />[[Image:Virt-manager5.png]]
 +
# The virtual machine will now start. You will see a window which displays the virtual video card from the VM. The video It's important to note that the VM can (and often will) run even when this display is not present. The virtual machine is running from the live disc at this point, and no software has been installed on the ''hard drive'' of the virtual machine.
 +
# Login to the VM and double-click on the ''Install to Hard Drive'' icon. When prompted for the hostname, enter "fedora1", and when prompted for the timezone, select ''America/Toronto''. '''Use the default values for all other fields.''' Notice that the installer does not ask you what software should be installed; compare the installation time to the amount of time it took to do your Lab 2 installation.
  
 
=== Installing from the Network ===
 
=== Installing from the Network ===

Revision as of 14:50, 6 January 2010

Using Virtual Machines

Objectives

  • Understand Virtualization
  • Use KVM virtualization on Fedora
  • Use a variety of installation methods
    • Live Image Installation
    • Network Installation
    • Kickstart Installation

Reference Material

Virtualization

Installation Methods

Required Materials

  • Removable disk pack with Fedora installed (see Lab 2).

Introduction

A virtual machine is a software simulation of a computer which can be used as though it were actual hardware. It's possible to run multiple virtual machines on one computer, reducing hardware requirements and introducing flexibility. Some common uses of virtualization include:

  • Software testing -- Using multiple operating systems simultaneously on a single computer for testing and experimentation.
  • Network simulation -- Testing network services, protocols, and security scenarios with a small number of computers.
  • Isolation -- Protecting multiple sets of data by storing them on multiple virtual machines.
  • Server consolidation -- Reducing the number of physical servers in a network by moving physical machines to virtual machines. This saves hardware, administration, cooling, and electricity costs, and it can increase the utilization of hardware (by ensuring that the hardware is not under-loaded).
  • Load-balancing and disaster recovery -- It is possible to migrate virtual machines between different physical machines, to ensure that a workload is balanced across multiple computers, to allow routine hardware maintenance and upgrading, and to compensate for hardware failure or other disasters.

In this lab, you will create three virtual machines. This also gives you an opportunity to experiment with different ways of installing Fedora. Later in this course you will install another operating system distribution in a virtual machines.

You have already used a Fedora live disc and an installation disc. In both cases, the boot media (which you used to load the installation software) and the installation source (where the software that got installed came from) were the same: they CD/DVD provided both. However, the Fedora (and most other Linux distributions) permits you to use any combination of boot media and installation media:

  • Boot Media
    • CD or DVD
    • Hard disk
    • USB flash drive
    • Network boot
  • Installation source
    • CD or DVD
    • Hard disk
    • USB flash drive
    • Network HTTP or NFS software repository

When you installed Fedora in Lab 2, you did it interactively -- you manually specified all of the installation options, and then the installation process was started. This is fairly convenient for single-machine installations, but is time-consuming and possibly error-prone when repeated for dozens, hundreds, or thousands of machines.

For large installations, it's possible to specify the installation options in a file so that no user intervention is required. This is called a kickstart installation.

Instructions

Preparation

Idea.png
Update your Fedora Installation
It's a good idea to ensure that your Fedora installation is fully updated before proceeding. You can update your system with the graphical tool located on the menu at >System>Administration>Software Update (or type the command gpk-update-view), or by typing either of these commands: pkcon update or yum update
  1. Install the Fedora virtualization software: yum groupinstall "Virtualization" or pkcon install @virtualization The virtualization software installed is in three parts:
    1. A system service named libvirtd that manages the VMs.
    2. Tools to manage virtualization, including the virt-manager graphical tool and the virsh command-line tool.
    3. The actual virtual machines themselves.
  2. Start the virtualization service: service libvirtd start
  3. The firewall configuration is altered by the addition of the virtualization software. Restart the firewall so that these changes become active: service iptables restart
  4. Start the graphical tool by selecting the menu option Applications>System Tools>Virtual Machine Manager or by typing the command virt-manager

Installing from a Live Disc

These are the details for the first virtual machine:

  • Name: fedora1
  • Boot media: Fedora Live CD
  • Installation source: Fedora Live CD
  • Memory: 512MB
  • Disk space: 10GB
  • CPUs: 1

Perform these steps:

  1. In the Virtual Machine Manger, click on the icon to Create a Virtual Machine in the upper-left corner:
    Virt-manager1.png
  2. A window will appear with the title New VM. There are five steps to be completed; click Forward after each step:
    1. Enter the virtual machine name and select Local install media.
      Virt-manager2.png
    2. Insert the CDROM or DVD containing the Fedora Live Disc image. Wait a moment for the disc to be recognized, then select it as the install media. Set the OS type to Linux and the Version to Fedora 12.
      Virt-manager3.png
    3. Set the memory to 512 MB and the number of CPUs to 1.
      Virt-manager4.png
    4. This next step creates a disk file that will be used to simulate the virtual machine's disk drive. Select a size of 10 GB and checkmark the box labeled Allocate entire disk now.
      Virt-manager5.png
    5. Review the options that you have selected. If anything needs to be changed, use the Back button to go back and edit it; otherwise, click Finish.
      Virt-manager5.png
  3. The virtual machine will now start. You will see a window which displays the virtual video card from the VM. The video It's important to note that the VM can (and often will) run even when this display is not present. The virtual machine is running from the live disc at this point, and no software has been installed on the hard drive of the virtual machine.
  4. Login to the VM and double-click on the Install to Hard Drive icon. When prompted for the hostname, enter "fedora1", and when prompted for the timezone, select America/Toronto. Use the default values for all other fields. Notice that the installer does not ask you what software should be installed; compare the installation time to the amount of time it took to do your Lab 2 installation.

Installing from the Network

Installing using Kickstart

Preparing for the Quizzes