Cari di RHE Linux 
    RHE Linux User Manual
Daftar Isi
(Sebelumnya) 24 : Chapter 18. qemu-kvm Whitelist25 : Virtualization Getting St ... (Berikutnya)

Virtualization Administration Guide

Chapter 19. Troubleshooting

This chapter covers common problems and solutions for Red Hat Enterprise Linux 6 virtualization issues.
Read this chapter to develop an understanding of some of the common problems associated with virtualization technologies. Troubleshooting takes practice and experience which are difficult to learn from a book. It is recommended that you experiment and test virtualization on Red Hat Enterprise Linux 6 to develop your troubleshooting skills.
If you cannot find the answer in this document there may be an answer online from the virtualization community. Refer to Section A.1, "Online resources" for a list of Linux virtualization websites.

19.1. Debugging and troubleshooting tools

This section summarizes the System Administrator applications, the networking utilities, and debugging tools. You can employ these standard System administration tools and logs to assist with troubleshooting:
  • kvm_stat
  • trace-cmd
  • vmstat
  • iostat
  • lsof
  • systemtap
  • crash
  • sysrq
  • sysrq t
  • sysrq w
These networking tools can assist with troubleshooting virtualization networking problems:
  • ifconfig
  • tcpdump
    The tcpdump command 'sniffs' network packets. tcpdump is useful for finding network abnormalities and problems with network authentication. There is a graphical version of tcpdump named wireshark.
  • brctl
    brctl is a networking tool that inspects and configures the Ethernet bridge configuration in the Linux kernel. You must have root access before performing these example commands:
    # brctl show bridge-name bridge-id  STP  enabled  interfaces  -----------------------------------------------------------------------------virtbr0 8000.feffffff   yes eth0# brctl showmacs virtbr0 port-no   mac-addr  local?   aging timer1 fe:ff:ff:ff:ff:   yes 0.002 fe:ff:ff:fe:ff:   yes 0.00# brctl showstp virtbr0virtbr0 bridge-id  8000.fefffffffffdesignated-root 8000.fefffffffffroot-port  0   path-cost 0max-age 20.00   bridge-max-age 20.00hello-time 2.00 bridge-hello-time 2.00forward-delay  0.00 bridge-forward-delay  0.00aging-time 300.01hello-timer 1.43 tcn-timer 0.00topology-change-timer  0.00 gc-timer  0.02
Listed below are some other useful commands for troubleshooting virtualization.
  • strace is a command which traces system calls and events received and used by another process.
  • vncviewer: connect to a VNC server running on your server or a virtual machine. Install vncviwer using the yum install vnc command.
  • vncserver: start a remote desktop on your server. Gives you the ability to run graphical user interfaces such as virt-manager via a remote session. Install vncserver using the yum install vnc-server command.

19.2. kvm_stat

The kvm_stat command is a python script which retrieves runtime statistics from the kvm kernel module. The kvm_stat command can be used to diagnose guest behavior visible to kvm. In particular, performance related issues with guests. Currently, the reported statistics are for the entire system; the behavior of all running guests is reported.
The kvm_stat command requires that the kvm kernel module is loaded and debugfs is mounted. If either of these features are not enabled, the command will output the required steps to enable debugfs or the kvm module. For example:
# kvm_statPlease mount debugfs ('mount -t debugfs debugfs /sys/kernel/debug')and ensure the kvm modules are loaded
Mount debugfs if required:
# mount -t debugfs debugfs /sys/kernel/debug
kvm_stat output
The kvm_stat command outputs statistics for all guests and the host. The output is updated until the command is terminated (using Ctrl+c or the q key).
# kvm_statkvm statisticsefer_reload 94   0exits  4003074   31272fpu_reload 1313881   10796halt_exits   14050 259halt_wakeup   4496 203host_state_reload1638354   24893hypercalls   0   0insn_emulation 1093850 1909insn_emulation_fail  0   0invlpg   75569   0io_exits   1596984   24509irq_exits 21013 363irq_injections   48039 1222irq_window   24656 870largepages   0   0mmio_exits   11873   0mmu_cache_miss   42565   8mmu_flooded  14752   0mmu_pde_zapped   58730   0mmu_pte_updated  6   0mmu_pte_write   138795   0mmu_recycled 0   0mmu_shadow_zapped 40358   0mmu_unsync 793   0nmi_injections   0   0nmi_window   0   0pf_fixed 697731 3150pf_guest 279349   0remote_tlb_flush 5   0request_irq  0   0signal_exits 1   0tlb_flush   200190   0

