Difference between revisions of "KVM"

From Linuxintro
imported>ThorstenStaerk
 
(31 intermediate revisions by 8 users not shown)
Line 1: Line 1:
= SUSE 11.2 =
+
KVM is the Linux kernel's native virtualization.
* Make sure you have a modern computer and "virtualization technology" switched on in your BIOS
 
* [[open a console]] and enter
 
# yast -i kvm virt-manager
 
# /etc/init.d/libvirtd start
 
# chkconfig libvirtd on
 
# virt-manager
 
Now you try to create a new virtual machine. When you use Paravirtualization, you get the error message "The hypervisor is not running.". When you try to use "Full virtualization", you get an error
 
The operating system does not support full virtualization
 
The CPUs support full virtualization, but it is disabled in the BIOS
 
To resolve this,
 
* create a new connection, type "QEMU/KVM"
 
* reboot your computer
 
* start virt-manager
 
create a new virtual machine. You get an error
 
internal error No <source> 'bridge' attribute specified with <interface type='bridge'/>
 
To resolve this
 
* you disable networking
 
  
Now it works - you can create a virtual machine without networking.
+
I'm a beginner Linux user and was lkoiong for a source that would introduce me to Linux as well as would turn me into a confident beginning Linux operator. This book doesn't meet that simple criterion. It is one big puzzle from the start. And even though one might be inclined to say that this is a well though-out approach as to make the reader learn more  I don't think so. I have read many computer books before and it doesn't have to be this way. Examples of frustrating encounters are chapters in which the author uses concepts that have yet to be introduced. It is confusing as you, as the reader, don't really know whether or not you missed something. But in every case, it turns out that the subject is being discussed further down the road. This made me then skip some chapters and start reading the  Running Commands From The Shell  chapter. But even in that chapter, I felt left in the dark as simple concepts as downloading and installing a package was not even described. In fact, you can find that particular topic in chapter one, where a few very narrow examples are given. I don't know Mr. Negus and haven't read anything prior from him. But I feel he really let me down in starting my initial Linux experience. The reason I feel confident to write this review is that I have purchased another book which really has made the Linux experience a good one. For those who are interested . if you're new to Linux and would like to get a kickstart  consider  A Practical Guide to Linux  by Mark Sobell.
  
= SUSE 11.1 =
+
= backup =
Here is an example how to use KVM [[virtualization]] on SUSE Linux 11.1.
+
# virsh list --all
 +
# cp -r /var/lib/xen/images/''virtual_machine'' /''target''
  
== Install kvm ==
+
= TroubleShooting =
[[open a console]] and enter:
 
yast -i kvm
 
yast -i virt-manager
 
/etc/init.d/libvirtd start
 
chkconfig libvirtd on
 
virt-manager
 
Now comes the first pitfall: You have to select localhost, then new. Otherwise you will not be able to create new virtual machines.
 
  
== Install virtinst ==
+
Kernel crash [ Reason: WARNING: at net/sced/sch_generic.c:258 dev_watchdog                                                        +0xc6/0x12e() ]Gnome panel crash [ Reason: Process /usr/bin/gnome-panel was killed by siagnl                                                11 (SIGSEGV)  ]And is happening at every start from live DVD. Well, this doesn't seem to bea rock solid release. No ofense. Waiting for the real rock.(I tried on three computers  especially the gnome panel error was present)
Suddenly you will find out you need to install virtinst.
 
  tweedleburg:~/virtinst-0.500.2 # python setup.py install
 
  
uninstall vm and libvirt
+
== internal error No <source> 'bridge' attribute specified ==
 
+
'''Symptom:''' When starting a virtual machine you get an error
== Install libdevmapper ==
+
internal error No <source> 'bridge' attribute specified with <interface type='bridge'/>
From ftp://sources.redhat.com/pub/dm/
+
To resolve this
 +
* you disable networking
  
== Install libvirt ==
+
== hypervisor not running ==
 +
'''Symptom:''' When creating a new virtual machine you get an error message
 +
Error launching manager: A hypervisor is not running.  For kvm, load the kvm kernel modules.  If you want to run xen, reboot and load the xen kernel.
  
== Start it ==
+
'''Solution:'''
Start virt-manager:
+
* load the kvm kernel modules like this:
  /usr/local/bin/virt-manager
+
  modprobe kvm-intel
 +
* restart virt-manager

Latest revision as of 02:51, 23 November 2015

KVM is the Linux kernel's native virtualization.

I'm a beginner Linux user and was lkoiong for a source that would introduce me to Linux as well as would turn me into a confident beginning Linux operator. This book doesn't meet that simple criterion. It is one big puzzle from the start. And even though one might be inclined to say that this is a well though-out approach as to make the reader learn more I don't think so. I have read many computer books before and it doesn't have to be this way. Examples of frustrating encounters are chapters in which the author uses concepts that have yet to be introduced. It is confusing as you, as the reader, don't really know whether or not you missed something. But in every case, it turns out that the subject is being discussed further down the road. This made me then skip some chapters and start reading the Running Commands From The Shell chapter. But even in that chapter, I felt left in the dark as simple concepts as downloading and installing a package was not even described. In fact, you can find that particular topic in chapter one, where a few very narrow examples are given. I don't know Mr. Negus and haven't read anything prior from him. But I feel he really let me down in starting my initial Linux experience. The reason I feel confident to write this review is that I have purchased another book which really has made the Linux experience a good one. For those who are interested . if you're new to Linux and would like to get a kickstart consider A Practical Guide to Linux by Mark Sobell.

backup

# virsh list --all
# cp -r /var/lib/xen/images/virtual_machine /target

TroubleShooting

Kernel crash [ Reason: WARNING: at net/sced/sch_generic.c:258 dev_watchdog +0xc6/0x12e() ]Gnome panel crash [ Reason: Process /usr/bin/gnome-panel was killed by siagnl 11 (SIGSEGV) ]And is happening at every start from live DVD. Well, this doesn't seem to bea rock solid release. No ofense. Waiting for the real rock.(I tried on three computers especially the gnome panel error was present)

internal error No <source> 'bridge' attribute specified

Symptom: When starting a virtual machine you get an error

internal error No <source> 'bridge' attribute specified with <interface type='bridge'/>

To resolve this

  • you disable networking

hypervisor not running

Symptom: When creating a new virtual machine you get an error message

Error launching manager: A hypervisor is not running.  For kvm, load the kvm kernel modules.  If you want to run xen, reboot and load the xen kernel.

Solution:

  • load the kvm kernel modules like this:
modprobe kvm-intel
  • restart virt-manager