From Fedora Project Wiki

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 11: Line 11:
== Installing KVM and the virt tools ==
== Installing KVM and the virt tools ==


The minimum required versions are:
As root, do:


* qemu-kvm-1.0-11.fc17
  # yum install libvirt-daemon-kvm virt-manager
* ipxe-roms-qemu-20120328-1.gitaac9718.fc17
* libvirt-0.9.11-1.fc17
* libguestfs-tools-c-1.17.19-1.fc17
 
These are only available in the updates-testing repository. First make sure the rest of your system is fully updated
 
# yum update
 
Then pull in the extra pieces:
 
  # yum --enablerepo=updates-testing install libvirt-daemon-kvm virt-manager libguestfs-tools-c


After installation, check whether libvirtd is running:
After installation, check whether libvirtd is running:
Line 65: Line 54:
  # export OSNAME=Fedora-16-i386-DVD
  # export OSNAME=Fedora-16-i386-DVD


=== Test case 1: ISO media detection ===
=== Test case 1: Inspecting ISO media ===
 
The first test is to try to inspect the ISO media and see if libguestfs can identify the operating system. Use the 'virt-inspector' command todo this


The first test is to try to inspect the ISO media and see if libosinfo can identify the operating system. Use the 'osinfo-detect' command todo this
# virt-inspector /path/to/iso/image


# osinfo-detect /path/to/iso/image
'''This test shall be considered successful if the above commands outputs an XML document containing an <operatingsystem> element and the following child elements'''


'''This test shall be considered successful if the above commands outputs the name of the operating system on the media'''
- <name>
- <distro>
- <arch>
- <major_version> + <minor_version>
- <format>installer</installer>


If this fails, file a bug report against the libosinfo component, providing the output of the following command as an attachment to the bug
If any of this data is missing, file a bug report against the libguestfs component, providing details of the ISO image you used


# isoinfo -d -i /path/to/iso/image


For example a successful invocation on a Fedora 16 DVD looks like this:
For example a successful invocation on a Fedora 16 DVD looks like this:


  # cd /var/lib/libvirt/images
  # cd /var/lib/libvirt/images
  # osinfo-detect $OSNAME.iso  
  # virt-inspector $OSNAME.iso  
Media is bootable.
  <?xml version="1.0"?>
Media is an installer for OS 'Fedora 16'
  <operatingsystems>
    <operatingsystem>
      <root>/dev/sda</root>
      <name>linux</name>
      <arch>i386</arch>
      <distro>fedora</distro>
      <major_version>116</major_version>
      <minor_version>0</minor_version>
      <package_format>rpm</package_format>
      <package_management>yum</package_management>
      <format>installer</format>
      <multipart/>
      <mountpoints>
        <mountpoint dev="/dev/sda">/</mountpoint>
      </mountpoints>
      <filesystems>
        <filesystem dev="/dev/sda">
          <type>iso9660</type>
          <label>Fedora 16 i386 DVD</label>
        </filesystem>
      </filesystems>
      <applications/>
    </operatingsystem>
  </operatingsystems>


Even if this test fails, you can still proceed with the other three tests.
Even if this test fails, you can still proceed with the other three tests.
Line 97: Line 114:
Assuming the $OSNAME env variable is still set from earlier, the following command can be used:
Assuming the $OSNAME env variable is still set from earlier, the following command can be used:


   # virt-install --hvm --noreboot  --ram 800 --vnc --name $OSNAME \
   # virt-install --hvm --noreboot  --ram 800 --vnc --name $OSNAME --network network=default --disk file=/var/lib/libvirt/images/$OSNAME.qcow2,size=10 --cdrom /var/lib/libvirt/images/$OSNAME.iso
                --network network=default \
                --disk path=/var/lib/libvirt/images/$OSNAME.raw,size=10 \
                --cdrom /var/lib/libvirt/images/$OSNAME.iso


For recent windows/linux guests, it is advisable to tell virt-install what the guest OS type is. Take the above command line and add in 2 more options:
For recent windows/linux guests, it is advisable to tell virt-install what the guest OS type is. Take the above command line and add in 2 more options:
Please note that all contributions to Fedora Project Wiki are considered to be released under the Attribution-Share Alike 4.0 International (see Fedora Project Wiki:Copyrights for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource. Do not submit copyrighted work without permission!

To edit this page, please solve the following task below and enter the answer in the box (more info):

Cancel Editing help (opens in new window)