Explanation of variables:

efer_reload
The number of Extended Feature Enable Register (EFER) reloads.
exits
The count of all VMEXIT calls.
fpu_reload
The number of times a VMENTRY reloaded the FPU state. The fpu_reload is incremented when a guest is using the Floating Point Unit (FPU).
halt_exits
Number of guest exits due to halt calls. This type of exit is usually seen when a guest is idle.
halt_wakeup
Number of wakeups from a halt.
host_state_reload
Count of full reloads of the host state (currently tallies MSR setup and guest MSR reads).
hypercalls
Number of guest hypervisor service calls.
insn_emulation
Number of guest instructions emulated by the host.
insn_emulation_fail
Number of failed insn_emulation attempts.
io_exits
Number of guest exits from I/O port accesses.
irq_exits
Number of guest exits due to external interrupts.
irq_injections
Number of interrupts sent to guests.
irq_window
Number of guest exits from an outstanding interrupt window.
largepages
Number of large pages currently in use.
mmio_exits
Number of guest exits due to memory mapped I/O (MMIO) accesses.
mmu_cache_miss
Number of KVM MMU shadow pages created.
mmu_flooded
Detection count of excessive write operations to an MMU page. This counts detected write operations not of individual write operations.
mmu_pde_zapped
Number of page directory entry (PDE) destruction operations.
mmu_pte_updated
Number of page table entry (PTE) destruction operations.
mmu_pte_write
Number of guest page table entry (PTE) write operations.
mmu_recycled
Number of shadow pages that can be reclaimed.
mmu_shadow_zapped
Number of invalidated shadow pages.
mmu_unsync
Number of non-synchronized pages which are not yet unlinked.
nmi_injections
Number of Non-maskable Interrupt (NMI) injections to the guest.
nmi_window
Number of guest exits from (outstanding) Non-maskable Interrupt (NMI) windows.
pf_fixed
Number of fixed (non-paging) page table entry (PTE) maps.
pf_guest
Number of page faults injected into guests.
remote_tlb_flush
Number of remote (sibling CPU) Translation Lookaside Buffer (TLB) flush requests.
request_irq
Number of guest interrupt window request exits.
signal_exits
Number of guest exits due to pending signals from the host.
tlb_flush
Number of tlb_flush operations performed by the hypervisor.

Note

The output information from the kvm_stat command is exported by the KVM hypervisor as pseudo files located in the /sys/kernel/debug/kvm/ directory.

19.3. Troubleshooting with serial consoles

Linux kernels can output information to serial ports. This is useful for debugging kernel panics and hardware issues with video devices or headless servers. The subsections in this section cover setting up serial console output for machines running Red Hat Enterprise Linux 6 virtualization kernels and their guests.
This section covers how to enable serial console output for fully virtualized guests.
Fully virtualized guest serial console output can be viewed with the virsh console command.
Be aware fully virtualized guest serial consoles have some limitations. Present limitations include:
  • output data may be dropped or scrambled.
The serial port is called ttyS0 on Linux or COM1 on Windows.
You must configure the virtualized operating system to output information to the virtual serial port.
To output kernel information from a fully virtualized Linux guest into the domain, modify the /boot/grub/grub.conf file. Append the following to the kernel line: console=tty0 console=ttyS0,115200.
title Red Hat Enterprise Linux Server (2.6.32-36.x86-64)root (hd0,0)kernel /vmlinuz-2.6.32-36.x86-64 ro root=/dev/volgroup00/logvol00 \ console=tty0 console=ttyS0,115200initrd /initrd-2.6.32-36.x86-64.img
Reboot the guest.
On the host, access the serial console with the following command:
# virsh console
You can also use virt-manager to display the virtual text console. In the guest console window, select Serial 1 in Text Consoles from the View menu.

19.4. Virtualization log files

  • Each fully virtualized guest log is in the /var/log/libvirt/qemu/ directory. Each guest log is named as GuestName.log and will be periodically compressed once a size limit is reached.
If you encounter any errors with the Virtual Machine Manager, you can review the generated data in the virt-manager.log file that resides in the $HOME/.virt-manager directory.

19.5. Loop device errors

