Tagged Questions
3
votes
1answer
37 views
Linux: How the guest VM's kernel maintain's time
In Linux I am spawning a guess VM and load another instance of Linux. VM is spawned through KVM/libvirt/qemu. Guest VM is seen as a process by the host kernel. Lets say for some reason the guest VM ...
3
votes
3answers
2k views
Get two linux boxes talking over a serial port
What is the best way to setup one linux box to listen on its serial port for incoming connections? I've done a lot of googling but I can't find the right combination of commands to actually get them ...
2
votes
0answers
357 views
qemu vs qemu-kvm
I conducted the following benchmark in qemu and qemu-kvm
CPU: AMD 4400 process dual core with svm enabled, 2G RAM
Host OS: OpenSUSE 11.3 with latest Patch, running with kde4
Guest OS: FreeDos
...
2
votes
2answers
5k views
KVM/QEMU network TAP problems with libvirt
I'm trying to use libvirt with virsh to manage my kvm/qemu vms. The problem I have is with getting it to work with public IPs. The server is running ubuntu 8.04.
libvirt keeps trying to run it as:
...
1
vote
0answers
65 views
Download hangs using a Maven repository mirror on a kvm-qemu server
I installed a Maven repository (tested NexusOSS 1.9.1.1 bundle and Artifactory 2.4.2) on a virtual Ubuntu 10.04.3 LTS server hosted on an Ubuntu 10.04.2 LTS server by libvirt 0.7.5-5ubuntu27.16 (using ...
1
vote
2answers
351 views
Changing password of a Virtual Machine
I have some virtual machines with me. I want to write a script which automates the following process...
It mounts the virtual machine (with linux as the os) to a location say /mnt/image
It modifies ...
1
vote
2answers
220 views
Migration of virtual machines
Are there tools for migrating from one virtual machine type to another? E.g let's say I have some Xen virtual machine and like to make it run under KVM. I know that qeumu has tools which can be used ...
0
votes
0answers
21 views
How to add a watchpoint in kvm
I have a Linux guest running inside a Linux host. The virtualization is done via kvm and qemu (qemu --enable-kvm). I am hacking on the qemu code.
Now, I want to set watchpoints in the host memory. ...
0
votes
2answers
126 views
KVM Virtual machine running Windows XP: How to get files from guest to host?
I'm running Ubuntu 10.04, and on it, kvm/qemu. I created a storage device with the 'raw' format and installed XP on it, so I assume the file has ntfs format. I have a file on the XP virtual machine ...
0
votes
1answer
157 views
in qemu/kvm, can I mount a host partition as a virtual disk drive?
I have a new laptop with a Windows partition and a Linux partition. I want to run qemu/kvm under Linux, and run an instance of Windows XP on that virtual machine. The desired setup is to have a ...
0
votes
2answers
151 views
virsh shutdown for OpenBSD (libvirt/kvm)
Is it possible to correctly shutdown a openbsd 4.7 or 4.9 with
virsh shutdown OpenBSD
The openbsd is under kvm/qemu configured from libvirt.
shutdown should send an ACPI signal "Power button ...
0
votes
1answer
307 views
live migration using KVM
I want live migration of virtual machines between two host and for that i am using following command:
virsh migrate vmtest qemu+ssh://root@10.20.254.106/system
I am getting the following error ...
0
votes
2answers
435 views
qemu-kvm command not found
I have installed kvm in my computer using command
sudo apt-get install qemu-kvm
but when I try the command
qemu-kvm -m 384 -cdrom guestos.iso -hda image.img -boot d
to boot an ISO image from ...
0
votes
2answers
265 views
How is device emulation done in kvm
I know that the qemu-kvm does the device emulation stuff in KVM. Is the qemu-kvm being executed in the userspace of the host? So when a kick function is encountered, it exits the VM through a ...