If file-based guest images are used you may have to increase the number of configured loop devices. The default configuration allows up to eight active loop devices. If more than eight file-based guests or loop devices are needed the number of loop devices configured can be adjusted in the /etc/modprobe.d/directory. Add the following line:
options loop max_loop=64
This example uses 64 but you can specify another number to set the maximum loop value. You may also have to implement loop device backed guests on your system. To use a loop device backed guests for a full virtualized system, use the phy: device or file: file commands.

19.6. Live Migration Errors

There may be cases where a live migration causes the memory contents to be re-transfered over and over again. This process causes the guest to be in a state where it is constantly writing to memory and therefore will slow down migration. If this should occur, and the guest is writing more than several tens of MBs per second, then live migration may fail to finish (converge). This issue is not scheduled to be resolved at the moment for Red Hat Enterprise Linux 6, and is scheduled to be fixed in Red Hat Enterprise Linux 7.
The current live-migration implementation has a default migration time configured to 30ms. This value determines the guest pause time at the end of the migration in order to transfer the leftovers. Higher values increase the odds that live migration will converge

19.7. Enabling Intel VT-x and AMD-V virtualization hardware extensions in BIOS

This section describes how to identify hardware virtualization extensions and enable them in your BIOS if they are disabled.
The Intel VT-x extensions can be disabled in the BIOS. Certain laptop vendors have disabled the Intel VT-x extensions by default in their CPUs.
The virtualization extensions cannot be disabled in the BIOS for AMD-V.
Refer to the following section for instructions on enabling disabled virtualization extensions.
Verify the virtualization extensions are enabled in BIOS. The BIOS settings for Intel VT or AMD-V are usually in the Chipset or Processor menus. The menu names may vary from this guide, the virtualization extension settings may be found in Security Settings or other non standard menu names.

Procedure 19.1. Enabling virtualization extensions in BIOS

  1. Reboot the computer and open the system's BIOS menu. This can usually be done by pressing the delete key, the F1 key or Alt and F4 keys depending on the system.
  2. Enabling the virtualization extensions in BIOS

    Note

    Many of the steps below may vary depending on your motherboard, processor type, chipset and OEM. Refer to your system's accompanying documentation for the correct information on configuring your system.
    1. Open the Processor submenu The processor settings menu may be hidden in the Chipset, Advanced CPU Configuration or Northbridge.
    2. Enable Intel Virtualization Technology (also known as Intel VT-x). AMD-V extensions cannot be disabled in the BIOS and should already be enabled. The virtualization extensions may be labeled Virtualization Extensions, Vanderpool or various other names depending on the OEM and system BIOS.
    3. Enable Intel VT-d or AMD IOMMU, if the options are available. Intel VT-d and AMD IOMMU are used for PCI device assignment.
    4. Select Save & Exit.
  3. Reboot the machine.
  4. When the machine has booted, run cat /proc/cpuinfo |grep -E "vmx|svm". Specifying --color is optional, but useful if you want the search term highlighted. If the command outputs, the virtualization extensions are now enabled. If there is no output your system may not have the virtualization extensions or the correct BIOS setting enabled.

19.8. KVM networking performance

By default, KVM virtual machines are assigned a virtual Realtek 8139 (rtl8139) NIC (network interface controller) if they are Windows guests or the guest type is not specified. Red Hat Enterprise Linux guests are assigned a virtio NIC by default.
The rtl8139 virtualized NIC works fine in most environments. However, this device can suffer from performance degradation problems on some networks, for example, a 10 Gigabit Ethernet network.
To improve performance switch to the para-virtualized network driver.

Note

Note that the virtualized Intel PRO/1000 (e1000) driver is also supported as an emulated driver choice. To use the e1000 driver, replace virtio in the procedure below with e1000. For the best performance it is recommended to use the virtio driver.

Procedure 19.2. Switching to the virtio driver

  1. Shutdown the guest operating system.
  2. Edit the guest's configuration file with the virsh command (where GUEST is the guest's name):
    # virsh edit GUEST
    The virsh edit command uses the $EDITOR shell variable to determine which editor to use.
  3. Find the network interface section of the configuration. This section resembles the snippet below:
    <interface type='network'>  [output truncated]  <model type='rtl8139' /></interface>
  4. Change the type attribute of the model element from 'rtl8139' to 'virtio'. This will change the driver from the rtl8139 driver to the e1000 driver.
    <interface type='network'>  [output truncated]  <model type='virtio' /></interface>
  5. Save the changes and exit the text editor
  6. Restart the guest operating system.
Creating new guests using other network drivers
Alternatively, new guests can be created with a different network driver. This may be required if you are having difficulty installing guests over a network connection. This method requires you to have at least one guest already created (possibly installed from CD or DVD) to use as a template.
  1. Create an XML template from an existing guest (in this example, named Guest1):
    # virsh dumpxml Guest1 > /tmp/guest-template.xml
  2. Copy and edit the XML file and update the unique fields: virtual machine name, UUID, disk image, MAC address, and any other unique parameters. Note that you can delete the UUID and MAC address lines and virsh will generate a UUID and MAC address.
    # cp /tmp/guest-template.xml /tmp/new-guest.xml# vi /tmp/new-guest.xml
    Add the model line in the network interface section:
     <interface type='network'>  [output truncated]  <model type='virtio' /></interface>
  3. Create the new virtual machine:
    # virsh define /tmp/new-guest.xml# virsh start new-guest

19.9. Missing characters on guest console with Japanese keyboard

On a Red Hat Enterprise Linux 6 host, connecting a Japanese keyboard locally to a machine may result in typed characters such as the underscore (the _ character) not being displayed correctly in guest consoles. This occurs because the required keymap is not set correctly by default.
With Red Hat Enterprise Linux 3 and Red Hat Enterprise Linux 6 guests, there is usually no error message produced when pressing the associated key. However, Red Hat Enterprise Linux 4 and Red Hat Enterprise Linux 5 guests may display an error similar to the following:
atkdb.c: Unknown key pressed (translated set 2, code 0x0 on isa0060/serio0). atkbd.c: Use 'setkeycodes 00 <keycode>' to make it known.
To fix this issue in virt-manager, perform the following steps:
  • Open the affected guest in virt-manager.
  • Click ViewDetails.
  • Select Display VNC in the list.
  • Change Auto to ja in the Keymap pull-down menu.
  • Click the Apply button.
Alternatively, to fix this issue using the virsh edit command on the target guest:
  • Run virsh edit <target guest>
  • Add the following attribute to the <graphics> tag: keymap='ja'. For example:
     <graphics type='vnc' port='-1' autoport='yes' keymap='ja'/>

19.10. Known Windows XP guest issues

If you perform device-add quickly followed by device-del using a Windows XP guest, the guest does not eject the device and instead it displays the following error: "The device (device name) cannot be stopped because of an unknown error. Since the device is still being used, do not remove it". It should be noted that newer Windows OS version guests as well as all known Linux guests do not experience this problem. To prevent this issue from happening, wait to delete a device that you just added.

Additional resources

To learn more about virtualization and Red Hat Enterprise Linux, refer to the following resources.

A.1. Online resources

A.2. Installed documentation

  • man virsh and /usr/share/doc/libvirt-<version-number> - Contains sub commands and options for the virsh virtual machine management utility as well as comprehensive information about the libvirt virtualization library API.
  • /usr/share/doc/gnome-applet-vm-<version-number> - Documentation for the GNOME graphical panel applet that monitors and manages locally-running virtual machines.
  • /usr/share/doc/libvirt-python-<version-number> - Provides details on the Python bindings for the libvirt library. The libvirt-python package allows python developers to create programs that interface with the libvirt virtualization management library.
  • /usr/share/doc/python-virtinst-<version-number> - Provides documentation on the virt-install command that helps in starting installations of Fedora and Red Hat Enterprise Linux related distributions inside of virtual machines.
  • /usr/share/doc/virt-manager-<version-number> - Provides documentation on the Virtual Machine Manager, which provides a graphical tool for administering virtual machines.

Revision History

Revision History
Revision 1-256Wed Feb 20 2013Laura Novich
Submitting Version 6.4 GA Release Candidate
Revision 1-254Wed Feb 20 2013Laura Novich
modifying example in comitting section for BZ902405
Revision 1-253Tue Feb 19 2013Laura Novich
6.4 GA Release Candidate Version
Revision 1-252Mon Feb 18 2013Laura Novich
BZ902405 - fixed organization
Revision 1-251Mon Feb 18 2013Laura Novich
BZ902405 - fixed some typos
Revision 1-250Sun Feb 17 2013Laura Novich
BZ902405 - changed the entire section
Revision 1-249Wed Feb 6 2013Laura Novich
BZ902405 - changed the example again following feedback
Revision 1-248Wed Feb 6 2013Laura Novich
BZ814540 - added MaxStartups parameter to KVM Migration chapter
BZ840921 - removed LiveBlock Copy from Virsh chapter
902405 - fixed example for Swap calculation in KVM overcommitting chapter
Revision 1-247Thu Jan 24 2013Laura Novich
corrected spelling inconsistency for hugepages
Revision 1-246Thu Jan 24 2013Laura Novich
fixed hugepages support in chapter 8, BZ903016
Revision 1-245Tue Jan 15 2013Laura Novich
fixed KSM.xml - to reflect change in NUMA
Revision 1-244Tue Jan 15 2013Laura Novich
fixed typos for BZ824328
Revision 1-243Thu Dec 20 2012Laura Novich
fixed typos for BZ514841
Revision 1-242Thu Dec 20 2012Laura Novich
changed core dump directions BZ856563
Revision 1-241Wed Dec 19 2012Laura Novich
fixed typos for BZ856563 abd BZ514841
Revision 1-240Tue Dec 18 2012Laura Novich
Changed coreDump details BZ 856563
Revision 1-239Mon Dec 17 2012Laura Novich
changed storage volume directions for storage volume chapter BZ840827
Revision 1-238Mon Dec 17 2012Laura Novich
changed virsh commands for deleting a storage pool in Storage Pool chapter - BZ 514841
Revision 1-237Wed Dec 12 2012Laura Novich
added guest core memory libvirt commands
Revision 1-236Sun Dec 2 2012Laura Novich
fixed typos in Storage Pools chapter
Revision 1-235Wed Nov 28 2012Laura Novich
fixed typos globally
Revision 1-234Tue Nov 27 2012Laura Novich
fixed spelling globally
Revision 1-233Sun Nov 25 2012Laura Novich
fixed whitelist to remove portions of usb-storage as dictated in https://bugzilla.redhat.com/show_bug.cgi?id=878885
Revision 1-232Thu Nov 22 2012Laura Novich
fixed typo in Virtual Networking chapter, bz720309
fixed typo in Storage Pools chapter, bz615141
Revision 1-231Wed Nov 21 2012Laura Novich
added open vSwitch management to the virtual networking chapter. bz853127
Revision 1-230Wed Nov 21 2012Laura Novich
added dynamic vNIC management to the Misc. Administration chapter. BZ853130
Revision 1-229Wed Nov 21 2012Laura Novich
added to KSM chapter that KSM is NUMA aware bz852657
Revision 1-228Wed Nov 21 2012Laura Novich
added usb-redirect section to the Misc. Administration chapter. https://bugzilla.redhat.com/show_bug.cgi?id=795929
Revision 1-227Wed Nov 21 2012Laura Novich
added qemu-ga section to the Misc. Administration chapter
Revision 1-226Tue Nov 20 2012Laura Novich
Changed vPMU section in the Misc. Administration chapter. https://bugzilla.redhat.com/show_bug.cgi?id=840927
Revision 1-225Tue Nov 20 2012Laura Novich
Added vPMU and S3/S4 to Misc. admin tasks chapter. https://bugzilla.redhat.com/show_bug.cgi?id=840816 and https://bugzilla.redhat.com/show_bug.cgi?id=840927
Revision 1-224Tue Nov 20 2012Laura Novich
Fixed timer mode attribute table in the Libvirt Managed Timers section of the Misc. Administration chapter. This fix is against https://bugzilla.redhat.com/show_bug.cgi?id=832419
Revision 1-223Mon Nov 19 2012Laura Novich
fixed troubleshooting chapter
Revision 1-222Mon Nov 19 2012Laura Novich
fixed chapter 11
Revision 1-221Mon Nov 19 2012Laura Novich
fixed chapter 10
Revision 1-220Mon Nov 19 2012Laura Novich
fixed chapter 12 and 14 virtio-scsi typos
Revision 1-219Mon Nov 19 2012Laura Novich
fixed chapter 12 and 14 virtio-scsi
Revision 1-218Mon Nov 19 2012Laura Novich
fixed chapter 17 - added macvtap/sr-iov and VEPA tech
Revision 1-217Mon Nov 19 2012Laura Novich
fixed chapter 11 - added introduction
Revision 1-216Sun Nov 18 2012Laura Novich
fixed chapter 16
Revision 1-215Sun Nov 18 2012Laura Novich
fixed chapter 16
Revision 1-214Sun Nov 18 2012Laura Novich
fixed chapters 12 an 14
Revision 1-213Sun Nov 18 2012Laura Novich
fixed ch 11
Revision 1-212Sun Nov 18 2012Laura Novich
fixed chapter 4 and chapter 16
Revision 1-211Thu Nov 15 2012Laura Novich
fixed whitelist
Revision 1-210Thu Nov 15 2012Laura Novich
fixed KSM deactivation
Revision 1-209Mon Nov 12 2012Laura Novich
fixed chapter 12
Revision 1-208Mon Nov 12 2012Laura Novich
fixed chapter 17
Revision 1-207Mon Nov 12 2012Laura Novich
fixed chapter 12
Revision 1-206Mon Nov 12 2012Laura Novich
fixed chapter 4
Revision 1-205Mon Nov 12 2012Laura Novich
fixed chapter 5
fixed chapter 12
Revision 1-204Thu Nov 8 2012Laura Novich
fixed whitelist
Revision 1-203Tue Oct 30 2012Laura Novich
changed whitelist to add CPU new info
Revision 1-202Sun Oct 28 2012Laura Novich
added blockresize to chapter 14
Revision 1-201Sun Oct 28 2012Laura Novich
fixed typo in chapter 14
Revision 1-200Tue Oct 23 2012Laura Novich
fixed virsh Reference chapter - live block copy
Revision 1-199Tue Oct 23 2012Laura Novich
fixed typos in chapters 4 and 10
Revision 1-198Tue Oct 23 2012Laura Novich
fixed virsh Reference chapter 14
Revision 1-197Tue Oct 23 2012Laura Novich
fixed chapter 4 - KVM Migration
Revision 1-196Mon Oct 22 2012Laura Novich
fixed ch 12
Revision 1-195Mon Oct 22 2012Laura Novich
fixed whitelist to include -machine dump-guest-core
Revision 1-194Mon Oct 22 2012Laura Novich
fixed virsh reference, added memory tuning and allocation commands
Revision 1-193Mon Oct 22 2012Laura Novich
added more cross-references to the Virtual Networking chapter
Revision 1-192Mon Oct 22 2012Laura Novich
added network filtering and DHCP snooping libvirt (virsh) commands
Revision 1-191Thu Oct 18 2012Laura Novich
added block copy, block pull and block commit to the virsh reference chapter
Revision 1-190Wed Oct 17 2012Laura Novich
fixed BZ748422 - changed TLS and SSL Management sections
Revision 1-189Tue Oct 16 2012Laura Novich
fixed storage volume chapter
Revision 1-188Sun Oct 14 2012Laura Novich
fixed whitelist
Revision 1-187Sun Oct 14 2012Laura Novich
fixed storage pools and volumes
Revision 1-186Sun Oct 14 2012Laura Novich
fixed live migration section added USB support
Revision 1-185Thu Oct 11 2012Laura Novich
fixed live migration section
Revision 1-184Thu Oct 11 2012Laura Novich
fixed Troubleshooting section
Revision 1-183Wed Oct 10 2012Laura Novich
fixed BZ831453
Revision 1-182Wed Oct 10 2012Laura Novich
fixed BZ831453
Revision 1-181Wed Oct 10 2012Laura Novich
fixed virsh ref
Revision 1-180Wed Oct 10 2012Laura Novich
re-run
Revision 1-179Wed Oct 10 2012Laura Novich
fixed troubleshootig section
Revision 1-178Wed Oct 10 2012Laura Novich
fixed chapters 4 and 17
Revision 1-177Tue Oct 9 2012Laura Novich
BZ831453
Revision 1-176Tue Oct 9 2012Laura Novich
BZ753026
Revision 1-175Tue Oct 9 2012Laura Novich
BZ835572
Revision 1-174Tue Oct 9 2012Laura Novich
fixed-screenshots
Revision 1-173Tue Oct 9 2012Laura Novich
bz753049
Revision 1-172Tue Oct 9 2012Laura Novich
ch4 fixes
Revision 1-171Tue Oct 9 2012Laura Novich
ch4 fixes
Revision 1-170Tue Oct 9 2012Laura Novich
BZ753049
Revision 1-169Thu Oct 4 2012Laura Novich
BZ829125
Revision 1-168Thu Oct 4 2012Laura Novich
whitelist edited
Revision 1-167Thu Oct 4 2012Laura Novich
changed NFS example in ch 4
Revision 1-166Thu Oct 4 2012Laura Novich
BZ753026
BZ753049
BZ826360
BZ824328
BZ830659
BZ831897
Revision 1-165Wed Oct 3 2012Laura Novich
edited some screenshots
Revision 1-164Wed Oct 3 2012Laura Novich
fixed ch 12
Revision 1-163Wed Oct 3 2012Laura Novich
fixed chapter 9
Revision 1-162Wed Oct 3 2012Laura Novich
BZ829146
Revision 1-161Tue Oct 2 2012Laura Novich
BZ835572
Revision 1-160Tue Oct 2 2012Laura Novich
changed ch 12
Revision 1-159Tue Oct 2 2012Laura Novich
BZ814135
Revision 1-158Tue Oct 2 2012Laura Novich
BZ829131
Revision 1-157Tue Oct 2 2012Laura Novich
fixed BZ832132
Revision 1-156Tue Oct 2 2012Laura Novich
changed --persistent to --config across the guide
Revision 1-155Mon Oct 1 2012Laura Novich
fixed BZ829146
Revision 1-154Mon Oct 1 2012Laura Novich
deleted chapter acc to BZ829512
Revision 1-153Mon Oct 1 2012Laura Novich
fixed Storage pools with virsh BZ829131
Revision 1-152Fri Sep 28 2012Laura Novich
fixed whitelist
Revision 1-151Fri Sep 28 2012Laura Novich
storage formats
Revision 1-150Thu Sep 27 2012Laura Novich
new screens
Revision 1-149Thu Sep 27 2012Laura Novich
BZ829519
Revision 1-148Thu Sep 27 2012Laura Novich
BZ829519
Revision 1-147Thu Sep 27 2012Laura Novich
BZ829526
Revision 1-146Thu Sep 27 2012Laura Novich
BZ854592 - fixed syntax
Revision 1-145Thu Sep 27 2012Laura Novich
fixed storage pools BZ831952
Revision 1-144Tue Sep 25 2012Laura Novich
fixed ch 9 BZ822444
Revision 1-143Mon Sep 24 2012Laura Novich
fixed storage pools
added storage pools deletion instructions
fixed BZ831952
Revision 1-142Mon Sep 24 2012Laura Novich
fixed whitelist BZ814100
Revision 1-141Mon Sep 24 2012Laura Novich
fixed whitelist BZ831602
Revision 1-140Mon Sep 24 2012Laura Novich
fixed whitelist BZ831602
Revision 1-139Mon Sep 24 2012Laura Novich
fixed whitelist BZ814180,814135,814100,814106
Revision 1-138Mon Sep 24 2012Laura Novich
fixed three bugs:BZ854592,BZ832410,BZ850972
Revision 1-137Mon Sep 24 2012Laura Novich
fixed three bugs:BZ854592,BZ832410,BZ850972
Revision 1-136Thurs Sept 20 2012Laura Novich
Added all fixes for chapter 12 and ch 15
Revision 1-135Tues Sept 04 2012Laura Novich
Added all fixes for chapter 17 Bug 829527
Revision 1-134Mon Aug 27 2012Scott Radvan
Add fixes from 850792
Revision 1-133Sun Aug 26 2012Scott Radvan
bump to avoid SVN conflict.
Revision 1-132Sun Aug 26 2012Scott Radvan
Modified overcommit example: BZ#804397
Revision 1-131Mon Jun 17 2012Laura Novich
Version for 6.3 GA release
Revision 0.1-129Sun Jun 17 2012Laura Novich
Test version for 6.3 GA release
Revision 0.1-128Wed Jun 13 2012Laura Novich
Test version for 6.3 GA release
Revision 0.1-125Wed Jun 13 2012Laura Novich
fixes to chapters chs 17 and 18(BZ#831554, 829527)
Revision 0.1-124Wed Jun 13 2012Laura Novich
fixes to chapters 14 and 15(BZ#829513)
Revision 0.1-123Wed Jun 13 2012Laura Novich
Removed what was chapters 19 and 20, fixed chs 15-17 (BZ#829879, 829513)
Revision 0.1-122Tues Jun 12 2012Laura Novich
Made many screen shot changes to chapter 11 (ref- BZ#829134).
Revision 0.1-120Tues Jun 12 2012Laura Novich
Made many screen shot changes to chapter 5 (ref- BZ#829523).
Revision 0.1-117Tues Jun 12 2012Laura Novich
Made many screen shot changes to chapter 11 (ref- BZ#82918).
Revision 0.1-111Sun Jun 10 2012Laura Novich
Made many changes to fix multiple issues (BZ# 829124, 829525, 829524, 829521).
Revision 0.1-109Tue Mar 27 2012Laura Novich
Made many changes to fix issue (BZ# 514841).
Revision 0.1-106Thu Mar 19 2012Laura Novich
Added new changes required from QE (BZ# 794798).
Revision 0.1-101Thu Mar 19 2012Laura Novich
Added new information 12.3.2 (BZ# 794798).
Revision 0.1-100Thu Mar 19 2012Laura Novich
Added new information 12.3.1 (BZ# 794798).
Revision 0.1-99Thu Mar 15 2012Laura Novich
Added new Section to Chapter 4 (BZ# 788002).
Revision 0.1-98Mon Feb 27 2012Scott Radvan
Add the `shut off' state for the `virsh list --all' command (BZ#752349).
Revision 0.1-97Mon Feb 27 2012Scott Radvan
Add procedure for dealing with Japanese keymap issues (BZ#729148).
Revision 0.1-96Mon Feb 27 2012Scott Radvan
"none" is no longer a valid tickpolicy (BZ#742082).
Revision 0.1-95Mon Feb 27 2012Scott Radvan
Revise KSM service details (BZ#769478).
Revision 0.1-94Wed Feb 22 2012Scott Radvan
Remove manually-added 'title' tags from admonitions throughout guide.
Revision 0.1-93Wed Feb 22 2012Scott Radvan
First publish with new tool.
Revision 0.1-88Mon Jan 09 2012Scott Radvan
Resolves BZ#769122.
Revision 0.1-87Mon Nov 28 2011Scott Radvan
Resolves BZ#753068.
Revision 0.1-86Mon Nov 28 2011Scott Radvan
Resolves BZ#755487.
Revision 0.1-85Mon Nov 21 2011Scott Radvan
Resolves BZ#754910.
Revision 0.1-84Tue Nov 15 2011Scott Radvan
Resolves BZ#753041.
Revision 0.1-83Tue Nov 15 2011Scott Radvan
Further typographical errors.
Revision 0.1-82Tue Nov 15 2011Scott Radvan
Minor typographical errors.
Revision 0.1-81Tue Nov 15 2011Scott Radvan
Resolves BZ#753018.
Revision 0.1-80Tue Nov 15 2011Scott Radvan
Resolves BZ#753711.
Revision 0.1-79Thu Nov 03 2011Scott Radvan
Resolves BZ#746336.
Revision 0.1-78Thu Nov 03 2011Scott Radvan
Resolves BZ#74490.
Revision 0.1-76Tue Oct 25 2011Scott Radvan
Resolves BZ#74490.
Revision 0.1-75Tue Oct 25 2011Scott Radvan
Resolves BZ#748310.
Revision 0.1-73Tue Oct 18 2011Scott Radvan
Add script for migrating non-running guests.
Revision 0.1-69Mon Sep 19 2011Scott Radvan
QEMU/KVM whitelist chapter updated with minor fixes.
Revision 0.1-68Fri Sep 16 2011Scott Radvan
Chapter 15 restructure, add Guest CPU model configuration details (BZ#737109)
Revision 0.1-67Thu Sep 15 2011Scott Radvan
Add qemu-kvm whitelist
Revision 0.1-66Tue Sep 13 2011Scott Radvan
BZ#735224
Revision 0.1-65Mon Sep 12 2011Scott Radvan
BZ#735207
BZ#735209
BZ#735211
BZ#735219
BZ#735220
BZ#735223
Revision 0.1-64Tue Sep 06 2011Scott Radvan
BZ#734998
Revision 0.1-03Thu Jun 2 2011Scott Radvan
Add draft watermark
Revision 0.1-02Thu Jun 2 2011Scott Radvan
Import majority of text, add alpha channels to PNGs, bump for publish.

Index

F

feedback
contact information for this manual, We Need Feedback!

H

help
getting help, Do You Need Help?

V

virtualization
additional resources
useful websites, Online resources
Virtualization
additional resources
installed documentation, Installed documentation
(Sebelumnya) 24 : Chapter 18. qemu-kvm Whitelist25 : Virtualization Getting St ... (Berikutnya)